@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #0a0a0a;
  --black2: #0f0f0f;
  --black3: #141414;
  --black4: #1a1a1a;
  --black5: #222222;
  --gold: #d4a843;
  --gold2: #e8c068;
  --gold3: #f5d98a;
  --gold-dim: rgba(212,168,67,.1);
  --gold-border: rgba(212,168,67,.22);
  --white: #f5f5f5;
  --white2: #c0c0c0;
  --white3: #666666;
  --green: #00e5a0;
  --green-dim: rgba(0,229,160,.1);
  --green-border: rgba(0,229,160,.25);
  --red: #ff4757;
  --red-dim: rgba(255,71,87,.1);
  --red-border: rgba(255,71,87,.25);
  --blue: #4d9fff;
  --blue-dim: rgba(77,159,255,.1);
  --border: rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.12);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --nav-h: 70px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--black); color: var(--white); font-family: Inter, system-ui, sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
h1,h2,h3,h4,h5 { font-family: Inter, sans-serif; font-weight: 800; line-height: 1.15; color: var(--white); }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.page-content { padding-top: var(--nav-h); }
.section-pad { padding: 4rem 0; }
@media(min-width:768px) { .section-pad { padding: 5.5rem 0; } }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media(min-width:640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px) { .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between; padding: 0 1.25rem;
  background: rgba(10,10,10,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; display: block; }
.nav-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 2px; color: var(--white); }
.nav-brand span { color: var(--gold); }
.nav-menu { display: none; align-items: center; gap: .25rem; }
.nav-menu a { padding: .5rem .875rem; border-radius: 8px; font-size: .875rem; font-weight: 500; color: var(--white2); transition: all .2s; text-decoration: none; }
.nav-menu a:hover, .nav-menu a.active { color: var(--white); background: rgba(255,255,255,.06); }
.nav-right { display: flex; align-items: center; gap: .5rem; }
.nav-badge { display: none; align-items: center; gap: .4rem; background: var(--green-dim); border: 1px solid var(--green-border); color: var(--green); font-size: .75rem; font-weight: 700; padding: .35rem .75rem; border-radius: 50px; white-space: nowrap; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
.nav-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; flex-shrink: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: .4rem; background: var(--gold); color: var(--black); font-size: .875rem; font-weight: 700; padding: .55rem 1rem; border-radius: 8px; transition: all .2s; border: none; cursor: pointer; white-space: nowrap; text-decoration: none; }
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }
.nav-login-btn { display: inline-flex; align-items: center; gap: .4rem; background: transparent; color: var(--white2); font-size: .875rem; font-weight: 600; padding: .5rem .875rem; border-radius: 8px; border: 1px solid var(--border2); transition: all .2s; cursor: pointer; white-space: nowrap; text-decoration: none; }
.nav-login-btn:hover { color: var(--white); border-color: var(--gold-border); background: var(--gold-dim); }
.nav-hamburger { display: flex; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; flex-shrink: 0; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white2); border-radius: 2px; transition: all .3s; }
@media(min-width:1024px) { .nav-menu { display: flex; } .nav-badge { display: inline-flex; } .nav-hamburger { display: none; } }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999; background: rgba(10,10,10,.98); border-bottom: 1px solid var(--border); padding: 1rem 1.25rem 1.5rem; flex-direction: column; gap: .25rem; max-height: calc(100vh - var(--nav-h)); overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: .875rem 1rem; border-radius: 8px; font-size: 1rem; font-weight: 500; color: var(--white2); transition: all .2s; border-bottom: 1px solid var(--border); text-decoration: none; display: flex; align-items: center; gap: .6rem; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); background: rgba(255,255,255,.05); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: .5rem; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .65rem 1.25rem; border-radius: 10px; font-size: .9rem; font-weight: 600; border: none; transition: all .2s; white-space: nowrap; cursor: pointer; line-height: 1; min-height: 44px; text-decoration: none; }
.btn:disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }
.btn-gold { background: var(--gold) !important; color: var(--black) !important; }
.btn-gold:hover:not(:disabled) { background: var(--gold2) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,168,67,.3); }
.btn-green { background: var(--green) !important; color: var(--black) !important; }
.btn-green:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.btn-outline { background: transparent !important; color: var(--gold) !important; border: 1px solid var(--gold-border) !important; }
.btn-outline:hover:not(:disabled) { background: var(--gold-dim) !important; }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--white2); border: 1px solid var(--border); }
.btn-ghost:hover:not(:disabled) { background: rgba(255,255,255,.1); color: var(--white); }
.btn-tg { background: #27a7e7; color: #fff; border: none; }
.btn-tg:hover:not(:disabled) { background: #2db5f5; transform: translateY(-1px); }
.btn-danger { background: var(--red) !important; color: #fff !important; }
.btn-danger:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.btn-sm { padding: .4rem .875rem; font-size: .8125rem; min-height: 36px; }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; min-height: 52px; }
.btn-full { width: 100%; }

/* CARDS */
.card { background: var(--black3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: all .25s; }
.card-hover:hover { border-color: var(--gold-border); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.card-icon { width: 48px; height: 48px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.card-icon.green { background: var(--green-dim); border-color: var(--green-border); }
.card-icon.blue { background: var(--blue-dim); border-color: rgba(77,159,255,.4); }

/* BADGES */
.badge { display: inline-flex; align-items: center; gap: .4rem; border-radius: 50px; padding: .3rem .85rem; font-size: .75rem; font-weight: 600; line-height: 1; }
.badge-gold { background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold2); }
.badge-green, .badge-free { background: var(--green-dim); border: 1px solid var(--green-border); color: var(--green); }
.badge-vip { background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold); }
.badge-win { background: var(--green-dim); border: 1px solid var(--green-border); color: var(--green); }
.badge-loss { background: var(--red-dim); border: 1px solid var(--red-border); color: var(--red); }
.badge-buy { background: var(--green-dim); border: 1px solid var(--green-border); color: var(--green); }
.badge-sell { background: var(--red-dim); border: 1px solid var(--red-border); color: var(--red); }
.badge-pending { background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold2); }

/* SECTION HEADERS */
.section-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.1; }
.section-sub { font-size: 1rem; color: var(--white2); line-height: 1.7; max-width: 560px; }

/* TICKER */
.ticker-bar { background: var(--black2); border-bottom: 1px solid var(--border); padding: .65rem 0; overflow: hidden; }
.ticker-track { display: flex; gap: 3rem; animation: ticker 40s linear infinite; width: max-content; }
.ticker-item { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--white2); white-space: nowrap; font-weight: 500; }
.ticker-item b { font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.ticker-up { color: var(--green); }
.ticker-down { color: var(--red); }
.ticker-gold { color: var(--gold2); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* FORMS */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--white3); margin-bottom: .4rem; }
.form-input, .form-select, .form-textarea { width: 100%; background: var(--black4); border: 1px solid var(--border2); border-radius: 10px; padding: .7rem 1rem; color: var(--white); font-size: 1rem; transition: all .2s; font-family: inherit; min-height: 44px; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.25rem; background-color: var(--black4); }
.form-textarea { min-height: 100px; resize: vertical; }

