:root { --iron: #1a1a1a; --steel: #222; --border: rgba(255,255,255,0.08); --accent: #e94560; }
/* ===== RESET + GENERAL ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 2rem;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-size: 1.2rem; font-weight: 700;
  color: #fff; text-decoration: none;
  letter-spacing: 1px;
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  color: #999; text-decoration: none; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

/* ===== HERO ===== */
.hero {
  min-height: 80vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: radial-gradient(ellipse at 50% 30%, rgba(100,100,255,0.06) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}
.hero-emoji { font-size: 3rem; margin-bottom: 1rem; }
.hero h1 {
  font-size: 2.4rem; font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-size: 1.1rem; color: #888;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 0.95rem; color: #666;
  max-width: 600px;
  font-style: italic;
}

/* ===== SECTION SHARED ===== */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-size: 1.6rem; font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.section-subtitle {
  font-size: 0.85rem; color: #666;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== NEWS SECTION ===== */
.news-section {
  background: var(--iron);
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.news-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.news-card .sentiment {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.news-card .sentiment.bullish { background: #0d3320; color: #00ff88; }
.news-card .sentiment.bearish { background: #3d0f0f; color: #ff4444; }
.news-card .sentiment.neutral { background: #2a2a10; color: #ffaa00; }

.news-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.news-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 12px;
}

.news-card .why {
  font-size: 13px;
  color: #888;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.news-card .timestamp {
  font-size: 11px;
  color: #555;
  margin-top: 12px;
  text-align: right;
}

.signal-board {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 24px;
}

.signal {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.signal.wait { border-left: 4px solid #ffaa00; }
.signal.watch { border-left: 4px solid #00ff88; }
.signal.avoid { border-left: 4px solid #ff4444; }

/* ============ POLITICS ============ */
#politics {
  padding: 80px 20px;
  background: var(--iron);
}

.politics-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.politics-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s;
}

.politics-card:hover {
  border-color: var(--accent);
}

.politics-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.politics-tag.risk-high { background: rgba(255,68,68,0.15); color: #ff6b6b; }
.politics-tag.risk-med { background: rgba(255,170,0,0.15); color: #ffaa00; }
.politics-tag.risk-low { background: rgba(0,200,83,0.15); color: #00c853; }

.politics-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #f0f0f0;
}

.politics-card p {
  font-size: 14px;
  color: #999;
  margin: 0 0 12px;
  line-height: 1.6;
}

.politics-why {
  font-size: 13px;
  color: var(--accent);
  font-style: italic;
}

/* ========== AI AGENT ========== */
#ai-agent {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #e0e0e0;
  padding: 80px 5%;
}
#ai-agent h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}
#ai-agent .subtitle {
  text-align: center;
  color: #888;
  margin-bottom: 40px;
  font-size: 0.95rem;
}
.coins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.coin-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.coin-card:hover {
  transform: translateY(-3px);
  border-color: #e94560;
}
.coin-card.locked {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}
.coin-rank {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(233,69,96,0.2);
}
.coin-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.coin-symbol {
  font-size: 0.85rem;
  color: #e94560;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.coin-detail {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.coin-detail .label { color: #888; }
.coin-detail .value { color: #e0e0e0; font-weight: 600; }
.coin-thesis {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
}

/* ========== PAYWALL OVERLAY ========== */
.paywall-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,26,46,0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  z-index: 10;
  text-align: center;
  padding: 20px;
}
.paywall-overlay .lock-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.paywall-overlay .pay-text {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ========== PAYMENT MODAL ========== */
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-backdrop.active { display: flex; }
.modal {
  position: relative;
  background: #1a1a2e;
  border: 1px solid rgba(233,69,96,0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  color: #e0e0e0;
}
.modal h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.modal .price {
  font-size: 2rem;
  color: #e94560;
  font-weight: 800;
  margin-bottom: 20px;
}
.modal .wallet-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(233,69,96,0.2);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  word-break: break-all;
  font-family: monospace;
  font-size: 0.85rem;
  color: #e94560;
}
.modal .wallet-label {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 6px;
}
.modal input[type=text] {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.modal input[type=text]::placeholder { color: #666; }
.modal .btn-verify {
  background: #e94560;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  transition: background 0.2s;
}
.modal .btn-verify:hover { background: #c73652; }
.modal .btn-verify:disabled { background: #555; cursor: not-allowed; }
.modal .verify-msg {
  margin-top: 10px;
  font-size: 0.85rem;
  min-height: 20px;
}
.modal .close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal .close-modal:hover { color: #fff; }
.modal .disclaimer {
  margin-top: 16px;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}
.btn-unlock {
  background: #e94560;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-unlock:hover { background: #c73652; }

/* ===== MISSING SELECTORS ===== */
.section-sub {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 2rem;
}
.section-inner {
  text-align: center;
  padding: 0 2rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.disclaimer {
  margin-top: 24px;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}
.loading {
  text-align: center;
  color: #555;
  padding: 2rem;
}
.qr-placeholder {
  margin: 16px auto;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 0.8rem;
}
.wallet-box + label {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: #999;
  text-align: left;
}
.modal p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,69,96,0.08) 0%, transparent 70%);
  overflow: hidden;
}

.qr-code {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}
.qr-code svg {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
}
