/* ========== CSS VARIABLES & RESET ========== */
:root {
    --bg-primary: #0a0b10;
    /* Elegant charcoal/navy starting point */
    --bg-secondary: #0f111a;
    /* Slightly lighter deep tone */
    --bg-card: rgba(20, 22, 34, 0.6);
    --bg-card-hover: rgba(26, 28, 42, 0.8);
    --surface: #151722;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(200, 20, 50, 0.15);

    --text-primary: #f8f9fa;
    --text-secondary: #a9b1ba;
    --text-muted: #6b7280;

    --accent-1: #e11d48;
    /* Brighter, lighter Crimson */
    --accent-2: #be123c;
    /* Rose/Crimson transition */
    --accent-3: #881337;
    /* Deep Rose */
    --accent-glow: rgba(225, 29, 72, 0.15);

    --gradient-main: linear-gradient(135deg, #e11d48 0%, #be123c 50%, #881337 100%);
    --gradient-text: linear-gradient(135deg, #fb7185 0%, #f43f5e 50%, #e11d48 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(225, 29, 72, 0.05) 0%, rgba(136, 19, 55, 0.05) 100%);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(225, 29, 72, 0.1), 0 0 60px rgba(136, 19, 55, 0.05);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(rgba(10, 11, 16, 0.85), rgba(15, 17, 26, 0.95)), url('images/JisooCar.png') no-repeat center center fixed !important;
    background-size: cover !important;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar for better aesthetic */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 20, 50, 0.5);
}

::selection {
    background: rgba(200, 20, 50, 0.3);
    color: white;
}

/* ========== NOISE TEXTURE OVERLAY ========== */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    mix-blend-mode: overlay;
}

/* ========== CINEMATIC VIGNETTE ========== */
.vignette-overlay {
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 30%, rgba(10, 11, 16, 0.7) 100%);
    mix-blend-mode: multiply;
}

/* ========== INTERACTIVE MOUSE GLOW ========== */
.mouse-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 10;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    opacity: 0;
    will-change: transform;
}

/* ========== FLOATING PARTICLES ========== */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 45, 120, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 45, 120, 0.3);
}

.particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: particleFloat 12s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 40%;
    left: 85%;
    animation: particleFloat 18s ease-in-out infinite 2s;
    width: 3px;
    height: 3px;
    background: rgba(180, 77, 255, 0.4);
    box-shadow: 0 0 8px rgba(180, 77, 255, 0.3);
}

.particle:nth-child(3) {
    top: 70%;
    left: 20%;
    animation: particleFloat 15s ease-in-out infinite 4s;
}

.particle:nth-child(4) {
    top: 25%;
    left: 60%;
    animation: particleFloat 20s ease-in-out infinite 1s;
    width: 3px;
    height: 3px;
    background: rgba(180, 77, 255, 0.3);
    box-shadow: 0 0 8px rgba(180, 77, 255, 0.2);
}

.particle:nth-child(5) {
    top: 85%;
    left: 45%;
    animation: particleFloat 14s ease-in-out infinite 3s;
}

.particle:nth-child(6) {
    top: 55%;
    left: 75%;
    animation: particleFloat 16s ease-in-out infinite 5s;
    width: 1px;
    height: 1px;
}

.particle:nth-child(7) {
    top: 10%;
    left: 50%;
    animation: particleFloat 22s ease-in-out infinite 6s;
    background: rgba(124, 58, 237, 0.4);
}

.particle:nth-child(8) {
    top: 60%;
    left: 5%;
    animation: particleFloat 19s ease-in-out infinite 7s;
    width: 3px;
    height: 3px;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translate(30px, -40px) scale(1.5);
        opacity: 0.8;
    }

    50% {
        transform: translate(-20px, -80px) scale(1);
        opacity: 0.3;
    }

    75% {
        transform: translate(40px, -30px) scale(1.8);
        opacity: 0.7;
    }
}