/* TABLES */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.table { width: 100%; border-collapse: collapse; min-width: 560px; }
.table th { background: var(--black4); padding: .875rem 1rem; text-align: left; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--white3); border-bottom: 1px solid var(--border); white-space: nowrap; }
.table td { padding: .875rem 1rem; font-size: .875rem; color: var(--white2); border-bottom: 1px solid var(--border); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: rgba(255,255,255,.02); }

/* TABS */
.tabs { display: flex; gap: 3px; background: var(--black4); border: 1px solid var(--border); border-radius: 10px; padding: 3px; flex-wrap: wrap; }
.tab-btn { padding: .5rem 1rem; border-radius: 8px; background: none; border: none; color: var(--white2); font-size: .8125rem; font-weight: 600; cursor: pointer; transition: all .2s; white-space: nowrap; min-height: 36px; }
.tab-btn.active { background: var(--gold); color: var(--black); }
.tab-btn:hover:not(.active) { color: var(--white); background: rgba(255,255,255,.06); }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.85); backdrop-filter: blur(12px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--black3); border: 1px solid var(--gold-border); border-radius: var(--radius-xl); padding: 1.75rem; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; transform: translateY(20px); transition: transform .3s; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.modal-close { width: 32px; height: 32px; background: var(--black5); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white2); font-size: 1.1rem; cursor: pointer; transition: all .2s; flex-shrink: 0; line-height: 1; }
.modal-close:hover { background: var(--black4); color: var(--white); }

/* TOAST */
.toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translate(-50%) translateY(100px); background: var(--black3); border: 1px solid var(--gold-border); border-radius: 12px; padding: .875rem 1.5rem; font-size: .875rem; font-weight: 500; display: flex; align-items: center; gap: .6rem; z-index: 9999; opacity: 0; transition: all .35s; box-shadow: 0 8px 32px rgba(0,0,0,.5); white-space: nowrap; }
.toast.show { opacity: 1; transform: translate(-50%) translateY(0); }
.toast.success { border-color: var(--green-border); }
.toast.error { border-color: var(--red-border); }

/* PROGRESS */
.progress-bar { height: 8px; background: var(--black5); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold2)); border-radius: 4px; transition: width .5s ease; }

