/* =====================================================
   RAID MASTERS — Main Stylesheet
   ===================================================== */

@font-face {
    font-family: 'Rajdhani';
    src: url('rajdhani.semibold.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

/* ── CSS Variables ─────────────────────────────────── */
:root {
    --gold: #FFB800;
    --gold-light: #FFD454;
    --gold-dark: #CC9400;
    --red: #E8253A;
    --red-dark: #B51D2D;
    --bg-dark: #060810;
    --bg-mid: #0D1020;
    --bg-card: #111527;
    --bg-card2: #161B35;
    --text-primary: #F0F2FF;
    --text-muted: #8A8FAA;
    --border: rgba(255, 184, 0, 0.15);
    --border-glow: rgba(255, 184, 0, 0.4);
    --font-head: 'Rajdhani', sans-serif;
    --font-ui: 'Rajdhani', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --shadow-gold: 0 0 40px rgba(255, 184, 0, 0.2);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 184, 0, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(100, 80, 200, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── Utility ───────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-glow);
    background: rgba(255, 184, 0, 0.06);
    backdrop-filter: blur(6px);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: var(--text-primary);
    text-transform: uppercase;
}

.hero-title {
    text-transform: uppercase;
}

.slide-caption {
    display: none;
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-top: 12px;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 18px 0 0;
    border-radius: 2px;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-mid);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(6, 8, 16, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(255, 184, 0, 0.3);
}

.nav-logo-text {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.btn-nav {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(255, 184, 0, 0.5);
}

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6, 8, 16, 0.97);
    padding: 100px 32px 32px;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-ui);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--bg-dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(6, 8, 16, 0.3) 0%,
            rgba(6, 8, 16, 0.1) 30%,
            rgba(6, 8, 16, 0.7) 75%,
            rgba(6, 8, 16, 1) 100%);
}

/* animated particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    animation: float-particle linear infinite;
    opacity: 0;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {}

.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.hero-title .line-gold {
    display: block;
    background: linear-gradient(135deg, var(--gold-light) 20%, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #000;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 184, 0, 0.6);
}

.btn-outline {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 100px;
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 184, 0, 0.06);
}

/* store buttons */
.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-btn img {
    height: 48px;
    width: auto;
}

.store-btn:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 6px 16px rgba(255, 184, 0, 0.4));
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-img-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    animation: hero-float 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(255, 184, 0, 0.25));
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.hero-glow {
    position: absolute;
    inset: -20%;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(255, 184, 0, 0.18) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scroll-bounce 2s ease-in-out infinite;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-family: var(--font-ui);
    letter-spacing: 0.15em;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold));
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: linear-gradient(135deg, rgba(17, 21, 39, 0.95), rgba(13, 16, 32, 0.95));
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    position: relative;
}

.stats-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.03), transparent);
    pointer-events: none;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 28px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-glow), transparent);
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: none;
    filter: drop-shadow(0 0 12px rgba(255, 184, 0, 0.25));
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ============================================================
   GAME MODES
   ============================================================ */
.modes-section {
    padding: 100px 0;
}

.modes-header {
    text-align: center;
    margin-bottom: 60px;
}

.modes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.mode-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mode-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mode-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 70px rgba(255, 184, 0, 0.2), 0 0 0 1px rgba(255, 184, 0, 0.5);
}

.mode-card:hover::before {
    opacity: 1;
}

.mode-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.mode-card:hover img {
    transform: scale(1.08);
}

.mode-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(6, 8, 16, 0.92) 0%, rgba(6, 8, 16, 0.15) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px 28px;
    transition: background 0.3s ease;
}

.mode-card:hover .mode-card-overlay {
    background: linear-gradient(to top, rgba(6, 8, 16, 0.96) 0%, rgba(6, 8, 16, 0.4) 60%, rgba(255, 184, 0, 0.04) 100%);
}

.mode-badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-glow);
    background: rgba(255, 184, 0, 0.1);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
    width: fit-content;
}