/* ========== AMBIENT BACKGROUND ========== */
.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, transparent 60%);
    top: -250px;
    right: -150px;
    animation: float1 20s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(136, 19, 55, 0.08) 0%, transparent 60%);
    bottom: -150px;
    left: -150px;
    animation: float2 25s ease-in-out infinite;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-60px, 40px) scale(1.1);
    }

    66% {
        transform: translate(40px, -30px) scale(0.95);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.05);
    }

    66% {
        transform: translate(-40px, 30px) scale(0.9);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-45%, -55%) scale(1.15);
    }
}

/* ========== UTILITIES ========== */
.font-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 10, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 45, 120, 0.08);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-main);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: white;
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.3);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: var(--transition);
    text-shadow: 0 0 20px rgba(225, 29, 72, 0.1);
}

.nav-logo:hover .logo-text {
    text-shadow: 0 0 30px rgba(225, 29, 72, 0.25);
}

.logo-accent {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(225, 29, 72, 0.3));
}

.footer-logo .logo-text {
    font-size: 18px;
    letter-spacing: 2.5px;
    opacity: 0.85;
}

.footer-logo:hover .logo-text {
    opacity: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 45, 120, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px;
    margin-left: 8px;
}

.lang-btn {
    padding: 5px 14px;
    border: none;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    background: transparent;
    color: var(--text-muted);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 0 12px rgba(255, 45, 120, 0.3);
}

/* Hero Language Pair */
.hero-lang-pair {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 45, 120, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.05s ease forwards;
    opacity: 0;
    backdrop-filter: blur(8px);
}

.lang-from {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-lang-pair svg {
    stroke: var(--accent-1);
    filter: drop-shadow(0 0 4px rgba(255, 45, 120, 0.5));
}

.lang-to {
    font-size: 14px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 24px 100px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

/* Hero Decorative Elements */
.hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.deco-line {
    position: absolute;
    background: var(--gradient-main);
    opacity: 0.08;
}

.deco-line-1 {
    width: 1px;
    height: 200px;
    top: 100px;
    right: 20%;
    animation: decoSlide 3s ease-in-out infinite;
}

.deco-line-2 {
    width: 300px;
    height: 1px;
    bottom: 30%;
    left: -50px;
    animation: decoSlide2 4s ease-in-out infinite;
}

.deco-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 45, 120, 0.04);
    border-radius: 50%;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    animation: decoRotate 30s linear infinite;
}

.deco-circle::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-1);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(255, 45, 120, 0.6);
}

@keyframes decoSlide {

    0%,
    100% {
        opacity: 0.08;
        transform: translateY(0);
    }

    50% {
        opacity: 0.15;
        transform: translateY(-20px);
    }
}

@keyframes decoSlide2 {

    0%,
    100% {
        opacity: 0.06;
        transform: translateX(0);
    }

    50% {
        opacity: 0.12;
        transform: translateX(20px);
    }
}

@keyframes decoRotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-content {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(255, 45, 120, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(255, 45, 120, 0.6);
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 12px rgba(255, 45, 120, 0.6);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
        box-shadow: 0 0 20px rgba(255, 45, 120, 0.8);
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.1s ease forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s 0.2s ease forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s 0.3s ease forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 0 30px rgba(255, 45, 120, 0.2), 0 0 60px rgba(180, 77, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
    transition: 0.5s;
    transform: translateX(-100%);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 45, 120, 0.35), 0 0 80px rgba(180, 77, 255, 0.15);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 45, 120, 0.08);
    border-color: rgba(255, 45, 120, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 45, 120, 0.1);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s 0.4s ease forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 45, 120, 0.2), transparent);
}

/* Hero Visual */
.hero-visual {
    flex: 0 0 320px;
    height: 400px;
    position: relative;
    animation: fadeIn 1s 0.5s ease forwards;
    opacity: 0;
}

