/* ══════════════════════════════════════════════════════════════
   B HORIZON STUDIOS — Premium Dark/Gold Theme
   ══════════════════════════════════════════════════════════════ */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #d4a642;
    --gold-light: #f0d080;
    --gold-lighter: #fae8b0;
    --gold-dark: #a07830;
    --gold-darker: #7a5a20;
    --bg-dark: #080808;
    --bg-section: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --text-primary: #f0ebe0;
    --text-secondary: #9a9590;
    --text-muted: #5c5852;
    --glow-gold: rgba(212, 166, 66, 0.25);
    --glow-gold-strong: rgba(212, 166, 66, 0.5);
    --border-subtle: rgba(212, 166, 66, 0.1);
    --border-card: rgba(255, 255, 255, 0.04);
    --radius: 16px;
    --radius-lg: 24px;
    --max-width: 1100px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--gold-light); }

.section-container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── Canvas BG ────────────────────────────────────────────── */
#bgCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 36px;
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.92);
    border-bottom-color: var(--border-subtle);
    padding: 10px 36px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--bg-dark);
    letter-spacing: 0;
}

.brand-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    color: var(--text-primary);
}

.nav-links { display: flex; align-items: center; gap: 36px; }

.nav-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--gold);
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    z-index: 99;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 36px;
    gap: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu.active { display: flex; }
.mobile-menu a { color: var(--text-secondary); font-size: 1rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--border-card); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.35s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-shimmer {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn:hover .btn-shimmer { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--bg-dark);
    box-shadow: 0 4px 24px var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--glow-gold-strong);
    color: var(--bg-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255,255,255,0.12);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    background: rgba(212, 166, 66, 0.05);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 80px;
    overflow: hidden;
    gap: 40px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 166, 66, 0.08), transparent 70%);
    top: -10%; left: -5%;
    animation: glow-drift 10s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 166, 66, 0.05), transparent 70%);
    bottom: -10%; right: -5%;
    animation: glow-drift 12s ease-in-out infinite reverse;
}

@keyframes glow-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

.hero-grid-lines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(212, 166, 66, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 166, 66, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 580px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(212, 166, 66, 0.06);
    border: 1px solid var(--border-subtle);
    color: var(--gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s ease;
}

.hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 28px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.title-line {
    display: block;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.title-line-accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 16px var(--glow-gold));
    font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: -60px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.7s ease 0.5s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { height: 40px; opacity: 1; }
    50% { height: 60px; opacity: 0.4; }
}

.hero-scroll-indicator span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 4px;
    color: var(--text-muted);
}

/* Floating Phone */
.hero-phone-wrapper {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-phone {
    width: 260px;
    border-radius: 32px;
    overflow: hidden;
    border: 2px solid rgba(212, 166, 66, 0.15);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(212, 166, 66, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    background: #0a0a0a;
    position: relative;
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

.hero-phone-notch {
    position: absolute;
    top: 8px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 20px;
    background: #0a0a0a;
    border-radius: 0 0 16px 16px;
    z-index: 3;
}

.hero-phone-screen {
    width: 100%;
    display: block;
}

.hero-phone-reflection {
    position: absolute;
    bottom: -120px; left: 50%; transform: translateX(-50%) scaleY(-1);
    width: 260px;
    height: 120px;
    background: linear-gradient(to bottom, rgba(212, 166, 66, 0.06), transparent);
    filter: blur(8px);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    border-radius: 32px;
}

/* ── Marquee ──────────────────────────────────────────────── */
.marquee-strip {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(212, 166, 66, 0.02);
}

.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.marquee-dot { color: var(--gold); font-size: 0.5rem; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(212, 166, 66, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── About ────────────────────────────────────────────────── */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-tag { margin-bottom: 16px; }
.about-text .section-title { text-align: left; margin-bottom: 20px; }

.about-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(212, 166, 66, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.about-stat-card:hover .stat-card-glow { opacity: 1; }

.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-subtle);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ── Games ────────────────────────────────────────────────── */
.games {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--bg-section);
}

.game-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.game-showcase-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 166, 66, 0.04), transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 166, 66, 0.02), transparent 60%);
    pointer-events: none;
}

.game-showcase::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}

.game-info { flex: 1; position: relative; z-index: 2; }