.mode-name {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.mode-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    opacity: 0.85;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-section {
    padding: 80px 0 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(17, 21, 39, 0.8), rgba(22, 27, 53, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 184, 0, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    background: linear-gradient(145deg, rgba(22, 27, 53, 0.95), rgba(17, 21, 39, 0.9));
    border-color: rgba(255, 184, 0, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 184, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15), rgba(255, 184, 0, 0.05));
    border: 1px solid rgba(255, 184, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(255, 184, 0, 0.1);
}

.feature-title {
    font-family: var(--font-ui);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download-section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(13, 16, 32, 0.98) 0%, rgba(17, 21, 39, 0.98) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.download-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 184, 0, 0.1) 0%, transparent 65%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

.download-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(100, 80, 200, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.download-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download-left .section-subtitle {
    max-width: 100%;
}

.download-store-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.download-right {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 100%;
    max-width: 520px;
    animation: hero-float 5s ease-in-out infinite;
    filter: drop-shadow(0 24px 60px rgba(255, 184, 0, 0.2));
}

.phone-mockup img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* ============================================================
   SCREENSHOTS CAROUSEL
   ============================================================ */
.screenshots-section {
    padding: 80px 0 60px;
    overflow: hidden;
}

.screenshots-header {
    margin-bottom: 44px;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.carousel-track-outer {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    padding: 20px 0 30px;
}

.carousel-track-outer:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    /* left-offset so first slide peeks ~10% of next slide */
    padding-left: calc((100vw - 1200px) / 2 + 24px);
}

@media (max-width: 1200px) {
    .carousel-track {
        padding-left: 24px;
    }
}

.carousel-slide {
    flex: 0 0 52vw;
    max-width: 680px;
    min-width: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transform: scale(0.93);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    box-shadow: var(--shadow-card);
}

.carousel-slide.active {
    transform: scale(1);
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 184, 0, 0.3);
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.slide-caption {
    padding: 18px 22px 20px;
    background: linear-gradient(to bottom, rgba(6, 8, 16, 0) 0%, rgba(6, 8, 16, 0.96) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.slide-caption h4 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.slide-caption p {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Arrow buttons */
.carousel-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-glow);
    background: rgba(255, 184, 0, 0.1);
    color: var(--gold);
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-arrow:hover {
    background: rgba(255, 184, 0, 0.25);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.35);
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-glow);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    width: 26px;
    border-radius: 4px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 82vw;
        max-width: 100%;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .carousel-prev {
        left: 4px;
    }

    .carousel-next {
        right: 4px;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(to bottom, var(--bg-mid), rgba(4, 5, 10, 1));
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ============================================================
   LEGAL / SUPPORT PAGES
   ============================================================ */
.legal-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-mid), var(--bg-dark));
    border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.legal-hero h1 span {
    color: var(--gold);
}

.legal-hero p {
    color: var(--text-muted);
}

.legal-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.legal-body h2 {
    font-family: var(--font-ui);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-top: 44px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.legal-body h3 {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 8px;
}

.legal-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-body ul,
.legal-body ol {
    margin-left: 24px;
    margin-bottom: 12px;
}

.legal-body li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-body a {
    color: var(--gold);
    border-bottom: 1px solid rgba(255, 184, 0, 0.3);
    transition: border-color var(--transition);
}

.legal-body a:hover {
    border-color: var(--gold);
}

.legal-body strong {
    color: var(--text-primary);
}

.legal-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    display: block;
}

.legal-warning {
    background: rgba(232, 37, 58, 0.08);
    border: 1px solid rgba(232, 37, 58, 0.25);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #FF6B7A;
    line-height: 1.6;
}

.legal-caps {
    text-transform: uppercase;
    font-size: 0.85rem !important;
}

/* Support */
.support-section {
    padding: 140px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
}

.support-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.support-title {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.support-title span {
    color: var(--gold);
}

.support-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.support-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.12);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-submit {
    flex: 1;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #000;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 184, 0, 0.45);
}

.btn-cancel {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 100px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: inline-block;
}

.btn-cancel:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.support-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.support-note a {
    color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-right {
        order: -1;
    }

    .hero-img-wrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-btns,
    .store-buttons {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .modes-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .download-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-store-btns {
        justify-content: center;
    }

    .download-right {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .modes-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .stats-inner {
        gap: 36px;
    }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 40px;
    cursor: zoom-out;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 184, 0, 0.2);
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.lightbox.open img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.lightbox-close:hover {
    background: rgba(255, 184, 0, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Page transition reveal ───────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}