:root {
    --bg-dark: #080a10;
    --card-bg: rgba(16, 22, 34, 0.75);
    --card-border: rgba(245, 158, 11, 0.18);
    --accent-orange: #f59e0b;
    --accent-fire: #ef4444;
    --accent-green: #10b981;
    --accent-cyan: #06b6d4;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --radius-lg: 16px;
    --radius-md: 10px;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}

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

body.drop-theme {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
    min-height: 100vh;
}

.bg-radar-glow {
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.16;
    pointer-events: none;
}
.glow-1 { top: -100px; left: -50px; background: var(--accent-orange); }
.glow-2 { bottom: 50px; right: -100px; background: var(--accent-fire); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar {
    background: rgba(8, 10, 16, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-content { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; }
.brand-icon { color: var(--accent-orange); font-size: 1.3rem; }
.badge-hot {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-orange);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.nav-links { display: flex; gap: 25px; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-orange); }

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

/* Network Spinner Widget (2/4...) */
.network-spinner {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3px;
}
.btn-spin-arrow {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: background 0.2s, color 0.2s;
}
.btn-spin-arrow:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }
.spin-label-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}
.spin-num strong { color: var(--accent-orange); }
.spin-caret { font-size: 0.7rem; color: var(--text-muted); transition: transform 0.2s; }
.network-spinner.open .spin-caret { transform: rotate(180deg); }

.spin-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 240px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    z-index: 200;
}
.network-spinner.open .spin-dropdown { display: flex; flex-direction: column; gap: 4px; }
.spin-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s;
}
.spin-item:hover { background: rgba(255, 255, 255, 0.08); }
.spin-item.active { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.3); }
.spin-idx { background: rgba(255, 255, 255, 0.1); font-size: 0.7rem; font-weight: 700; padding: 2px 6px; border-radius: 6px; color: var(--accent-orange); }
.spin-item strong { display: block; font-size: 0.85rem; }
.spin-item small { display: block; font-size: 0.7rem; color: #94a3b8; }

.btn-sm-sync {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent-orange);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-lang {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Ad Banners */
.ad-wrapper { margin: 20px auto; text-align: center; }
.aads-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 10px;
    display: inline-block;
    max-width: 100%;
}
.aads-placeholder.medium-rect { min-height: 250px; width: 300px; }
.ad-label { display: block; font-size: 0.65rem; color: var(--text-muted); margin-bottom: 5px; }

/* Hero Stats Bar */
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin-bottom: 25px; }
.stat-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 18px; backdrop-filter: blur(10px); }
.stat-card.highlight-card { border-color: var(--accent-orange); background: rgba(245, 158, 11, 0.08); }
.stat-title { display: block; font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 6px; }
.stat-value { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: #fff; }
.stat-sub { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.stat-sub.positive { color: var(--accent-green); }

/* Grid Layout */
.grid-layout { display: grid; grid-template-columns: 1fr 340px; gap: 25px; }
@media (max-width: 900px) { .grid-layout { grid-template-columns: 1fr; } .nav-links { display: none; } }

.card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 25px; backdrop-filter: blur(10px); }
.card-header { margin-bottom: 20px; }
.card-header.space-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.card-header h2, .card-header h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; }
.subtitle { color: var(--text-secondary); font-size: 0.85rem; margin-top: 5px; }

/* Text Content & FAQ */
.text-box { line-height: 1.6; }
.card-body p { margin-bottom: 15px; color: var(--text-secondary); font-size: 0.95rem; }
.card-body p strong { color: var(--text-primary); }
.card-body h3 { font-family: var(--font-heading); font-size: 1.05rem; margin: 20px 0 10px; color: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: rgba(0, 0, 0, 0.2); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 15px; }
.faq-item strong { display: block; margin-bottom: 5px; color: var(--accent-orange); font-weight: 600; }
.faq-item p { margin-bottom: 0; font-size: 0.9rem; }

