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

/* ===== SPARKLE KEYFRAME ===== */
@keyframes sparkle {
  0%,100% { opacity:0; transform:scale(0) rotate(0deg); }
  50% { opacity:1; transform:scale(1) rotate(180deg); }
}
@keyframes float-particle {
  0% { transform:translateY(0) translateX(0); opacity:1; }
  100% { transform:translateY(-80px) translateX(var(--tx,20px)); opacity:0; }
}
@keyframes shimmer-btn {
  0% { left:-100%; }
  100% { left:200%; }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(249,115,22,0.4), 0 4px 15px rgba(249,115,22,0.3); }
  50% { box-shadow: 0 0 40px rgba(249,115,22,0.7), 0 8px 30px rgba(249,115,22,0.5); }
}
@keyframes star-twinkle {
  0%,100% { opacity:0.2; transform:scale(0.8); }
  50% { opacity:1; transform:scale(1.2); }
}

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

:root {
  --bg-primary: #040914; /* Deep dark blue for page bg */
  --bg-secondary: #0c121e;
  --bg-card: #0c1524;
  --bg-card-hover: #131f33;
  --bg-input: #101827;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-glow: rgba(249, 115, 22, 0.3);
  --navy: #1e2d4d;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-accent: rgba(249, 115, 22, 0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 4px 30px rgba(249, 115, 22, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-1: linear-gradient(135deg, #f97316, #ea580c);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* =============== CORE & UTILS =============== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.page-content { padding-top: 64px; min-height: 100vh; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-3 { margin-top: 1rem; }
.mt-auto { margin-top: auto; }
.hidden { visibility: hidden; }

/* Colors */
.highlight-blue { color: #3b82f6; }
.highlight-orange { color: #f97316; }
.text-purple { color: #a855f7; }
.text-blue { color: #3b82f6; }
.text-green { color: #10b981; }
.text-orange { color: #f97316; }

.bg-purple { background: rgba(168, 85, 247, 0.15); color: #a855f7; }
.bg-blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.bg-green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.bg-orange { background: rgba(249, 115, 22, 0.15); color: #f97316; }

.border-purple { border-color: rgba(168, 85, 247, 0.3) !important; }
.border-blue { border-color: rgba(59, 130, 246, 0.3) !important; }
.border-green { border-color: rgba(16, 185, 129, 0.3) !important; }

/* Icons */
.icon-blue { color: #3b82f6; background: rgba(59,130,246,0.1); }
.icon-cyan { color: #06b6d4; background: rgba(6,182,212,0.1); }
.icon-purple { color: #a855f7; background: rgba(168,85,247,0.1); }
.icon-green { color: #10b981; background: rgba(16,185,129,0.1); }
.icon-teal { color: #14b8a6; background: rgba(20,184,166,0.1); }
.icon-orange { color: #f97316; background: rgba(249,115,22,0.1); }

/* =============== NAVIGATION =============== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(4, 9, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; gap: 0.5rem;
  color: white; text-decoration: none; letter-spacing: -0.5px;
}
.nav-brand-icon {
  width: 28px; height: 28px;
  background: white; border-radius: 4px;
  display: inline-block; position: relative;
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: white; }

.nav-right { display: flex; gap: 1rem; align-items: center; }
.nav-right .btn-outline { border: 1px solid var(--border); color: white; }
.nav-right .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* =============== BUTTONS =============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.65rem 1.5rem; border-radius: 50px;
  font-family: inherit; font-size: 0.9rem; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden; letter-spacing: 0.3px;
}
.btn::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer-btn 2.5s infinite;
  pointer-events: none;
}
.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #f97316 100%);
  background-size: 200% auto;
  color: white;
  box-shadow: 0 4px 15px rgba(249,115,22,0.4), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(249,115,22,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-glow { animation: glow-pulse 2s ease-in-out infinite; }
.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 15px rgba(0,0,0,0.2);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-outline {
  background: transparent; border: 1.5px solid rgba(249,115,22,0.6); color: #f97316;
  box-shadow: 0 0 15px rgba(249,115,22,0.1), inset 0 0 15px rgba(249,115,22,0.05);
}
.btn-outline:hover {
  background: rgba(249,115,22,0.1);
  border-color: #f97316;
  box-shadow: 0 0 25px rgba(249,115,22,0.3);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.4rem 1.2rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* =============== SECTION TITLE =============== */
.section-title { font-size: 2.25rem; font-weight: 800; margin-bottom: 2.5rem; line-height: 1.3; }
.section-tag { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; }
.glow-tag { background: rgba(249, 115, 22, 0.1); color: var(--accent); border: 1px solid rgba(249, 115, 22, 0.2); }

/* =============== HERO SECTION =============== */
.hero-section {
  padding: 5rem 0 3rem;
  background: radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.08), transparent 40%),
              radial-gradient(ellipse at 20% 80%, rgba(249, 115, 22, 0.05), transparent 40%);
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }

.hero-title { font-size: 3.5rem; font-weight: 900; line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-secondary); }
.badge-icon { color: var(--text-muted); }

.hero-actions { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 1rem; color: var(--text-muted); font-size: 0.85rem; }
.avatars { display: flex; }
.avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg-primary); margin-left: -10px; }
.avatars img:first-child { margin-left: 0; }

/* Dashboard Mockup */
.mock-dashboard {
  background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.mock-header { padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.mock-logo { font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; }
.mock-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mock-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 1.25rem; }

.score-ring { position: relative; width: 120px; height: 120px; margin: 0 auto; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring circle { fill: none; stroke-width: 6; }
.score-ring .bg { stroke: rgba(255,255,255,0.1); }
.score-ring .progress { stroke: #3b82f6; stroke-dasharray: 264; stroke-dashoffset: 80; stroke-linecap: round; }
.score-value { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-num { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.score-total { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }
.score-status { font-size: 0.75rem; color: var(--success); margin-top: 4px; }

.rank-item { border-bottom: 1px solid var(--border); padding-bottom: 0.75rem; }
.rank-item:last-child { border-bottom: none; padding-bottom: 0; }
.rank-label { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.25rem; }
.rank-value { font-size: 1.25rem; font-weight: 700; display: flex; align-items: baseline; gap: 0.5rem; }
.trend-up { font-size: 0.75rem; color: var(--success); font-weight: 600; }

.mock-card-title { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 1rem; }
.progress-item { margin-bottom: 0.75rem; }
.progress-item:last-child { margin-bottom: 0; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 0.35rem; color: #cbd5e1; }
.progress-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 3px; }

/* =============== STATS SECTION =============== */
.stats-section { padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-secondary); }
.stats-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.stat-item { display: flex; align-items: center; gap: 1rem; }
.stat-icon { font-size: 1.5rem; width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.stat-num { font-size: 1.5rem; font-weight: 800; line-height: 1.2; }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* =============== FEATURES =============== */
.features-section { padding: 6rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); text-align: center; }
.feature-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1.5rem; }
.feature-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* =============== SERIES CARDS =============== */
.series-section { padding: 4rem 0 6rem; }
.series-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.series-plan-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(255,255,255,0.02));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; display: flex; flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}
.series-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.plan-badge { font-size: 0.7rem; font-weight: 700; padding: 0.35rem 0.75rem; border-radius: 4px; display: inline-block; margin-bottom: 1.25rem; letter-spacing: 0.5px; }
.plan-title { font-size: 1.2rem; font-weight: 800; line-height: 1.3; margin-bottom: 1.5rem; }
.plan-features { list-style: none; margin-bottom: 2rem; font-size: 0.9rem; color: var(--text-secondary); }
.plan-features li { margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.plan-features li::before { content: '•'; color: var(--text-muted); }
.plan-footer { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.plan-link { font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.plan-arrow { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; }

/* Sparkle Stars */
.sparkle-star {
  position: absolute; pointer-events: none;
  animation: star-twinkle var(--dur, 2s) ease-in-out infinite var(--delay, 0s);
  font-size: var(--size, 10px);
}
.hero-section { position: relative; overflow: hidden; }

/* =============== TESTIMONIALS =============== */
.testimonials-section { padding: 4rem 0; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.test-card { background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; }
.test-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; }
.test-author { font-size: 0.85rem; color: var(--text-muted); }

/* =============== NEWSLETTER =============== */
.newsletter-section { padding: 5rem 0; }
.nl-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 3rem; display: flex; justify-content: space-between; align-items: center; gap: 3rem; flex-wrap: wrap; }
.nl-flex { display: flex; align-items: center; gap: 1.5rem; flex: 1; min-width: 300px; }
.nl-icon { font-size: 2.5rem; background: rgba(255,255,255,0.05); width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: 16px; border: 1px solid var(--border); }
.nl-content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.nl-content p { color: var(--text-secondary); font-size: 0.95rem; }
.nl-form { flex: 1; min-width: 300px; background: rgba(0,0,0,0.2); border: 1px solid var(--border); border-radius: 50px; padding: 0.35rem; display: flex; }
.nl-input { flex: 1; background: transparent; border: none; padding: 0 1.5rem; color: white; outline: none; font-size: 0.95rem; }
.nl-btn { border-radius: 50px; padding: 0.75rem 2rem; }

/* =============== FOOTER =============== */
.site-footer { padding: 3rem 0 1.5rem; background: var(--bg-primary); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; max-width: 400px; }
.footer-title { font-weight: 700; font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; }

/* =============== ANIMATIONS =============== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
.animate-on-scroll { opacity:0; transform:translateY(30px); transition:all 0.7s ease; }
.animate-on-scroll.visible { opacity:1; transform:translateY(0); }
.animate-delay-1 { transition-delay:0.1s; }
.animate-delay-2 { transition-delay:0.2s; }
.animate-delay-3 { transition-delay:0.3s; }
.animate-delay-4 { transition-delay:0.4s; }

/* =============== HAMBURGER =============== */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; background:none; border:none; z-index:1010; }
.hamburger span { display:block; width:24px; height:2px; background:white; border-radius:2px; transition:all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display:none; position:fixed; top:64px; left:0; right:0;
  background:rgba(4,9,20,0.97); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border); padding:1.5rem;
  flex-direction:column; gap:0.5rem; z-index:999;
  animation:slideDown 0.3s ease;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
.mobile-menu.active { display:flex; }
.mobile-menu a {
  color:var(--text-secondary); text-decoration:none;
  padding:0.9rem 1rem; border-radius:12px; font-size:1rem; font-weight:500;
  transition:all 0.2s; border-bottom:1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom:none; }
.mobile-menu a:hover { color:white; background:rgba(249,115,22,0.1); }

/* =============== RESPONSIVE =============== */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-badges, .hero-actions, .hero-trust, .avatars { justify-content: center; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .section-title { font-size: 1.8rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .stats-container { gap: 1rem; justify-content: space-around; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { width: calc(50% - 1rem); justify-content: center; }
  .nl-box { padding: 1.5rem; flex-direction: column; text-align: center; gap: 1.5rem; }
  .nl-flex { flex-direction: column; align-items: center; }
  .nl-form { width: 100%; flex-direction: column; background: transparent; border: none; padding: 0; gap: 0.75rem; border-radius: 0; }
  .nl-input { background: var(--bg-input); border: 1px solid var(--border); border-radius: 50px !important; padding: 0.85rem 1.5rem; }
  .nl-btn { width: 100%; border-radius: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-section { padding: 3.5rem 0 2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .series-cards-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .mock-grid-2 { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .features-grid { grid-template-columns: 1fr; }
  .series-cards-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .stats-container { flex-direction: column; align-items: center; }
  .stat-item { width: 100%; }
}

/* Auth / Admin (Core overrides kept from old code) */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem; }
.form-input { width: 100%; padding: 0.75rem 1rem; background: var(--bg-input); color: white; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.form-input:focus { border-color: var(--accent); outline: none; }
.auth-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-primary); padding: 2rem; }
.auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; width: 100%; max-width: 420px; }
.auth-title { font-size: 1.75rem; font-weight: 800; text-align: center; margin-bottom: 0.5rem; }
.auth-subtitle { color: var(--text-secondary); text-align: center; margin-bottom: 2rem; }
.toast-container { position: fixed; top: 80px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem; }
.toast { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.5rem; animation: toastIn 0.3s ease; }
@keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
th { background: var(--bg-secondary); color: var(--text-secondary); }
