/* =============================================
   ELDORIA — DONATE PAGE
   Refined dark aesthetic with amber/gold accents
   ============================================= */

:root {
    --clr-bg:       #08090d;
    --clr-surface:  #0e1117;
    --clr-surface2: #13161f;
    --clr-border:   rgba(255,255,255,.07);
    --clr-text:     #e2e8f0;
    --clr-muted:    #5a6478;

    --clr-gold:     #e9b84a;
    --clr-gold-dim: rgba(233,184,74,.15);
    --clr-pink:     #f43f6b;
    --clr-pink-dim: rgba(244,63,107,.12);
    --clr-purple:   #a855f7;
    --clr-purple-dim: rgba(168,85,247,.12);
    --clr-cyan:     #22d3ee;
    --clr-green:    #34d399;

    --font-display: 'Syne', sans-serif;
    --font-body:    'DM Sans', sans-serif;

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-xl:  32px;

    --shadow-glow-gold:   0 0 40px rgba(233,184,74,.2);
    --shadow-glow-pink:   0 0 40px rgba(244,63,107,.2);
    --shadow-glow-purple: 0 0 40px rgba(168,85,247,.2);
}

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

body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Shared section header ---- */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clr-gold);
    background: var(--clr-gold-dim);
    border: 1px solid rgba(233,184,74,.25);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--clr-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, opacity .25s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.12), transparent);
    opacity: 0;
    transition: opacity .25s;
}

.btn:hover { transform: translateY(-3px); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(-1px); }

.btn--primary {
    background: linear-gradient(135deg, var(--clr-pink), var(--clr-purple));
    color: #fff;
    box-shadow: 0 8px 24px rgba(244,63,107,.3);
}
.btn--primary:hover { box-shadow: 0 16px 36px rgba(244,63,107,.45); }

.btn--ghost {
    background: transparent;
    border: 1.5px solid var(--clr-border);
    color: var(--clr-text);
}
.btn--ghost:hover {
    border-color: rgba(255,255,255,.25);
    background: rgba(255,255,255,.04);
}

.btn--vip {
    background: linear-gradient(135deg, #d4920f, #e9b84a);
    color: #0e0900;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(233,184,74,.3);
}
.btn--vip:hover { box-shadow: 0 16px 36px rgba(233,184,74,.45); }

.btn--premium {
    background: linear-gradient(135deg, var(--clr-purple), #c026d3);
    color: #fff;
    box-shadow: 0 8px 24px rgba(168,85,247,.3);
}
.btn--premium:hover { box-shadow: 0 16px 36px rgba(168,85,247,.45); }

.btn--outline {
    background: transparent;
    border: 1.5px solid var(--clr-border);
    color: var(--clr-muted);
    cursor: not-allowed;
}

.btn--large { padding: 18px 40px; font-size: 1rem; }

/* ==============================================
   HERO
   ============================================== */
.donate-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    z-index: -2;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}
.hero-orb--1 { width: 500px; height: 500px; background: rgba(244,63,107,.14); top: -10%; left: -10%; }
.hero-orb--2 { width: 400px; height: 400px; background: rgba(168,85,247,.1); top: 20%; right: 0; }
.hero-orb--3 { width: 350px; height: 350px; background: rgba(233,184,74,.08); bottom: 0; left: 30%; }

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 28px;
}

.eyebrow-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--clr-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--clr-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 20px 40px;
    backdrop-filter: blur(12px);
}

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

.hero-stat__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat__label {
    font-size: 0.78rem;
    color: var(--clr-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-stat__divider {
    width: 1px;
    height: 40px;
    background: var(--clr-border);
}

/* Floating emojis */
.hero-floats { position: absolute; inset: 0; pointer-events: none; }
.hero-float {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 16px rgba(255,255,255,.15));
    animation: heroFloat var(--dur) ease-in-out infinite var(--delay);
    opacity: .7;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-22px) rotate(8deg); }
}

/* ==============================================
   PRIVILEGES SECTION
   ============================================== */
.privileges-section {
    padding: 120px 0;
    background: var(--clr-surface);
    position: relative;
}

.privileges-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

/* Privilege cards */
.priv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    align-items: start;
}

.priv-card {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative;
    overflow: visible;
}

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