.floating-card {
    position: absolute;
    padding: 20px 28px;
    background: rgba(18, 18, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px) saturate(120%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.floating-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(225, 29, 72, 0.2);
    box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card-1 {
    top: 20px;
    left: 20px;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
    top: 140px;
    right: 10px;
    animation: cardFloat2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 40px;
    left: 50px;
    animation: cardFloat3 8s ease-in-out infinite;
}

@keyframes cardFloat1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes cardFloat2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes cardFloat3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.engine-icon {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.renpy-icon {
    color: #ff6ba8;
    text-shadow: 0 0 12px rgba(255, 107, 168, 0.4);
}

.unity-icon {
    color: #a78bfa;
    text-shadow: 0 0 12px rgba(167, 139, 250, 0.4);
}

.unreal-icon {
    color: #d084ff;
    text-shadow: 0 0 12px rgba(208, 132, 255, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 45, 120, 0.4), transparent);
    position: relative;
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    background: var(--accent-1);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 45, 120, 0.6);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes scrollDot {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(50px);
        opacity: 0;
    }
}

/* ========== REFERENCES SECTION ========== */
.references {
    position: relative;
    z-index: 1;
    padding: 120px 0 140px;
}

.references::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 120, 0.2), rgba(180, 77, 255, 0.2), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-1);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(255, 45, 120, 0.4);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.game-card {
    background: rgba(20, 22, 34, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(12px);
    position: relative;
}

/* Animated gradient border on hover */
.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(180deg, rgba(200, 20, 50, 0), rgba(200, 20, 50, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-slow);
    z-index: 10;
    pointer-events: none;
}

.game-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.game-card.hidden {
    display: none;
}

.game-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(200, 20, 50, 0.15);
    border-color: transparent;
    /* Hide normal border for gradient border */
}

.game-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(200, 20, 50, 0.8), rgba(86, 20, 99, 0.2));
}

.game-card:hover .card-shine {
    opacity: 1;
}

.card-cover {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.card-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(5, 5, 10, 0.9), transparent);
    pointer-events: none;
    z-index: 2;
}

/* Card shine sweep effect */
.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.08) 55%, transparent 60%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: shineMove 3s ease-in-out infinite;
}

@keyframes shineMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.5s ease;
}

a.game-card {
    text-decoration: none;
    color: inherit;
}

.engine-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 3;
    backdrop-filter: blur(8px);
}

.engine-tag.renpy {
    background: rgba(255, 45, 120, 0.85);
    color: white;
    box-shadow: 0 2px 12px rgba(255, 45, 120, 0.3);
}

.engine-tag.unity {
    background: rgba(124, 58, 237, 0.85);
    color: white;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}

.engine-tag.unreal {
    background: rgba(180, 77, 255, 0.85);
    color: white;
    box-shadow: 0 2px 12px rgba(180, 77, 255, 0.3);
}

.status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(8px);
}

.status-badge.completed {
    background: rgba(0, 206, 201, 0.8);
    color: white;
    box-shadow: 0 2px 12px rgba(0, 206, 201, 0.25);
}

.status-badge.in-progress {
    background: rgba(253, 203, 110, 0.85);
    color: #1a1a2e;
    box-shadow: 0 2px 12px rgba(253, 203, 110, 0.25);
}

.card-info {
    padding: 20px;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.game-card:hover .meta-item {
    color: var(--accent-1);
}

.game-card:hover .meta-item svg {
    stroke: var(--accent-1);
}

.meta-item svg {
    stroke: var(--text-muted);
    transition: var(--transition);
}

/* Show More */
.show-more-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.show-more-hint {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    padding: 8px 20px;
    background: rgba(255, 45, 120, 0.04);
    border: 1px solid rgba(255, 45, 120, 0.08);
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

/* ========== ABOUT SECTION ========== */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(15, 17, 26, 0.8) 0%, rgba(10, 11, 16, 0.95) 100%);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 120, 0.15), rgba(180, 77, 255, 0.15), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content .section-tag {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    background: rgba(255, 45, 120, 0.03);
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 50px;
    line-height: 1;
    opacity: 0.7;
}

.process-step:hover .step-number {
    opacity: 1;
}