/* Filter Tabs */
.filter-tabs { display: flex; gap: 8px; }
.filter-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--card-border); color: var(--text-secondary); padding: 6px 14px; border-radius: 20px; cursor: pointer; font-size: 0.8rem; font-weight: 600; }
.filter-btn.active, .filter-btn:hover { background: var(--accent-orange); color: #0f172a; border-color: var(--accent-orange); }

/* Airdrop Grid Cards */
.airdrop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.drop-item-card { background: rgba(0, 0, 0, 0.35); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 16px; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.2s, border-color 0.2s; }
.drop-item-card:hover { transform: translateY(-4px); border-color: var(--accent-orange); }
.drop-item-card.featured { border-color: rgba(245, 158, 11, 0.5); background: rgba(245, 158, 11, 0.04); }

.drop-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.drop-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: #fff; }
.drop-cat { font-size: 0.75rem; color: var(--text-muted); }

.badge-status { font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 12px; }
.badge-status.confirmed { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-status.testnet { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); border: 1px solid rgba(6, 182, 212, 0.3); }

.drop-item-body { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 15px; }
.drop-meta-row { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.75rem; }
.drop-meta-row span { color: var(--text-muted); }
.drop-meta-row strong { color: #fff; }

.btn-farm { display: block; text-align: center; background: rgba(245, 158, 11, 0.15); color: var(--accent-orange); border: 1px solid rgba(245, 158, 11, 0.3); padding: 8px; border-radius: var(--radius-md); font-size: 0.8rem; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.btn-farm:hover { background: var(--accent-orange); color: #0f172a; }

/* Daily Checklist */
.checklist-box { display: flex; flex-direction: column; gap: 12px; }
.chk-item { background: rgba(0, 0, 0, 0.3); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: 14px; display: flex; align-items: center; gap: 14px; cursor: pointer; }
.chk-box { display: none; }
.chk-custom { width: 22px; height: 22px; border: 2px solid var(--text-muted); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.chk-box:checked + .chk-custom { background: var(--accent-green); border-color: var(--accent-green); }
.chk-box:checked + .chk-custom::after { content: '✓'; color: #fff; font-weight: bold; font-size: 14px; }
.chk-info { flex: 1; display: flex; flex-direction: column; }
.chk-info strong { font-size: 0.9rem; color: #fff; }
.chk-info span { font-size: 0.75rem; color: var(--text-secondary); }

.chk-tag { font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; }
.tag-free { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.tag-tg { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }

/* Admin Update Section */
.admin-box textarea { width: 100%; background: rgba(0, 0, 0, 0.5); border: 1px solid var(--card-border); border-radius: var(--radius-md); color: var(--accent-orange); font-family: monospace; font-size: 0.85rem; padding: 12px; margin-bottom: 12px; outline: none; }
.admin-actions { display: flex; gap: 10px; justify-content: flex-end; }
.btn-sec, .btn-pri { padding: 8px 16px; border-radius: var(--radius-md); border: none; font-weight: 600; font-size: 0.85rem; cursor: pointer; }
.btn-sec { background: rgba(255, 255, 255, 0.05); color: #fff; }
.btn-pri { background: var(--accent-orange); color: #0f172a; }

/* Combos */
.combo-list { display: flex; flex-direction: column; gap: 10px; }
.combo-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; background: rgba(0,0,0,0.3); border-radius: 8px; font-size: 0.85rem; }
.combo-info strong { display: block; color: #fff; }
.combo-info span { font-size: 0.75rem; color: var(--text-secondary); }
.badge-combo { background: rgba(245, 158, 11, 0.15); color: var(--accent-orange); padding: 4px 8px; border-radius: 6px; font-weight: 700; font-size: 0.75rem; }

/* Footer */
.footer { border-top: 1px solid var(--card-border); padding: 30px 0; margin-top: 40px; background: rgba(4, 5, 10, 0.95); font-size: 0.85rem; color: var(--text-secondary); text-align: center; }
