
:root {
    
    --primary: #00f3ff;
    --primary-hover: #00d4de;
    --secondary: #9c27b0;
    --secondary-hover: #7b1fa2;
    
    
    --text-light: #fff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #212529;
    
    
    --success: #4caf50;
    --info: #2196f3;
    --warning: #ff9800;
    --danger: #f44336;
    
    
    --dark: #0a0a1a;
    --darker: #050510;
    --darker-bg: #050510;
    --light: #f8f9fa;
    
    
    --gray-100: #f1f1f1;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    
    --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Orbitron', var(--font-sans);
    
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --neon-glow: 0 0 10px rgba(0, 243, 255, 0.8), 0 0 20px rgba(0, 243, 255, 0.6);
    
    
    --card-bg: rgba(20, 20, 40, 0.7);
    --card-border: rgba(0, 243, 255, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0a0a1a;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--light-text);
}

h1 { 
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin-bottom: 1rem;
}

h2 { 
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 { 
    font-size: clamp(1.75rem, 5vw, 2rem);
    margin-bottom: 0.75rem;
}

h4 { 
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    margin-bottom: 0.5rem;
}

h5 { 
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
}

h6 { 
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, 
input, 
textarea, 
select {
    font: inherit;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-dark {
    background-color: var(--darker);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mt-24 {
    margin-top: 6rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl);
}


.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}


.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.5;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 243, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-3px);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.btn-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}


.stats-section {
    position: relative;
    z-index: 1;
}

.stat-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}


.process-steps {
    position: relative;
}

.process-step {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    z-index: -1;
    opacity: 0.2;
}

.process-step:first-child::before {
    left: 50%;
}

.process-step:last-child::before {
    right: 50%;
}


@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .process-step::before {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .section-padding {
        padding: 2.5rem 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}


.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1000px;
    width: 100%;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(179, 0, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--light-text);
    opacity: 0.9;
    margin-bottom: 15px;
    display: block;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 15px;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    border: none;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050510;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease;
    overflow: hidden;
    pointer-events: none;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #00f3ff;
    border-right-color: #9c27b0;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

.loading-text {
    color: #fff;
    margin-top: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #050510 100%);
    color: var(--text-light);
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 1; 
    pointer-events: none; 
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3; 
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.hero h1 .highlight {
    color: var(--primary);
    text-shadow: var(--neon-glow);
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-light) !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem auto 0;
    max-width: 100%;
    padding: 0 1rem;
    position: relative;
    z-index: 4; 
}

.hero .btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 160px;
    text-align: center;
    white-space: nowrap;
}

.hero .btn i {
transition: transform 0.3s ease;
}

.hero .btn:hover i {
transform: translateX(3px);
}

.hero .btn-primary {
background: #4a6bff;
color: white;
border: 2px solid #4a6bff;
}

.hero .btn-primary:hover {
background: #3a5bef;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(74, 107, 255, 0.3);
}

.hero .btn-outline {
background: transparent;
color: #4a6bff;
border: 2px solid #4a6bff;
}

.hero .btn-outline:hover {
    background: rgba(74, 107, 255, 0.1);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        padding: 0 1.5rem;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
}


@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
    
.hero p {
font-size: 1.1rem;
}
    
.hero-buttons {
flex-direction: column;
gap: 1rem;
}
    
.hero .btn {
width: 100%;
justify-content: center;
}
}

.btn-primary {
background: linear-gradient(45deg, #00f3ff, #9c27b0);
color: #000;
border: none;
box-shadow: 0 4px 15px rgba(0, 243, 255, 0.3);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 243, 255, 0.4);
}

.btn-outline {
background: transparent;
color: #fff;
border: 2px solid #00f3ff;
}

.btn-outline:hover {
background: rgba(0, 243, 255, 0.1);
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
}

@keyframes glow {
to {
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--secondary), 0 0 20px var(--secondary);
}
}

.tagline {
font-size: 1.5rem;
margin-bottom: 2rem;
color: var(--light-text);
opacity: 0.9;
}

