/* theme:dark-green font:system prefix:we1f */
:root {
  --bg-dark: #04110c;
  --bg-dark-2: #081c14;
  --bg-card-dark: #0e2820;
  --border-dark: #174030;
  --accent: #10b981;
  --accent-hover: #10b981;
  --accent-light: rgba(132,204,22,0.1);
  --accent-text: #10b981;
  --text-white: #f0f6fc;
  --text-muted: #8b949e;
  --text-dark: #f0f6fc;
  --text-body: #f0f6fc;
  --bg-light: #04110c;
  --bg-section: #081c14;
  --bg-card: #0e2820;
  --border: #174030;
  --border-light: #174030;
  --shadow: 0 1px 4px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.3);
  --radius-btn: 22px;
  --radius-card: 16px;
  --radius-badge: 20px;
  --radius-toc: 12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, sans-serif; background: var(--bg-dark); color: var(--text-white); line-height: 1.8; }
a { color: inherit; text-decoration: none; }

/* Header */
header { position: sticky; top: 0; z-index: 100; background: var(--bg-dark-2); padding: 0 20px; border-bottom: 1px solid var(--border-dark); }
header .we1f-header-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.we1f-logo { font-size: 20px; font-weight: 700; color: var(--text-white); }
.we1f-logo span { color: var(--accent); }
nav { display: flex; gap: 28px; align-items: center; }
nav a { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: opacity 0.2s; }
nav a:hover { color: var(--text-white); }
.we1f-burger { display: none; background: none; border: none; color: var(--text-white); font-size: 22px; cursor: pointer; }

