/* Replace this URL with any Google Fonts link you want */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono&family=Syne:wght@400;700;800&display=swap');
:root {
  --neon:       #CAFF00;
  --neon2:      #FF6B6B;
  --neon3:      #6BFFB8;
  --neon4:      #FFB86B;
  --bg:         #0A0A0A;
  --bg2:        #111111;
  --bg3:        #1A1A1A;
  --bg4:        #222222;
  --border:     #2A2A2A;
  --border2:    #333333;
  --text:       #F0F0F0;
  --text2:      #999999;
  --text3:      #555555;
  --sidebar-w:  260px;
  --radius:     10px;
  --radius-lg:  16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Syne', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; }
.mono { font-family: 'DM Mono', monospace; }

a { color: var(--neon); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  z-index: 100;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px 28px;
  border-bottom: 1px solid var(--border);
}
.logo-icon { font-size: 22px; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text);
}
.logo-accent { color: var(--neon); }

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  flex-shrink: 0;
}
.user-name { font-size: 14px; font-weight: 700; color: var(--text); }
.user-handle { font-size: 12px; color: var(--text2); font-family: 'DM Mono', monospace; }

.nav-links {
  list-style: none;
  padding: 16px 0;
  flex: 1;
}
.nav-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--text2);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all .2s;
  border-left: 3px solid transparent;
}
.nav-links li a:hover { color: var(--text); background: var(--bg3); }
.nav-links li.active a {
  color: var(--neon);
  background: rgba(202,255,0,0.07);
  border-left-color: var(--neon);
}
.nav-icon { font-size: 16px; }

.sidebar-footer { padding: 0 24px 16px; }
.logout-btn {
  display: block;
  padding: 10px 16px;
  color: var(--text3);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all .2s;
}
.logout-btn:hover { color: var(--neon2); border-color: var(--neon2); opacity: 1; }

/* ── MAIN CONTENT ── */
.main-content {
  margin-left: var(--sidebar-w);
  padding: 40px 48px;
  min-height: 100vh;
  max-width: calc(100vw - var(--sidebar-w));
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}
.page-title {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--text);
}
.page-sub {
  font-size: 14px;
  color: var(--text2);
  margin-top: 6px;
}

/* ── CARDS ── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-title { font-size: 18px; color: var(--text); }
.card-sub { font-size: 12px; color: var(--text2); }
.card-link { font-size: 13px; color: var(--neon); font-weight: 600; }

/* ── STAT CARDS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .2s, border-color .2s;
}
.stat-card:hover { transform: translateY(-2px); border-color: var(--border2); }
.stat-card.stat-accent { border-color: var(--neon); background: rgba(202,255,0,0.04); }
.stat-icon { font-size: 28px; }
.stat-label { font-size: 11px; color: var(--text2); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--text);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.stat-meta { font-size: 12px; color: var(--text2); margin-top: 4px; font-family: 'DM Mono', monospace; }

/* ── CHARTS ROW ── */
.charts-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.chart-card canvas { width: 100% !important; }

/* Stream bar breakdown */
.streams-breakdown { display: flex; flex-direction: column; gap: 14px; }
.stream-bar-item {}
.stream-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 6px;
  font-family: 'DM Mono', monospace;
}
.stream-bar-track {
  background: var(--bg4);
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
}
.stream-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width .6s cubic-bezier(.4,0,.2,1);
}

/* ── BOTTOM ROW ── */
.bottom-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

/* Entries list */
.entries-list { display: flex; flex-direction: column; gap: 4px; }
.entry-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius);
  transition: background .15s;
}
.entry-item:hover { background: var(--bg3); }
.entry-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.entry-desc { font-size: 14px; font-weight: 600; color: var(--text); }
.entry-meta { font-size: 11px; color: var(--text2); margin-top: 2px; font-family: 'DM Mono', monospace; }
.entry-amount {
  margin-left: auto;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--neon);
  font-weight: 500;
  white-space: nowrap;
}

/* Goals list */
.goals-list { display: flex; flex-direction: column; gap: 16px; }
.goal-item {}
.goal-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.goal-icon { font-size: 24px; }
.goal-title { font-size: 14px; font-weight: 700; color: var(--text); }
.goal-meta { font-size: 11px; color: var(--text2); font-family: 'DM Mono', monospace; margin-top: 2px; }
.goal-pct {
  margin-left: auto;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--neon);
}
.goal-track {
  background: var(--bg4);
  border-radius: 6px;
  height: 8px;
  overflow: hidden;
}
.goal-track.big { height: 12px; margin: 8px 0; }
.goal-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon), #8AFF00);
  border-radius: 6px;
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.goal-fill.done { background: linear-gradient(90deg, var(--neon3), #00FF9D); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--neon);
  color: #000;
}
.btn-primary:hover { background: #B8E800; opacity: 1; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--text2); color: var(--text); opacity: 1; }
.btn-danger {
  background: rgba(255,107,107,0.15);
  color: var(--neon2);
  border: 1px solid rgba(255,107,107,0.3);
}
.btn-danger:hover { background: rgba(255,107,107,0.25); opacity: 1; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ── ALERTS ── */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}
.alert-success {
  background: rgba(202,255,0,0.1);
  border: 1px solid rgba(202,255,0,0.3);
  color: var(--neon);
}
.alert-error {
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.3);
  color: var(--neon2);
}

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(202,255,0,0.1);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg2); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.input-prefix { display: flex; align-items: center; }
.input-prefix .prefix {
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 12px 14px;
  color: var(--text2);
  font-family: 'DM Mono', monospace;
}
.input-prefix input {
  border-radius: 0 var(--radius) var(--radius) 0 !important;
}
.input-prefix.mini .prefix { padding: 8px 10px; font-size: 13px; }
.input-prefix.mini input { padding: 8px 12px !important; width: 120px; }