.cta-button {
display: inline-block;
padding: 15px 40px;
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: var(--light-text);
border: none;
border-radius: 30px;
font-family: 'Orbitron', sans-serif;
font-weight: 700;
font-size: 1.1rem;
text-transform: uppercase;
letter-spacing: 2px;
cursor: pointer;
transition: var(--transition);
position: relative;
overflow: hidden;
z-index: 1;
text-decoration: none;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(45deg, var(--secondary), var(--primary));
transition: var(--transition);
z-index: -1;
}

.cta-button:hover::before {
left: 0;
}

.cta-button:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.scroll-down {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
color: var(--light-text);
opacity: 0.7;
cursor: pointer;
z-index: 2;
animation: bounce 2s infinite;
}

.scroll-down span {
font-size: 0.9rem;
margin-bottom: 5px;
letter-spacing: 1px;
}

.scroll-down i {
font-size: 1.2rem;
}


.about-section {
padding: 120px 0 180px;
background-color: var(--darker-bg);
position: relative;
overflow: visible;
margin-bottom: 0;
}



.stats-container {
    max-width: 1200px;
    margin: 80px auto 120px;
    padding: 40px 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}


.contact-section {
padding: 180px 0 100px;
position: relative;
background-color: #0a0a1a;
margin-top: -60px;
z-index: 1;
}

.contact-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(to bottom, transparent, #0a0a1a);
z-index: -1;
}


.games-section {
background-color: var(--darker-bg);
padding: 100px 0;
position: relative;
}

.games-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDMpIj48L3JlY3Q+PC9wYXR0ZXNuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIj48L3JlY3Q+PC9zdmc+') repeat;
opacity: 0.3;
z-index: 0;
}

.games-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
margin-top: 50px;
position: relative;
z-index: 1;
}

.game-card {
background: var(--card-bg);
border-radius: 10px;
overflow: hidden;
transition: var(--transition);
border: 1px solid var(--card-border);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
border-color: var(--primary);
}


.game-card {
width: 300px;
margin: 0 auto;
position: relative;
display: flex;
flex-direction: column;
overflow: hidden;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.game-image {
position: relative;
width: 100%;
padding-bottom: 100%; 
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}


.game-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s ease;
padding: 0;
margin: 0;
}


.game-info {
width: 100%;
aspect-ratio: 1/1; 
padding: 20px;
box-sizing: border-box;
background: #1a1a2e;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
}

.game-card:hover .game-overlay {
opacity: 1;
}

.game-link {
padding: 10px 25px;
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: var(--light-text);
border-radius: 30px;
font-family: 'Orbitron', sans-serif;
font-weight: 500;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
text-decoration: none;
transition: var(--transition);
}

.game-link:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-card h3 {
padding: 20px 20px 10px;
color: var(--light-text);
font-size: 1.3rem;
}

.game-card p {
padding: 0 20px 20px;
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
line-height: 1.6;
}


.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 20px 0;
z-index: 1000;
transition: var(--transition);
background: rgba(10, 10, 26, 0.9);
backdrop-filter: blur(10px);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
padding: 15px 0;
background: rgba(5, 5, 16, 0.95);
}

.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-family: 'Orbitron', sans-serif;
font-size: 1.8rem;
font-weight: 700;
color: var(--light-text);
text-decoration: none;
}

.logo span {
color: var(--primary);
text-shadow: 0 0 10px var(--primary);
}

.nav-links {
display: flex;
gap: 30px;
}

.nav-links a {
color: var(--light-text);
font-family: 'Orbitron', sans-serif;
font-weight: 500;
text-transform: uppercase;
font-size: 0.9rem;
letter-spacing: 1px;
position: relative;
padding: 5px 0;
}

.nav-links a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
width: 100%;
}

.hamburger {
display: none;
flex-direction: column;
justify-content: space-between;
width: 30px;
height: 20px;
cursor: pointer;
z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--light-text);
    transition: var(--transition);
}
