/* ============================================
   FROM DUST TO RUST ZA — site.css
   Theme: Post-apocalyptic desert survival
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&display=swap');

/* ── Custom Cursor ── */
*, *::before, *::after {
    box-sizing: border-box;
    cursor: none !important;
}

#cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.2s ease, width 0.2s ease, height 0.2s ease;
    mix-blend-mode: difference;
}

#cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
}

#cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(232, 197, 109, 0.1);
}

/* ── CSS Variables ── */
:root {
    --bg-dark: #0a0804;
    --bg-mid: #111008;
    --bg-card: #16130a;
    --bg-card2: #1c1810;
    --gold: #e8c56d;
    --gold-dim: #a88940;
    --rust: #c2430a;
    --rust-dim: #8a2f07;
    --dust: #d4a96a;
    --text: #c8b99a;
    --text-dim: #7a6a50;
    --white: #f0e8d8;
    --green: #4a8c3f;
    --green-bright: #6bc45f;
    --border: rgba(232, 197, 109, 0.15);
    --glow: rgba(232, 197, 109, 0.08);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
}

/* ── Reset & Base ── */
html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    background: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Noise Texture Overlay ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--white);
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
    line-height: 1.1;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--gold); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { margin: 0 0 1rem; color: var(--text); }

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--white); }

strong { color: var(--gold); font-weight: 600; }

code {
    font-family: var(--font-mono);
    background: rgba(232, 197, 109, 0.08);
    padding: 2px 8px;
    border-radius: 3px;
    color: var(--gold);
    font-size: 0.9em;
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0.5rem auto 0;
}

.section-title p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Navigation ── */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 8, 4, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(10, 8, 4, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-decoration: none;
}

.nav-logo span { color: var(--rust); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.nav-connect {
    background: var(--rust);
    color: var(--white) !important;
    padding: 0.4rem 1.2rem;
    border-radius: 3px;
    transition: background 0.2s !important;
}
.nav-connect:hover { background: var(--rust-dim) !important; }
.nav-connect::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

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

/* ── Hero Section ── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(194, 67, 10, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(232, 197, 109, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0a0804 0%, #111008 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232,197,109,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,197,109,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-family: var(--font-mono);
    color: var(--rust);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero-title .line1 { color: var(--white); }
.hero-title .line2 { color: var(--gold); }
.hero-title .line3 { color: var(--rust); font-size: 0.5em; }

.hero-desc {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.hero-stat .label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 3px;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.3s;
}

.btn:hover::before { left: 0; }

.btn-primary {
    background: var(--rust);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--rust-dim);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 67, 10, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* ── Cards ── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.card:hover {
    border-color: rgba(232, 197, 109, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.card:hover::before { transform: scaleX(1); }

/* ── Server Stats Bar ── */
#stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
    position: relative;
    z-index: 2;
}

.stats-bar-inner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stat-icon {
    width: 36px;
    height: 36px;
    background: rgba(232,197,109,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.stat-info .label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
}

.stat-info .value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold);
    line-height: 1;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green-bright);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(107, 196, 95, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(107, 196, 95, 0); }
}

/* ── Features Grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(232,197,109,0.3);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

/* ── Mods Grid ── */
.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.mod-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.2rem 1.5rem;
    transition: all 0.2s;
}

.mod-card:hover {
    border-color: rgba(232,197,109,0.3);
    background: var(--bg-card2);
}

.mod-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mod-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.4;
}

.mod-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tag-qol { background: rgba(74,140,63,0.2); color: var(--green-bright); }
.tag-economy { background: rgba(232,197,109,0.15); color: var(--gold); }
.tag-fun { background: rgba(194,67,10,0.2); color: #ff8c5a; }
.tag-pve { background: rgba(100,150,200,0.15); color: #80b8e0; }
.tag-build { background: rgba(180,130,60,0.2); color: var(--dust); }

/* ── Help Accordion ── */
.help-section {
    max-width: 800px;
    margin: 0 auto;
}

.help-category {
    margin-bottom: 2rem;
}

.help-category-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--rust);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    transition: background 0.2s;
}

.accordion-header:hover {
    background: var(--bg-card2);
}

.accordion-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.accordion-item.open .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(10,8,4,0.5);
}

.accordion-body-inner {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.accordion-body-inner p { font-size: 0.95rem; }

.accordion-body-inner ul {
    padding-left: 1.5rem;
    color: var(--text);
}

.accordion-body-inner ul li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* ── FAQ ── */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem;
}

.faq-q {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.faq-a {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ── Wipe Schedule ── */
.wipe-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.wipe-countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.countdown-unit {
    text-align: center;
}

.countdown-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    display: block;
    background: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    min-width: 80px;
}

.countdown-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.4rem;
    display: block;
}

/* ── Contact Form ── */
.contact-form {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232,197,109,0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    display: none;
    font-weight: 600;
}

.form-message.success {
    background: rgba(74,140,63,0.2);
    border: 1px solid var(--green);
    color: var(--green-bright);
    display: block;
}

.form-message.error {
    background: rgba(194,67,10,0.2);
    border: 1px solid var(--rust);
    color: #ff8c5a;
    display: block;
}

/* ── Connect Banner ── */
.connect-banner {
    background: linear-gradient(135deg, rgba(194,67,10,0.15), rgba(232,197,109,0.05));
    border: 1px solid rgba(194,67,10,0.3);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
}

.connect-ip {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--gold);
    background: var(--bg-dark);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--border);
    display: inline-block;
    margin: 1rem 0;
    letter-spacing: 0.1em;
}

.copy-btn {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    background: none;
    border: none;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    margin-left: 0.5rem;
    transition: all 0.2s;
    vertical-align: middle;
}

.copy-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Footer ── */
#footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.footer-logo span { color: var(--rust); }

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

.footer-heading {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: var(--text);
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

/* ── Particles ── */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    animation: float-up linear infinite;
    opacity: 0;
}

@keyframes float-up {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-200px) scale(0); opacity: 0; }
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Glitch Effect ── */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.glitch::before {
    color: var(--rust);
    animation: glitch1 4s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    color: var(--gold);
    animation: glitch2 4s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-3px, 1px); }
    94% { transform: translate(3px, -1px); }
    96% { transform: translate(-2px, 2px); }
    98% { transform: translate(2px, -2px); }
}

@keyframes glitch2 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(3px, -1px); }
    94% { transform: translate(-3px, 1px); }
    96% { transform: translate(2px, -2px); }
    98% { transform: translate(-2px, 2px); }
}

/* ── Dividers ── */
.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 3rem 0;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
    padding: 8rem 0 4rem;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(194,67,10,0.1) 0%, transparent 70%),
        var(--bg-dark);
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-dim); margin: 0 0.5rem; }

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

/* ── Responsive ── */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0; right: 0;
        background: rgba(10,8,4,0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(12px);
    }

    .nav-links.open { display: flex; }
    .hamburger { display: flex; }

    .hero-title { font-size: clamp(3rem, 14vw, 5rem); }

    .hero-stats { gap: 1.5rem; }

    .stats-bar-inner { gap: 1.5rem; }

    .wipe-countdown { gap: 0.8rem; }
    .countdown-num { font-size: 2.5rem; min-width: 60px; padding: 0.4rem 0.6rem; }

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

    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

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

    .contact-form { padding: 1.5rem; }

    #cursor, #cursor-dot { display: none; }

    *, *::before, *::after { cursor: auto !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section { padding: 3rem 0; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}