.color-input {
  width: 100% !important;
  height: 44px;
  padding: 4px 8px !important;
  cursor: pointer;
  border-radius: var(--radius) !important;
}
.checkbox-group { display: flex; align-items: center; }
.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text) !important;
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--neon);
}

/* ── FORM PAGES ── */
.form-page-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: start;
}
.form-card {}
.side-panel {}
.main-form {}

.stream-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0;
}
.stream-radio input { display: none; }
.stream-chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  color: var(--text2);
  user-select: none;
}
.stream-radio input:checked + .stream-chip {
  background: rgba(202,255,0,0.12);
  border-color: var(--chip-color, var(--neon));
  color: var(--chip-color, var(--neon));
}
.stream-chip:hover { border-color: var(--text2); color: var(--text); }

/* ── STREAMS PAGE ── */
.streams-page-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.streams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.stream-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.stream-card:hover { transform: translateY(-2px); border-color: var(--border2); }
.stream-card.inactive { opacity: 0.55; }
.stream-card-top {
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.stream-card-icon { font-size: 26px; }
.stream-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; flex: 1; }
.stream-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-active  { background: rgba(202,255,0,0.15); color: var(--neon); }
.badge-paused  { background: rgba(255,255,255,0.07); color: var(--text3); }
.stream-desc { font-size: 13px; color: var(--text2); padding: 8px 20px 0; }
.stream-stats-row {
  display: flex;
  gap: 24px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  margin-top: 12px;
}
.ss { display: flex; flex-direction: column; gap: 2px; }
.ss-val { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text); }
.ss-label { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; }
.stream-actions {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
}

/* ── GOALS PAGE ── */
.goals-page-layout { display: flex; flex-direction: column; gap: 28px; }
.goals-full-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.goal-full-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .2s;
}
.goal-full-card:hover { transform: translateY(-2px); }
.goal-full-card.status-completed { border-color: rgba(107,255,184,0.3); opacity: 0.8; }
.goal-full-card.status-paused { opacity: 0.6; }
.goal-fc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.goal-fc-icon { font-size: 32px; }
.goal-fc-title { font-size: 16px; font-weight: 700; color: var(--text); }
.goal-fc-meta { font-size: 12px; color: var(--text2); font-family: 'DM Mono', monospace; margin-top: 3px; }
.goal-fc-pct {
  margin-left: auto;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--neon);
  line-height: 1;
}
.goal-fc-pct.completed { color: var(--neon3); }
.goal-fc-amounts {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 2px;
}
.goal-fc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.inline-update-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.inline-update-form select {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  outline: none;
  flex: 1;
}

/* ── AUTH PAGE ── */
body.auth-page {
  background: var(--bg);
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}
.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

/* Hero panel */
.auth-hero {
  background: linear-gradient(135deg, #0D1A00 0%, #0A0A0A 50%, #001A0D 100%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}
.hero-content { position: relative; }
.hero-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--neon);
  margin-bottom: 48px;
}
.hero-title {
  font-size: clamp(60px, 7vw, 90px);
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 24px;
}
.accent-text { color: var(--neon); }
.hero-sub {
  font-size: 15px;
  color: var(--text2);
  max-width: 340px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.hs { display: flex; flex-direction: column; gap: 4px; }
.hs-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--neon);
  line-height: 1;
}
.hs-label { font-size: 12px; color: var(--text2); text-transform: uppercase; letter-spacing: 0.08em; }

/* Ticker */
.hero-ticker {
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(202,255,0,0.15);
  padding-top: 16px;
}
.hero-ticker span {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(202,255,0,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Auth form panel */
.auth-form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
}
.tab-switcher {
  display: flex;
  gap: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 32px;
  width: fit-content;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  transition: all .2s;
  text-decoration: none;
}
.tab-btn.active {
  background: var(--neon);
  color: #000;
}

.auth-form .form-row { grid-template-columns: 1fr 1fr; }
.auth-hint {
  text-align: center;
  font-size: 12px;
  color: var(--text3);
  margin-top: 16px;
  font-family: 'DM Mono', monospace;
}

/* ── EMPTY STATES ── */
.empty-msg { font-size: 13px; color: var(--text2); padding: 8px 4px; }
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px;
  background: var(--bg2);
  border: 1px dashed var(--border2);
  border-radius: var(--radius-lg);
  color: var(--text2);
  font-size: 14px;
  grid-column: 1 / -1;
}
.empty-icon { font-size: 40px; }