.game-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(212, 166, 66, 0.08);
    border: 1px solid var(--border-subtle);
    color: var(--gold);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-description {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.game-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.game-feature-tag {
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.game-feature-tag:hover {
    border-color: var(--border-subtle);
    background: rgba(212, 166, 66, 0.05);
    color: var(--gold-light);
}

/* Phone Stack */
.game-screenshots {
    position: relative;
    width: 280px;
    height: 440px;
    flex-shrink: 0;
    z-index: 2;
}

.game-phone {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 166, 66, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #0a0a0a;
}

.game-phone img { width: 100%; display: block; }

.game-phone-front {
    width: 190px;
    z-index: 3;
    bottom: 0; left: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 166, 66, 0.1);
}

.game-phone-mid {
    width: 170px;
    z-index: 2;
    bottom: 30px; left: 50px;
    opacity: 0.65;
}

.game-phone-back {
    width: 150px;
    z-index: 1;
    top: 0; right: 0;
    opacity: 0.4;
}

.game-showcase:hover .game-phone-front { transform: translateX(-8px) translateY(-6px) rotate(-2deg); }
.game-showcase:hover .game-phone-mid { transform: translateY(-4px); opacity: 0.8; }
.game-showcase:hover .game-phone-back { transform: translateY(4px) rotate(2deg); opacity: 0.55; }

/* Gallery */
.game-gallery { margin-bottom: 60px; }

.gallery-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 28px;
}

.gallery-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.gallery-card-inner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-card);
    background: var(--bg-card);
}

.gallery-card:hover {
    transform: translateY(-6px);
}

.gallery-card:hover .gallery-card-inner {
    border-color: rgba(212, 166, 66, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 166, 66, 0.08);
}

.gallery-card img { width: 100%; display: block; transition: transform 0.5s; }
.gallery-card:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-card:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Coming Soon */
.coming-soon-card {
    text-align: center;
    padding: 60px 32px;
    border: 1px dashed rgba(212, 166, 66, 0.15);
    border-radius: var(--radius-lg);
    background: rgba(212, 166, 66, 0.01);
    position: relative;
    overflow: hidden;
}

.coming-soon-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 166, 66, 0.06), transparent);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.coming-soon-content { position: relative; z-index: 2; }
.coming-soon-icon { font-size: 2.5rem; margin-bottom: 16px; }

.coming-soon-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.coming-soon-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── Contact ──────────────────────────────────────────────── */
.contact {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 40px 24px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-subtle);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
}

.contact-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(212, 166, 66, 0.06);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.4s;
}

.contact-card:hover .contact-icon-wrap {
    background: rgba(212, 166, 66, 0.12);
    transform: scale(1.1);
}

.contact-icon { font-size: 1.4rem; }

.contact-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-card p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 12px; }

.contact-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.contact-card:hover .contact-arrow { color: var(--gold); transform: translateX(4px); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-subtle);
    padding: 40px 36px 28px;
}

.footer-content { max-width: var(--max-width); margin: 0 auto; }

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo-sm { width: 30px; height: 30px; font-size: 0.6rem; border-radius: 8px; }

.footer-brand-name {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.footer-brand-tagline {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); font-size: 0.82rem; }
.footer-links a:hover { color: var(--gold); }

.footer-divider {
    height: 1px;
    background: var(--border-card);
    margin-bottom: 16px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal-el,
.about-stat-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-el.visible,
.about-stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .navbar { padding: 12px 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 24px 60px;
        gap: 48px;
    }

    .hero-buttons { justify-content: center; }
    .hero-scroll-indicator { display: none; }
    .hero-phone { width: 220px; }
    .hero-phone-reflection { width: 220px; }

    .about { padding: 80px 0; }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-text { text-align: center; }
    .about-text .section-title { text-align: center; }

    .games { padding: 80px 0; }
    .game-showcase {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 40px;
    }
    .game-features { justify-content: center; }
    .game-screenshots { width: 240px; height: 380px; }
    .game-phone-front { width: 160px; }
    .game-phone-mid { width: 140px; }
    .game-phone-back { width: 120px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .contact { padding: 80px 0; }
    .contact-cards { grid-template-columns: 1fr; }

    .footer-top { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .btn { padding: 12px 22px; font-size: 0.82rem; }
    .title-line { font-size: 2.5rem; }
    .title-line-accent { font-size: 2.5rem; }
    .about-stats { gap: 12px; }
    .gallery-grid { gap: 10px; }
}