.step-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 45, 120, 0.2), rgba(180, 77, 255, 0.1));
    margin-left: 44px;
}

/* Expertise Panel */
.expertise-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.expertise-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px;
    background: rgba(18, 18, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.expertise-card:hover {
    border-color: rgba(255, 45, 120, 0.15);
    transform: translateX(6px);
    box-shadow: -4px 0 24px rgba(255, 45, 120, 0.06);
}

.expertise-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border: 1px solid rgba(255, 45, 120, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: var(--transition);
}

.expertise-icon svg {
    stroke: var(--accent-1);
    transition: var(--transition);
}

.expertise-card:hover .expertise-icon {
    background: rgba(255, 45, 120, 0.08);
    border-color: rgba(255, 45, 120, 0.2);
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.15);
}

.expertise-card:hover .expertise-icon svg {
    filter: drop-shadow(0 0 4px rgba(255, 45, 120, 0.5));
}

.expertise-info {
    flex: 1;
}

.expertise-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.expertise-info .card-desc {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.expertise-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.expertise-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(255, 45, 120, 0.3);
}

/* ========== TEAM SECTION ========== */
.team {
    position: relative;
    z-index: 1;
    padding: 120px 0 140px;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 77, 255, 0.15), rgba(255, 45, 120, 0.15), transparent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px 32px;
    background: rgba(18, 18, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.4);
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 45, 120, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 45, 120, 0.15);
    box-shadow: 0 16px 48px rgba(255, 45, 120, 0.08), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover::after {
    opacity: 1;
}