/* FOOTER */
.footer { background: var(--black2); border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media(min-width:600px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
@media(min-width:900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 2px; margin-bottom: .75rem; }
.footer-desc { font-size: .875rem; color: var(--white3); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: .8125rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--white); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: var(--white3); transition: color .2s; text-decoration: none; }
.footer-links a:hover { color: var(--gold2); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .75rem; }
@media(min-width:700px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-copy { font-size: .8rem; color: var(--white3); }
.footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-links a { font-size: .8rem; color: var(--white3); transition: color .2s; text-decoration: none; }
.footer-legal-links a:hover { color: var(--gold); }
.risk-bar { background: var(--black2); border-top: 1px solid var(--border); padding: 1.25rem 0; }
.risk-text { font-size: .73rem; color: var(--white3); line-height: 1.7; text-align: center; }

/* MISC */
.grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%); }
.accent-line { display: flex; align-items: center; gap: .75rem; margin: 1.25rem 0; }
.accent-line::before, .accent-line::after { content: ''; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold-border), transparent); }
.al-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.rounded { border-radius: var(--radius); }
.w-full { width: 100%; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-gold { color: var(--gold); }
.text-gold2 { color: var(--gold2); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-dim { color: var(--white2); }
.text-muted { color: var(--white3); }
.font-bebas { font-family: 'Bebas Neue', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

@keyframes fadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.fade-in { animation: fadeIn .5s ease forwards; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* SIGNAL/JOURNAL CARDS */
.signal-card, .journal-entry { background: var(--black3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; border-left: 4px solid transparent; transition: all .2s; }
.signal-card:hover, .journal-entry:hover { border-color: var(--border2); }
.signal-card.win, .journal-entry.win { border-left-color: var(--green); }
.signal-card.loss, .journal-entry.loss { border-left-color: var(--red); }
.signal-card.pending { border-left-color: var(--gold); }

/* PLAN CARDS */
.plan-card { background: var(--black3); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; position: relative; transition: all .3s; }
.plan-card.featured { border-color: var(--gold-border); background: linear-gradient(135deg, rgba(212,168,67,.06), var(--black3)); }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.4); }
.plan-price .amount { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; letter-spacing: 1px; }
.plan-features { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .75rem; }
.plan-features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; color: var(--white2); }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: .1rem; }

/* AFFILIATE */
.aff-tier { background: var(--black3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: all .2s; }
.aff-tier:hover { border-color: var(--gold-border); }
.aff-commission { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 1px; color: var(--gold2); line-height: 1; }
.aff-step { display: flex; gap: 1rem; align-items: flex-start; }
.aff-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800; color: var(--gold); flex-shrink: 0; }

/* LESSON CARDS */
.lesson-card { background: var(--black3); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .2s; }
.lesson-card:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.lesson-thumb { height: 130px; background: var(--black4); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.lesson-body { padding: 1.25rem; }

/* CALENDAR */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day { aspect-ratio: 1; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: .75rem; font-weight: 600; cursor: pointer; transition: all .15s; background: var(--black4); border: 1px solid transparent; }
.cal-day:hover { background: var(--black5); }
.cal-day.today { background: var(--gold); color: var(--black); }
.cal-day.profit { background: rgba(0,229,160,.15); border-color: var(--green-border); }
.cal-day.loss { background: rgba(255,71,87,.12); border-color: var(--red-border); }
.cal-day.empty { background: transparent; cursor: default; opacity: .2; }
.cal-amount { font-size: .55rem; color: var(--gold2); font-weight: 700; margin-top: 1px; line-height: 1; }
.cal-day.profit .cal-amount { color: var(--green); }
.cal-day.loss .cal-amount { color: var(--red); }

/* ADMIN */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--black2); border-right: 1px solid var(--border); padding: 1.5rem; display: flex; flex-direction: column; gap: .25rem; }
.admin-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 2px; color: var(--white); padding: .5rem 1rem 1.25rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.admin-logo span { color: var(--gold); }
.admin-nav-link { display: flex; align-items: center; gap: .75rem; padding: .875rem 1rem; border-radius: 10px; color: var(--white2); font-size: .875rem; font-weight: 500; transition: all .2s; cursor: pointer; border: none; background: none; width: 100%; text-align: left; text-decoration: none; }
.admin-nav-link:hover, .admin-nav-link.active { background: var(--gold-dim); color: var(--gold); }
.admin-content { padding: 2rem; overflow-y: auto; background: var(--black); }
.admin-section { display: none; }
.admin-section.active { display: block; }
.stat-card { background: var(--black3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 1px; color: var(--gold2); line-height: 1; margin-bottom: .25rem; }
.stat-label { font-size: .8rem; color: var(--white3); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
@media(max-width:900px) { .admin-layout { grid-template-columns: 1fr; } .admin-sidebar { display: none; } }

/* LOGIN */
.login-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,168,67,.08), transparent); }
.login-box { background: var(--black3); border: 1px solid var(--gold-border); border-radius: var(--radius-xl); padding: 2.5rem; width: 100%; max-width: 420px; }
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-logo h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 3px; }
.login-logo span { color: var(--gold); }
.login-tabs { display: flex; background: var(--black4); border-radius: 10px; padding: 3px; margin-bottom: 1.5rem; }
.login-tab { flex: 1; padding: .6rem; text-align: center; border-radius: 8px; font-size: .875rem; font-weight: 600; color: var(--white3); cursor: pointer; transition: all .2s; }
.login-tab.active { background: var(--gold); color: var(--black); }
