:root {
    --bg-color: #050510;
    --text-color: #ffffff;
    --primary-neon: #00f3ff;
    --secondary-neon: #bc13fe;
    --accent-color: #ff0055;
    --card-bg: rgba(255, 255, 255, 0.05);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animations */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 10px var(--primary-neon), 0 0 20px var(--primary-neon);
    }

    50% {
        box-shadow: 0 0 20px var(--primary-neon), 0 0 40px var(--primary-neon);
    }

    100% {
        box-shadow: 0 0 10px var(--primary-neon), 0 0 20px var(--primary-neon);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 8px var(--primary-neon);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a2e 0%, var(--bg-color) 70%);
    position: relative;
    padding: 0 5%;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    /* Simulate 3D text if no image, but we will use the image mostly */
}

.logo-main {
    max-width: 600px;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 1px;
    /* Just in case */
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.3));
}

.tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--primary-neon);
    color: var(--primary-neon);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-family: var(--font-heading);
    text-decoration: none;
}

.hero-btn:hover {
    background: var(--primary-neon);
    color: #000;
    box-shadow: 0 0 30px var(--primary-neon);
}

/* Games Section */
#games {
    padding: 5rem 10%;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0a0a20 100%);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-color);
}

.section-title span {
    color: var(--secondary-neon);
    text-shadow: 0 0 15px var(--secondary-neon);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-neon);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

.game-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-info {
    padding: 2rem;
    text-align: center;
}

.game-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-neon);
}

.game-info p {
    color: #aaa;
    margin-bottom: 1.5rem;
}


/* About Section */
#about {
    padding: 6rem 10%;
    background: #080816;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item h4 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-neon);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    flex: 1;
    height: 400px;
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.1), rgba(188, 19, 254, 0.1));
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual::after {
    content: 'FSTORE';
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 900;
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
    }

    .about-visual {
        width: 100%;
        height: 300px;
    }
}

#vision {
    padding: 6rem 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#vision::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.vision-text {
    font-size: 2rem;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-neon);
    font-weight: bold;
}


/* Contact Section */
#contact {
    padding: 6rem 10%;
    text-align: center;
    background: linear-gradient(180deg, #050510 0%, #1a1a2e 100%);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    /* Large and clear */
    color: var(--primary-neon);
    /* Use primary neon color */
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 50px;
    background: rgba(0, 243, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: var(--primary-neon);
    color: #000;
    box-shadow: 0 0 20px var(--primary-neon);
    transform: translateY(-3px);
}

/* Footer */
footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    background: #020205;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}