/* =============================================
   CASINO.ONL — Launching Soon
   Dark luxury theme with gold accents
   ============================================= */

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

:root {
    --gold: #cc9933;
    --gold-light: #ffd700;
    --gold-dark: #996b1a;
    --gold-glow: rgba(204, 153, 51, 0.4);
    --gold-subtle: rgba(204, 153, 51, 0.08);
    --bg: #050508;
    --bg-elevated: rgba(15, 15, 20, 0.85);
    --bg-card: rgba(255, 255, 255, 0.03);
    --text: #e8e6e1;
    --text-dim: #7a7872;
    --text-muted: #4a4844;
    --border: rgba(204, 153, 51, 0.15);
    --border-hover: rgba(204, 153, 51, 0.4);
    --glass: rgba(10, 10, 15, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) transparent;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-rendering: optimizeLegibility;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; background: none; border: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* =============================================
   CUSTOM CURSOR
   ============================================= */

#cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
    mix-blend-mode: difference;
}

#cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(204, 153, 51, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s, border-color 0.3s;
    opacity: 0.6;
}

#cursor.hover {
    width: 16px; height: 16px;
    background: var(--gold-light);
}

#cursor-follower.hover {
    width: 64px; height: 64px;
    opacity: 0.25;
    border-color: var(--gold-light);
}

/* =============================================
   LOADING SCREEN
   ============================================= */

#loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 1s var(--ease-out), visibility 1s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* Spinning Casino Chip */
.chip-spinner {
    width: 72px;
    height: 72px;
    position: relative;
    animation: chipSpin3D 2.5s linear infinite;
    transform-style: preserve-3d;
    perspective: 600px;
}

.chip-face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: radial-gradient(circle at 35% 35%, var(--gold-dark), rgba(153, 107, 26, 0.15) 60%, transparent 80%);
    box-shadow: inset 0 0 20px rgba(204, 153, 51, 0.1), 0 0 30px rgba(204, 153, 51, 0.15);
}

.chip-cross-h,
.chip-cross-v {
    position: absolute;
    top: 50%; left: 50%;
    background: var(--gold);
    border-radius: 1px;
}

.chip-cross-h {
    width: 60%; height: 2px;
    transform: translate(-50%, -50%);
}

.chip-cross-v {
    width: 2px; height: 60%;
    transform: translate(-50%, -50%);
}

.chip-edge {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed var(--gold-dark);
    animation: chipEdgeSpin 4s linear infinite reverse;
}

.chip-edge-outer {
    inset: -12px;
    border-color: rgba(153, 107, 26, 0.3);
    animation-duration: 6s;
    animation-direction: normal;
}

@keyframes chipSpin3D {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    100% { transform: rotateY(360deg) rotateX(15deg); }
}

@keyframes chipEdgeSpin {
    to { transform: rotate(360deg); }
}

/* Progress Bar */
.loader-bar {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
    border-radius: 1px;
    transition: width 0.3s ease-out;
    box-shadow: 0 0 12px var(--gold-glow);
}

.loader-text {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* =============================================
   THREE.JS CANVAS
   ============================================= */

#bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* =============================================
   MOBILE MENU
   ============================================= */

.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px; right: 20px;
    z-index: 10002;
    width: 44px; height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: none;
    transition: border-color 0.3s;
}

.mobile-menu-btn:hover {
    border-color: var(--border-hover);
}

.hamburger-line {
    display: block;
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-dim);
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s var(--ease-out);
    cursor: none;
}

.mobile-menu-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* =============================================
   HERO SECTION
   ============================================= */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex: 1;
}

.hero-content {
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 36px;
    background: var(--gold-subtle);
    opacity: 0;
    transform: translateY(24px);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--gold-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

/* Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 10vw, 128px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 8px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.title-line {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 35%, var(--gold-dark) 70%, var(--gold-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(50px);
    animation: shimmerGold 6s ease-in-out infinite;
}

@keyframes shimmerGold {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-dot {
    display: inline-block;
    color: var(--gold-light);
    -webkit-text-fill-color: var(--gold-light);
    font-size: 0.55em;
    opacity: 0;
    transform: scale(0);
    text-shadow: 0 0 40px var(--gold-glow);
}

.hero-subtitle {
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto 44px;
    opacity: 0;
    transform: translateY(24px);
}

/* =============================================
   COUNTDOWN TIMER
   ============================================= */

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(24px);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 16px 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.countdown-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 6px;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--gold);
    opacity: 0.4;
    margin-top: -12px;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.1; }
}

/* =============================================
   NOTIFY SECTION
   ============================================= */

.notify-section {
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(24px);
}

.notify-text {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.notify-form {
    display: flex;
    gap: 8px;
    max-width: 460px;
    margin: 0 auto;
}

.notify-input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.4s, box-shadow 0.4s;
    cursor: none;
}

.notify-input::placeholder { color: var(--text-muted); }

.notify-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(204, 153, 51, 0.1);
}

.notify-success {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: 16px;
    display: none;
    opacity: 0;
    transform: translateY(8px);
}

.notify-success.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg);
    border: none;
    box-shadow: 0 4px 20px rgba(204, 153, 51, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out), height 0.6s var(--ease-out);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after { width: 300px; height: 300px; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--gold-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

/* =============================================
   HERO METRICS
   ============================================= */

.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    transform: translateY(24px);
}

.metric { text-align: center; }

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.metric-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 6px;
    display: block;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border-hover), transparent);
}

/* =============================================
   NETWORK LINKS
   ============================================= */