.team-avatar {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.avatar-gradient-1 {
    background: linear-gradient(135deg, #ff2d78, #ff6ba8);
}

.avatar-gradient-2 {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.avatar-gradient-3 {
    background: linear-gradient(135deg, #00cec9, #0984e3);
}

.avatar-gradient-4 {
    background: linear-gradient(135deg, #e17055, #fdcb6e);
}

.avatar-letter {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
        var(--gradient-main) border-box;
    opacity: 0;
    transition: var(--transition);
    animation: ringPulse 3s ease-in-out infinite;
}

.team-card:hover .avatar-ring {
    opacity: 1;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.team-avatar.has-image {
    background: none !important;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    /* Continuous slow animation simulating a dynamic GIF/hologram */
    animation: avatarHolo 3s ease-in-out infinite alternate;
}

@keyframes avatarHolo {
    0% {
        filter: brightness(1) contrast(1.1) hue-rotate(0deg);
        transform: scale(1);
    }

    100% {
        filter: brightness(1.2) contrast(1.1) hue-rotate(15deg) drop-shadow(0 0 10px rgba(255, 45, 120, 0.5));
        transform: scale(1.05);
    }
}

/* Glitch effect on hover to look like a digital screen */
.team-card:hover .avatar-img {
    animation: avatarGlitch 0.3s infinite;
}

@keyframes avatarGlitch {
    0% {
        transform: translate(0) scale(1.05);
        filter: hue-rotate(15deg) contrast(1.5);
    }

    20% {
        transform: translate(-3px, 2px) scale(1.05);
        filter: hue-rotate(45deg) saturate(2);
    }

    40% {
        transform: translate(-3px, -2px) scale(1.05);
        filter: hue-rotate(-45deg) saturate(2);
    }

    60% {
        transform: translate(3px, 2px) scale(1.05);
        filter: hue-rotate(20deg) contrast(2);
    }

    80% {
        transform: translate(3px, -2px) scale(1.05);
        filter: hue-rotate(-20deg) contrast(2);
    }

    100% {
        transform: translate(0) scale(1.05);
        filter: hue-rotate(15deg) contrast(1.5);
    }
}

.team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.team-role {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.team-bar {
    width: 40px;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 3px;
    opacity: 0.4;
    transition: var(--transition);
}

.team-card:hover .team-bar {
    width: 60px;
    opacity: 1;
    box-shadow: 0 0 12px rgba(255, 45, 120, 0.4);
}

/* ========== CONTACT SECTION ========== */
.contact {
    position: relative;
    z-index: 1;
    padding: 100px 0 120px;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 120, 0.15), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info .section-tag {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(18, 18, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.email-link:hover {
    border-color: rgba(255, 45, 120, 0.3);
    box-shadow: 0 12px 40px rgba(255, 45, 120, 0.1), 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.email-link:hover .email-arrow {
    transform: translateX(4px);
}

.email-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.2);
}

.email-icon svg {
    stroke: white;
}

.email-details {
    flex: 1;
}

.email-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.email-address {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.email-arrow {
    stroke: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.contact-note svg {
    stroke: var(--accent-2);
    flex-shrink: 0;
}

/* Contact Visual */
.contact-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 420px;
    background: rgba(18, 18, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 45, 120, 0.05);
    backdrop-filter: blur(16px);
    position: relative;
}

/* Animated rotating border */
.animated-border {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: conic-gradient(from 0deg, transparent 0%, rgba(255, 45, 120, 0.3) 10%, transparent 20%, transparent 80%, rgba(180, 77, 255, 0.3) 90%, transparent 100%);
    animation: borderSpin 6s linear infinite;
    z-index: -1;
}

@keyframes borderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}

.visual-dots {
    display: flex;
    gap: 6px;
}

.visual-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.visual-dots span:nth-child(1) {
    background: #ff5f57;
    box-shadow: 0 0 6px rgba(255, 95, 87, 0.3);
}

.visual-dots span:nth-child(2) {
    background: #febc2e;
    box-shadow: 0 0 6px rgba(254, 188, 46, 0.3);
}

.visual-dots span:nth-child(3) {
    background: #28c840;
    box-shadow: 0 0 6px rgba(40, 200, 64, 0.3);
}

.visual-title {
    font-size: 13px;
    color: var(--text-muted);
}

.visual-body {
    padding: 20px;
}

.visual-field {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.field-label {
    color: var(--text-muted);
    font-weight: 500;
    flex-shrink: 0;
}

.field-value {
    color: var(--text-primary);
}

.typing-anim::after {
    content: '';
    animation: typing-en 3s steps(20) infinite;
}

.typing-anim.typing-tr::after {
    animation: typing-tr 3s steps(20) infinite;
}

@keyframes typing-en {
    0% {
        content: '';
    }

    10% {
        content: 'G';
    }

    20% {
        content: 'Ga';
    }

    30% {
        content: 'Gam';
    }

    40% {
        content: 'Game';
    }

    50% {
        content: 'Game N';
    }

    60% {
        content: 'Game Na';
    }

    70% {
        content: 'Game Nam';
    }

    80%,
    100% {
        content: 'Game Name';
    }
}

@keyframes typing-tr {
    0% {
        content: '';
    }

    10% {
        content: 'O';
    }

    20% {
        content: 'Oy';
    }

    30% {
        content: 'Oyu';
    }

    40% {
        content: 'Oyun';
    }

    50% {
        content: 'Oyun A';
    }

    60% {
        content: 'Oyun Ad';
    }

    70%,
    100% {
        content: 'Oyun Adı';
    }
}

.visual-content {
    padding: 20px 0;
    min-height: 80px;
}

.blink-cursor {
    font-size: 18px;
    color: var(--accent-1);
    animation: blink 1s step-end infinite;
    text-shadow: 0 0 8px rgba(255, 45, 120, 0.5);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 45, 120, 0.06);
    background: linear-gradient(180deg, var(--bg-secondary), rgba(5, 5, 10, 1));
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
}

.footer-logo .logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.footer-text {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-engines {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-dot {
    color: var(--accent-1);
}

.footer-credit {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
    width: 100%;
    text-align: center;
    opacity: 1;
    letter-spacing: 0.3px;
}

.footer-credit a {
    color: var(--accent-1);
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: #fb7185;
    text-decoration: underline;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 100px 24px 60px;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-deco {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-link {
        font-size: 20px;
        padding: 12px 24px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}