.priv-card--vip {
    border-color: rgba(233,184,74,.3);
    box-shadow: 0 0 0 1px rgba(233,184,74,.1), 0 20px 50px rgba(233,184,74,.08);
}
.priv-card--vip:hover { box-shadow: 0 0 0 1px rgba(233,184,74,.4), var(--shadow-glow-gold); }

.priv-card--premium {
    border-color: rgba(168,85,247,.3);
}
.priv-card--premium:hover { box-shadow: 0 0 0 1px rgba(168,85,247,.4), var(--shadow-glow-purple); }

.priv-card--popular {
    padding-top: 50px;
}

.priv-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #d4920f, #e9b84a);
    color: #0e0900;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: .05em;
    padding: 6px 20px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(233,184,74,.4);
}

.priv-card__header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--clr-border);
}

.priv-card__icon { font-size: 2.8rem; margin-bottom: 12px; }

.priv-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.price-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-free { color: var(--clr-green); font-size: 1.5rem; }

.price-period {
    font-size: 0.85rem;
    color: var(--clr-muted);
}

.priv-card--vip .price-amount { color: var(--clr-gold); }
.priv-card--premium .price-amount { color: var(--clr-purple); }

.priv-card__features {
    list-style: none;
    margin-bottom: 28px;
}

.priv-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--clr-border);
}

.priv-card__features li:last-child { border-bottom: none; }

.priv-card__features li i.fa-check { color: var(--clr-green); flex-shrink: 0; }
.priv-card__features li i.fa-times { color: var(--clr-muted); flex-shrink: 0; }
.priv-card__features li.muted { color: var(--clr-muted); }

.chat-prefix {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}
.chat-prefix--vip { background: rgba(233,184,74,.15); color: var(--clr-gold); }
.chat-prefix--premium { background: rgba(168,85,247,.15); color: var(--clr-purple); }

.priv-card__action { text-align: center; }
.priv-card__action .btn { width: 100%; justify-content: center; }

/* ---- Tabs ---- */
.tabs-wrapper {
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--clr-border);
    background: rgba(0,0,0,.3);
    padding: 6px;
    gap: 6px;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--clr-muted);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn:hover { color: var(--clr-text); background: rgba(255,255,255,.04); }

.tab-btn.active {
    background: var(--clr-surface);
    color: var(--clr-gold);
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.tab-pane { display: none; padding: 36px; }
.tab-pane.active { display: block; }

/* ---- Flags tab ---- */
.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-bottom: 28px;
}

.flags-col h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.flags-col h4 i { color: var(--clr-gold); }

.flags-col ul { list-style: none; }

.flags-col li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    margin-bottom: 6px;
    font-size: 0.88rem;
    background: rgba(255,255,255,.02);
}

.flags-col li code {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: var(--clr-cyan);
    background: rgba(34,211,238,.1);
    padding: 2px 7px;
    border-radius: 4px;
    flex-shrink: 0;
}

.flags-col li span { color: var(--clr-muted); font-size: 0.82rem; margin-left: auto; }

/* Access indicator colors */
.flags-col li[data-access="all"]::before     { content: '●'; color: var(--clr-green); font-size: .5rem; }
.flags-col li[data-access="vip"]::before     { content: '●'; color: var(--clr-gold); font-size: .5rem; }
.flags-col li[data-access="premium"]::before { content: '●'; color: var(--clr-purple); font-size: .5rem; }
.flags-col li[data-access="none"]::before    { content: '●'; color: var(--clr-muted); font-size: .5rem; }

.flags-legend {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(0,0,0,.2);
    border: 1px solid var(--clr-border);
}

.flags-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--clr-muted);
}

.flags-legend span[data-access="all"]::before     { content: '●'; color: var(--clr-green); }
.flags-legend span[data-access="vip"]::before     { content: '●'; color: var(--clr-gold); }
.flags-legend span[data-access="premium"]::before { content: '●'; color: var(--clr-purple); }
.flags-legend span[data-access="none"]::before    { content: '●'; color: var(--clr-muted); }

/* ---- Commands tab ---- */
.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.commands-col h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.commands-col:nth-child(1) h4 { color: var(--clr-green); }
.commands-col:nth-child(2) h4 { color: var(--clr-gold); }
.commands-col:nth-child(3) h4 { color: var(--clr-purple); }