/* Hero */
.we1f-hero { background: var(--bg-dark); color: var(--text-white); padding: 40px 20px 24px; }
.we1f-hero-inner { max-width: 900px; margin: 0 auto; }
.we1f-date-badge { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--border-dark); border-radius: var(--radius-badge); padding: 4px 14px; font-size: 12px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.we1f-date-sep { opacity: .4; }
.we1f-hero h1 { font-size: 42px; font-weight: 900; line-height: 1.1; max-width: 700px; margin-bottom: 20px; }
.we1f-hero-sub { font-size: 18px; color: var(--text-muted); line-height: 1.7; max-width: 620px; margin-bottom: 32px; }
.we1f-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.we1f-stat-card { border: 1px solid var(--border-dark); border-radius: 10px; padding: 16px 20px; background: rgba(255,255,255,0.04); }
.we1f-stat-num { font-size: 28px; font-weight: 800; color: var(--text-white); }
.we1f-stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.we1f-cta-btn { display: inline-block; background: var(--accent); color: #000; font-weight: 700; font-size: 15px; padding: 13px 28px; border-radius: var(--radius-btn); border: none; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 12px rgba(132,204,22,0.35); margin-bottom: 24px; }
.we1f-cta-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.we1f-hero-rating { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.we1f-stars { color: #f59e0b; font-size: 16px; }

/* TOC */
.we1f-toc-block { background: var(--bg-dark-2); border: 1px solid var(--border-dark); border-radius: var(--radius-toc); padding: 20px 24px; margin: 32px auto; max-width: 900px; width: calc(100% - 40px); }
.we1f-toc-block h2 { font-size: 16px; font-weight: 700; color: var(--text-white); margin-bottom: 12px; }
.we1f-toc-block ol { list-style: decimal inside; }
.we1f-toc-block ol li { margin-bottom: 8px; }
.we1f-toc-block ol li a { color: var(--accent); font-size: 15px; }

/* Content */
.we1f-content-wrap { max-width: 900px; margin: 0 auto; padding: 0 20px 80px; }
.we1f-content-section { padding-top: 56px; border-top: 1px solid var(--border-dark); margin-top: 48px; }
.we1f-content-section:first-child { border-top: none; margin-top: 0; }
.we1f-content-section h2 { font-size: 28px; font-weight: 700; color: var(--text-white); margin-bottom: 20px; }
.we1f-content-section p { font-size: 17px; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }
.we1f-content-section h3 { font-size: 20px; font-weight: 600; color: var(--text-white); margin: 28px 0 12px; }

/* Tables */
.we1f-table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--border-dark); margin-bottom: 24px; }
.we1f-table-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; }
.we1f-table-wrap thead tr { background: var(--accent); color: #000; }
.we1f-table-wrap thead th { padding: 12px 16px; font-weight: 700; text-align: left; }
.we1f-table-wrap tbody tr:nth-child(even) { background: var(--bg-dark-2); }
.we1f-table-wrap tbody tr:hover { background: rgba(132,204,22,0.08); }
.we1f-table-wrap tbody td { padding: 11px 16px; border-bottom: 1px solid var(--border-dark); }
.we1f-table-wrap tbody td:first-child { font-weight: 600; }

/* Lists */
.we1f-content-section ul, .we1f-content-section ol { padding-left: 0; list-style: none; margin-bottom: 20px; }
.we1f-content-section ul li, .we1f-content-section ol li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 16px; line-height: 1.6; }
.we1f-content-section ul li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 3px; }
.we1f-content-section ol { counter-reset: ol-counter; }
.we1f-content-section ol li { counter-increment: ol-counter; }
.we1f-content-section ol li::before { content: counter(ol-counter); background: var(--accent); color: #000; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }

/* FAQ */
.we1f-faq-item { margin-bottom: 12px; }
.we1f-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--bg-dark-2); border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 16px; border: 1px solid var(--border-dark); border-left: 3px solid var(--accent); }
.we1f-faq-icon { color: var(--accent); transition: transform 0.2s; }
.we1f-faq-answer { display: none; padding: 16px 20px; background: var(--bg-card-dark); border: 1px solid var(--border-dark); border-top: none; border-radius: 0 0 10px 10px; font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.we1f-faq-item.open .we1f-faq-answer { display: block; }
.we1f-faq-item.open .we1f-faq-icon { transform: rotate(180deg); }

/* Casino cards */
.we1f-casino-card { display: grid; grid-template-columns: 60px 1fr auto; gap: 16px; align-items: center; background: var(--bg-dark-2); border: 1px solid var(--border-dark); border-radius: var(--radius-card); padding: 16px 20px; margin-bottom: 12px; transition: border-color 0.2s; }
.we1f-casino-card:hover { border-color: var(--accent); }
.we1f-casino-rank { font-size: 24px; font-weight: 900; color: var(--accent); }
.we1f-casino-info { flex: 1; }
.we1f-casino-name { font-size: 16px; font-weight: 700; color: var(--text-white); }
.we1f-casino-bonus { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.we1f-casino-cta { background: var(--accent); color: #000; font-weight: 700; padding: 10px 20px; border-radius: var(--radius-btn); font-size: 14px; white-space: nowrap; }

/* Quick nav */
.we1f-quick-nav { display: none; }

/* Pros/Cons */
.we1f-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.we1f-pros, .we1f-cons { background: var(--bg-dark-2); border: 1px solid var(--border-dark); border-radius: var(--radius-card); padding: 20px; }
.we1f-pros h3 { color: var(--accent); margin-bottom: 12px; font-size: 16px; }
.we1f-cons h3 { color: #f87171; margin-bottom: 12px; font-size: 16px; }
.we1f-pros ul li::before { content: "✓"; color: var(--accent); }
.we1f-cons ul li::before { content: "✗"; color: #f87171; }

/* Social proof */
.we1f-social-proof { display: flex; gap: 16px; margin: 20px 0; flex-wrap: wrap; }
.we1f-proof-badge { background: var(--bg-dark-2); border: 1px solid var(--border-dark); border-radius: var(--radius-badge); padding: 8px 16px; font-size: 13px; color: var(--text-muted); }
.we1f-proof-badge span { color: var(--accent); font-weight: 700; }

/* Sticky CTA bar */
.we1f-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--bg-dark-2); border-top: 1px solid var(--border-dark); padding: 10px 20px; display: none; justify-content: space-between; align-items: center; }
@media (max-width: 768px) { .we1f-sticky-bar { display: flex; } }
.we1f-sticky-bar .we1f-cta-btn { margin-bottom: 0; padding: 10px 22px; font-size: 14px; }

/* Progress bar */
.we1f-progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); z-index: 9999; transition: width 0.1s; }

/* Footer */
footer { background: var(--bg-dark-2); border-top: 1px solid var(--border-dark); padding: 40px 20px; color: var(--text-muted); font-size: 14px; }
.we1f-footer-inner { max-width: 1100px; margin: 0 auto; }
.we1f-footer-links { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }
.we1f-footer-links a { color: var(--text-muted); }
.we1f-footer-links a:hover { color: var(--text-white); }
.we1f-footer-disclaimer { font-size: 12px; line-height: 1.7; opacity: 0.7; max-width: 800px; }

/* Responsive */
@media (max-width: 768px) {
  .we1f-hero h1 { font-size: 28px; }
  .we1f-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .we1f-pros-cons { grid-template-columns: 1fr; }
  nav { display: none; }
  .we1f-burger { display: block; }
  .we1f-casino-card { grid-template-columns: 40px 1fr; }
  .we1f-casino-cta { display: none; }
}

/* Ticker */
.we1f-ticker-wrap { overflow: hidden; background: var(--bg-dark-2); border: 1px solid var(--border-dark); border-radius: 8px; padding: 10px 0; margin: 16px 0; }
.we1f-ticker { display: flex; gap: 40px; animation: we1f-tick 30s linear infinite; white-space: nowrap; }
@keyframes we1f-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.we1f-ticker-item { font-size: 13px; color: var(--text-muted); }
.we1f-ticker-item span { color: var(--accent); font-weight: 700; }

/* XP bar */
.we1f-xp-bar-wrap { background: var(--bg-dark-2); border: 1px solid var(--border-dark); border-radius: 8px; padding: 12px 16px; margin: 16px 0; }
.we1f-xp-label { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.we1f-xp-track { height: 8px; background: var(--border-dark); border-radius: 4px; overflow: hidden; }
.we1f-xp-fill { height: 100%; background: var(--accent); border-radius: 4px; animation: we1f-xpgrow 2s ease-out forwards; width: 0; }
@keyframes we1f-xpgrow { to { width: 73%; } }

/* Counters */
.we1f-counter { font-variant-numeric: tabular-nums; }

/* TOC collapsible */
.we1f-toc-toggle { display: flex; align-items: center; gap: 8px; background: none; border: none; color: var(--text-white); font-size: 14px; font-weight: 600; cursor: pointer; padding: 0; width: 100%; text-align: left; }
.we1f-toc-toggle-icon { font-size: 16px; }
.we1f-toc-arrow { margin-left: auto; transition: transform 0.25s; color: var(--accent); }
.we1f-toc-list { display: none; margin-top: 14px; flex-direction: column; gap: 6px; }
.we1f-toc-block.we1f-open .we1f-toc-list { display: flex; }
.we1f-toc-block.we1f-open .we1f-toc-arrow { transform: rotate(180deg); }
.we1f-toc-link { display: flex; align-items: baseline; gap: 8px; color: var(--accent); font-size: 14px; line-height: 1.5; padding: 3px 0; text-decoration: none; }
.we1f-toc-link:hover { text-decoration: underline; }
.we1f-toc-num { font-size: 11px; font-weight: 700; background: var(--accent); color: #000; width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