/* ── MOBILE TOPBAR ── */
.mobile-topbar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 200;
}
.logo-text-sm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--neon);
  letter-spacing: 0.08em;
}
.menu-toggle {
  background: none; border: none;
  color: var(--text); font-size: 20px;
  cursor: pointer;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .charts-row { grid-template-columns: 1fr; }
  .bottom-row  { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .form-page-layout { grid-template-columns: 1fr; }
  .auth-container { grid-template-columns: 1fr; }
  .auth-hero { display: none; }
  .auth-form-panel { padding: 40px 32px; }
}

@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); transition: transform .3s; }
  .sidebar.open { transform: translateX(0); }
  .mobile-topbar { display: flex; }
  .main-content {
    margin-left: 0;
    padding: 80px 20px 32px;
    max-width: 100vw;
  }
  .page-header { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .goals-full-list { grid-template-columns: 1fr; }
  .streams-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATION ── */
.main-content > * {
  animation: fadeUp .35s ease both;
}
.main-content > *:nth-child(1) { animation-delay: .05s; }
.main-content > *:nth-child(2) { animation-delay: .10s; }
.main-content > *:nth-child(3) { animation-delay: .15s; }
.main-content > *:nth-child(4) { animation-delay: .20s; }
.main-content > *:nth-child(5) { animation-delay: .25s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ============================================
   HUSTLEDESK — MONETIZATION STYLES
   Append this to the END of assets/css/style.css
============================================ */

/* ── PLAN BANNER ── */
.plan-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    border-radius: var(--radius);
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.free-banner {
    background: rgba(255,184,107,0.08);
    border: 1px solid rgba(255,184,107,0.25);
}
.pro-banner {
    background: rgba(202,255,0,0.06);
    border: 1px solid rgba(202,255,0,0.2);
}
.plan-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.plan-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 100px;
    font-family: 'DM Mono', monospace;
}
.free-tag { background: rgba(255,184,107,0.2); color: #FFB86B; }
.pro-tag  { background: rgba(202,255,0,0.2);   color: var(--neon); }
.plan-banner-text { font-size: 13px; color: var(--text2); }
.btn-upgrade {
    background: var(--neon4);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 8px 20px;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: all .2s;
}
.btn-upgrade:hover { background: #E5A050; opacity: 1; }

/* ── PRICING CARDS ── */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin-bottom: 32px;
}
.pricing-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: transform .2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-pro {
    border-color: var(--neon);
    background: rgba(202,255,0,0.03);
}
.pricing-popular {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--neon);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
    font-family: 'DM Mono', monospace;
}
.pricing-header { margin-bottom: 24px; }
.pricing-badge { margin-bottom: 12px; display: inline-block; }
.pricing-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--text);
    line-height: 1;
}
.pricing-price span { font-size: 18px; color: var(--text2); }
.pricing-desc { font-size: 13px; color: var(--text2); margin-top: 6px; }
.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pricing-features li { font-size: 14px; }
.feat-yes { color: var(--text); }
.feat-no  { color: var(--text3); text-decoration: line-through; }

/* Why Pro grid */
.why-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
.why-item { display: flex; flex-direction: column; gap: 8px; }
.why-icon { font-size: 28px; }
.why-title { font-size: 15px; font-weight: 700; color: var(--text); }
.why-desc  { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* ── AFFILIATE PAGE ── */
.affiliate-section { margin-bottom: 36px; }
.affiliate-cat-title {
    font-size: 20px;
    color: var(--text2);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}
.affiliate-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text);
    transition: all .2s;
}
.affiliate-card:hover {
    border-color: var(--border2);
    transform: translateY(-2px);
    opacity: 1;
}
.aff-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.aff-info { flex: 1; min-width: 0; }
.aff-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.aff-desc { font-size: 12px; color: var(--text2); line-height: 1.4; }
.aff-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.05em;
}
.aff-arrow { color: var(--text3); font-size: 16px; flex-shrink: 0; }

/* ── ADSENSE BANNER ── */
.adsense-banner {
    width: 100%;
    min-height: 90px;
    background: var(--bg3);
    border: 1px dashed var(--border2);
    border-radius: var(--radius);
    margin-bottom: 24px;
    overflow: hidden;
}

/* ── LIMIT WARNING MODAL ── */
.limit-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    animation: fadeIn .2s ease;
}
.limit-modal {
    background: var(--bg2);
    border: 1px solid var(--neon);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    animation: scaleIn .2s ease;
}
.limit-modal-icon { font-size: 48px; margin-bottom: 16px; }
.limit-modal h2 { font-size: 28px; margin-bottom: 12px; }
.limit-modal p { font-size: 14px; color: var(--text2); margin-bottom: 28px; line-height: 1.6; }
.limit-modal-buttons { display: flex; gap: 12px; justify-content: center; }

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .plan-banner { flex-direction: column; align-items: flex-start; }
    .affiliate-grid { grid-template-columns: 1fr; }
}