.commands-col ul { list-style: none; }

.commands-col li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    background: rgba(255,255,255,.02);
    transition: background .2s, transform .2s;
}

.commands-col li:hover { background: rgba(255,255,255,.04); transform: translateX(4px); }

.commands-col code {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: var(--clr-cyan);
    background: rgba(34,211,238,.1);
    padding: 2px 7px;
    border-radius: 4px;
    flex-shrink: 0;
}

.commands-col span { color: var(--clr-muted); font-size: 0.82rem; flex: 1; }

.commands-col em {
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    white-space: nowrap;
}

em[data-access="all"]     { background: rgba(52,211,153,.15); color: var(--clr-green); }
em[data-access="vip"]     { background: rgba(233,184,74,.15); color: var(--clr-gold); }
em[data-access="premium"] { background: rgba(168,85,247,.15); color: var(--clr-purple); }

/* ==============================================
   PAYMENT SECTION
   ============================================== */
.payment-section {
    padding: 120px 0;
    background: var(--clr-bg);
    position: relative;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.payment-feature {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: center;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 50px 60px;
    margin-bottom: 40px;
}

/* Card mock */
.card-mock {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1.6 / 1;
    background: linear-gradient(135deg, #1a1f2e, #0d111a);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
}

.card-mock::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(233,184,74,.08);
}

.card-mock__chip {
    width: 36px;
    height: 28px;
    background: linear-gradient(135deg, #d4a017, #e9b84a);
    border-radius: 5px;
    position: relative;
}

.card-mock__chip::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 3px;
}

.card-mock__logo { font-size: 1.8rem; color: rgba(255,255,255,.6); text-align: right; }

.card-mock__number {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    letter-spacing: .15em;
    color: rgba(255,255,255,.8);
}

.card-mock__footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,.45);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.payment-feature__info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.payment-feature__info p {
    font-size: 1rem;
    color: var(--clr-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.payment-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--clr-border);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--clr-text);
}

.payment-badges span i { color: var(--clr-gold); }

/* Security row */
.security-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.security-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: border-color .3s;
}

.security-item:hover { border-color: rgba(233,184,74,.25); }

.security-item__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--clr-gold-dim);
    border: 1px solid rgba(233,184,74,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.security-item__icon i {
    font-size: 1.4rem;
    color: var(--clr-gold);
}

.security-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.security-item p { font-size: 0.9rem; color: var(--clr-muted); }

/* ==============================================
   FAQ SECTION
   ============================================== */
.faq-section {
    padding: 120px 0;
    background: var(--clr-surface);
}

.faq-section::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
    margin-top: -120px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.faq-item {
    display: flex;
    gap: 20px;
    background: var(--clr-surface2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color .3s, transform .3s;
}

.faq-item:hover {
    border-color: rgba(233,184,74,.2);
    transform: translateY(-4px);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--clr-gold-dim);
    border: 1px solid rgba(233,184,74,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item__icon i { color: var(--clr-gold); font-size: 1.1rem; }

.faq-item__body h4 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.faq-item__body p { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.65; }

/* ==============================================
   CTA SECTION
   ============================================== */
.cta-section {
    padding: 120px 0;
    background: var(--clr-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}
.cta-orb--1 { width: 500px; height: 500px; background: rgba(233,184,74,.08); top: -30%; left: -10%; }
.cta-orb--2 { width: 400px; height: 400px; background: rgba(168,85,247,.08); bottom: -20%; right: -5%; }

.cta-content .section-tag { margin-bottom: 20px; }

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--clr-muted);
    margin-bottom: 44px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 900px) {
    .priv-cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .payment-feature { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
    .card-mock { max-width: 100%; }
    .security-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero-stats { gap: 20px; padding: 16px 24px; flex-direction: column; }
    .hero-stat__divider { width: 60px; height: 1px; }
    .hero-title { font-size: 2.6rem; }
    .flags-grid { grid-template-columns: 1fr; }
    .commands-grid { grid-template-columns: 1fr; }
    .tabs-nav { flex-direction: column; }
    .faq-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.9rem; }
    .donate-hero { padding: 100px 0 60px; }
    .privileges-section, .payment-section, .faq-section, .cta-section { padding: 80px 0; }
}