.network-section {
    margin-top: 96px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(24px);
}

.network-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-align: center;
}

.network-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.network-link {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    padding: 8px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s var(--ease-out), background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
    cursor: none;
    text-decoration: none;
}

.network-link:hover {
    border-color: var(--border-hover);
    background: var(--gold-subtle);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(204, 153, 51, 0.1);
}

.network-link-name {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dim);
    transition: color 0.3s;
}

.network-link:hover .network-link-name {
    color: var(--text);
}

.network-link-dot {
    color: var(--gold);
    font-weight: 700;
    font-size: 11px;
}

.network-link-tld {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}

/* =============================================
   SCROLL INDICATOR
   ============================================= */

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-diamond {
    width: 8px; height: 8px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollDiamond 2.5s ease-in-out infinite;
}

@keyframes scrollDiamond {
    0%, 100% { opacity: 0.3; transform: rotate(45deg) translateY(0); }
    50% { opacity: 1; transform: rotate(45deg) translateY(6px); }
}

.scroll-text {
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* =============================================
   FOOTER
   ============================================= */

#footer {
    position: relative;
    z-index: 1;
    padding: 28px 24px;
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 5, 8, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.logo {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text);
    transition: color 0.3s;
}

.logo:hover { color: var(--gold); }
.logo span { color: var(--gold); }

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 12px;
    color: var(--text-dim);
    transition: color 0.3s;
    letter-spacing: 1px;
    cursor: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* =============================================
   RESPONSIVE — Desktop+
   ============================================= */

@media (min-width: 992px) {
    .hero-content { padding: 0 40px; }
}

/* =============================================
   RESPONSIVE — Tablet
   ============================================= */

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title { letter-spacing: 4px; }
    .countdown { gap: 10px; }
    .countdown-item { min-width: 72px; }
}

/* =============================================
   RESPONSIVE — Mobile Large
   ============================================= */

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-title { letter-spacing: 3px; }
    .hero-metrics { gap: 24px; }
    .metric-value { font-size: 22px; }
    .countdown-item { min-width: 64px; }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */

@media (max-width: 575.98px) {
    .hero-title { letter-spacing: 2px; }
    .hero-metrics { gap: 20px; }
    .metric-value { font-size: 20px; }

    .countdown { gap: 6px; }
    .countdown-item { min-width: 60px; padding: 12px 4px 8px; }
    .countdown-sep { font-size: 24px; }

    .notify-form { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }

    .mobile-menu-btn { display: flex; }
    .mobile-menu { display: flex; }
    .footer-links { display: none; }

    #cursor, #cursor-follower { display: none; }
    body, a, button, input { cursor: auto; }

    .footer-row { flex-direction: column; gap: 16px; }
    .hero-content { padding: 0 16px; }

    .network-section { margin-top: 36px; }
    .network-links { gap: 8px; }
    .network-link { padding: 6px 12px; }
    .network-link-name, .network-link-tld { font-size: 10px; letter-spacing: 1.5px; }
}

/* =============================================
   RESPONSIVE — Smartwatch
   ============================================= */

@media (min-width: 248px) and (max-width: 383.98px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 6px 12px;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .countdown { gap: 3px; }
    .countdown-item { min-width: 50px; padding: 10px 2px 6px; border-radius: 6px; }
    .countdown-value { font-size: 28px; }
    .countdown-label { font-size: 7px; letter-spacing: 1.5px; }
    .countdown-sep { font-size: 20px; margin-top: -8px; }

    .notify-input { padding: 14px 16px; font-size: 13px; }
    .btn { padding: 14px 24px; font-size: 12px; }

    .hero-metrics {
        flex-direction: column;
        gap: 16px;
    }
    .metric-divider { width: 40px; height: 1px; }
    .metric-value { font-size: 20px; }

    .hero-content { padding: 0 12px; }

    .mobile-menu-btn {
        top: 12px; right: 12px;
        width: 38px; height: 38px;
    }

    .hamburger-line { width: 16px; }

    .scroll-indicator { bottom: 20px; }
    .scroll-text { font-size: 8px; letter-spacing: 3px; }
}

/* =============================================
   RESPONSIVE — Ultra-Tiny
   ============================================= */

@media (max-width: 247.98px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
        flex-direction: column;
        gap: 0;
    }

    .title-dot { font-size: 0.8em; }

    .hero-badge {
        font-size: 8px;
        padding: 4px 10px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .countdown { gap: 2px; flex-wrap: wrap; }
    .countdown-item { min-width: 42px; padding: 8px 2px 6px; }
    .countdown-value { font-size: 22px; }
    .countdown-label { font-size: 6px; }
    .countdown-sep { font-size: 16px; }

    .notify-input { padding: 12px 10px; font-size: 12px; }
    .btn { padding: 12px 16px; font-size: 11px; letter-spacing: 1px; }

    .hero-metrics { gap: 12px; }
    .metric-value { font-size: 16px; }
    .metric-label { font-size: 8px; }

    .hero-content { padding: 0 8px; }

    #footer { padding: 20px 12px; }
    .logo { font-size: 13px; letter-spacing: 2px; }
    .footer-bottom p { font-size: 9px; }

    .mobile-menu-btn {
        top: 8px; right: 8px;
        width: 34px; height: 34px;
    }

    .hamburger-line { width: 14px; }
    .mobile-menu-link { font-size: 16px; }

    .scroll-indicator { display: none; }
}

/* =============================================
   ANIMATIONS — Reduced Motion
   ============================================= */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
