/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #08080c;
  color: #e2e2ea;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== ANIMATED BG ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(ellipse 70% 50% at -10% 20%, rgba(99,102,241,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 110% 80%, rgba(139,92,246,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ===== GLOW DOTS ===== */
.glow-dots {
  position: absolute; width: 100%; height: 100%; top: 0; left: 0;
  overflow: hidden; pointer-events: none; z-index: 0;
}
.glow-dot {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25;
  animation: float 25s ease-in-out infinite;
}
.glow-dot:nth-child(1) { width: 400px; height: 400px; background: #6366f1; top: -20%; left: -10%; animation-delay: 0s; }
.glow-dot:nth-child(2) { width: 300px; height: 300px; background: #a855f7; bottom: -10%; right: -5%; animation-delay: -10s; }
.glow-dot:nth-child(3) { width: 200px; height: 200px; background: #6366f1; top: 50%; left: 60%; animation-delay: -18s; opacity: 0.15; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: all 0.3s ease; border: none; text-decoration: none; gap: 8px;
}
.btn-primary {
  background: #6366f1; color: white;
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}
.btn-primary:hover { background: #5558e6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: rgba(255,255,255,0.05); color: #d4d4dc;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ===== ALERTS ===== */
.alert {
  padding: 14px 20px; border-radius: 10px; margin-bottom: 16px;
  font-weight: 500; font-size: 14px; animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.alert-success { background: rgba(52,211,153,0.1); color: #34d399; border: 1px solid rgba(52,211,153,0.2); }
.alert-error { background: rgba(248,113,113,0.1); color: #f87171; border: 1px solid rgba(248,113,113,0.2); }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 16px;
  letter-spacing: -0.5px; color: #f0f0f5;
}
.section-subtitle {
  text-align: center; font-size: 16px; color: rgba(255,255,255,0.45);
  max-width: 500px; margin: 0 auto 56px; line-height: 1.6;
}
.section-header { margin-bottom: 20px; }

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  border-radius: 50px; font-size: 13px; color: #a5b4fc;
  margin-bottom: 32px; font-weight: 500; letter-spacing: 0.2px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 60px); font-weight: 800; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -1.5px; color: #f0f0f5;
  position: relative; z-index: 1;
}
.gradient-text {
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.5);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.7;
  position: relative; z-index: 1;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.hero-trust {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin-top: 48px; font-size: 13px; color: rgba(255,255,255,0.3);
  position: relative; z-index: 1;
}

/* ===== TRUST BAR ===== */
.trust-bar { padding: 48px 0; text-align: center; }
.trust-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.2); margin-bottom: 20px; }
.trust-logos { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-logo {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px; transition: color 0.3s;
}
.trust-logo:hover { color: rgba(255,255,255,0.5); }

/* ===== PROBLEM / SOLUTION ===== */
.problem-section { padding: 80px 0; }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 800px; margin: 0 auto;
}
@media (max-width: 700px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  padding: 36px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02);
}
.problem-card.solution {
  border-color: rgba(99,102,241,0.2); background: rgba(99,102,241,0.04);
}
.problem-card h3 { font-size: 18px; margin-bottom: 20px; font-weight: 600; }
.problem-card ul { list-style: none; }
.problem-card li {
  padding: 8px 0; font-size: 15px; color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.problem-card li:last-child { border-bottom: none; }
.problem-card.solution li { color: rgba(255,255,255,0.8); }

/* ===== FEATURES ===== */
.features { padding: 100px 0; position: relative; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
}
.feature-card {
  padding: 32px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.015);
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(99,102,241,0.15);
  background: rgba(99,102,241,0.03);
  transform: translateY(-4px);
}
.feature-icon { font-size: 28px; margin-bottom: 16px; display: inline-block; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; color: #e8e8ef; }
.feature-card p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }

/* ===== DEMO ===== */
.demo-section { padding: 100px 0; background: rgba(255,255,255,0.015); }
.demo-wrapper { display: flex; justify-content: center; gap: 48px; align-items: center; flex-wrap: wrap; }
.demo-phone {
  width: 310px;
  background: linear-gradient(145deg, #13131f, #18182a);
  border-radius: 40px; padding: 14px;
  border: 1.5px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.demo-notch { width: 110px; height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; margin: 12px auto 18px; }
.demo-content { padding: 20px; text-align: center; }
.demo-avatar { margin-bottom: 14px; }
.avatar-placeholder {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.demo-name { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.demo-bio { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.demo-links { display: flex; flex-direction: column; gap: 10px; }
.demo-link {
  padding: 13px 16px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 10px;
  font-size: 13px; font-weight: 500; text-align: left;
  transition: all 0.3s;
}
.demo-link:hover { background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.15); }
.demo-features-list { max-width: 360px; }
.demo-features-list h3 { font-size: 22px; margin-bottom: 16px; color: #e8e8ef; }
.demo-features-list ul { list-style: none; }
.demo-features-list li {
  padding: 10px 0; font-size: 15px; color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.demo-features-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.35); }
.demo-cta { text-align: center; margin-top: 48px; }

/* ===== PRICING ===== */
.pricing-section { padding: 100px 0; }
.pricing-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px; max-width: 720px; margin: 0 auto;
}
.pricing-card {
  padding: 36px 32px; border-radius: 20px;
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.06);
  position: relative; transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  background: rgba(99,102,241,0.04); border-color: rgba(99,102,241,0.15);
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 18px; background: #6366f1; border-radius: 50px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}
.card-badge {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.card-badge.premium-label { color: #a5b4fc; }
.pricing-card h3 { font-size: 22px; margin-bottom: 8px; }
.price-wrapper { margin-bottom: 28px; }
.price { font-size: 48px; font-weight: 800; letter-spacing: -2px; color: #f0f0f5; }
.price-period { display: block; font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 4px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { padding: 10px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: rgba(255,255,255,0.75); }
.pricing-features .check::before { content: '✓ '; color: #34d399; font-weight: 700; }
.pricing-features .cross { color: rgba(255,255,255,0.25); }
.pricing-features .cross::before { content: '✗ '; color: rgba(255,255,255,0.2); }
.money-back { text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.pricing-note {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin-top: 40px; font-size: 13px; color: rgba(255,255,255,0.25);
}

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0;
}
.faq-toggle { display: none; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-size: 16px; font-weight: 500;
  color: #d4d4dc; transition: color 0.3s; user-select: none;
}
.faq-question:hover { color: #a5b4fc; }
.faq-arrow { font-size: 10px; transition: transform 0.3s; color: rgba(255,255,255,0.3); }
.faq-toggle:checked + .faq-question .faq-arrow { transform: rotate(-180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; padding: 0;
  transition: all 0.3s ease; color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7;
}
.faq-toggle:checked ~ .faq-answer {
  max-height: 300px; padding: 0 0 20px;
}

/* ===== CTA FINAL ===== */
.cta-final { padding: 80px 0; }
.cta-box {
  text-align: center; padding: 56px 40px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(99,102,241,0.06), rgba(139,92,246,0.03));
  border: 1px solid rgba(99,102,241,0.12);
}
.cta-box h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; color: #f0f0f5; }
.cta-box p { color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.cta-small { font-size: 13px; color: rgba(255,255,255,0.25); margin-top: 20px !important; }

/* ===== AUTH ===== */
.auth-page {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
}
.auth-card {
  width: 100%; max-width: 400px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 40px 36px;
}
.auth-card h1 { font-size: 24px; margin-bottom: 28px; }
.auth-link { text-align: center; margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.35); }
.auth-link a { color: #818cf8; transition: color 0.3s; }
.auth-link a:hover { color: #a78bfa; }

/* ===== FORM ===== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.form-control {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; color: white; font-size: 15px; font-family: inherit;
  transition: border-color 0.3s;
}
.form-control:focus { outline: none; border-color: rgba(99,102,241,0.4); background: rgba(255,255,255,0.06); }
.form-control::placeholder { color: rgba(255,255,255,0.15); }
.color-input { height: 48px; padding: 4px; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 60px; }

/* ===== PASSWORD TOGGLE ===== */
.password-wrapper { position: relative; display: flex; align-items: center; }
.password-wrapper .form-control { padding-right: 48px; }
.pw-toggle {
  position: absolute; right: 8px; background: none; border: none;
  cursor: pointer; font-size: 18px; padding: 8px; opacity: 0.35;
  transition: opacity 0.2s; line-height: 1;
}
.pw-toggle:hover { opacity: 0.7; }

/* ===== ADMIN ===== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px; background: rgba(255,255,255,0.015);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 28px 20px; flex-shrink: 0;
}
.sidebar-header h2 {
  font-size: 20px; margin-bottom: 28px;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sidebar-user { margin-bottom: 28px; padding: 14px; background: rgba(255,255,255,0.02); border-radius: 10px; }
.user-email { display: block; font-size: 13px; color: rgba(255,255,255,0.4); word-break: break-all; }
.user-plan { display: block; font-size: 13px; margin-top: 4px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.nav-item {
  padding: 11px 14px; border-radius: 10px; font-size: 14px; font-weight: 500;
  transition: all 0.3s; color: rgba(255,255,255,0.6);
}
.nav-item:hover, .nav-item.active { background: rgba(99,102,241,0.08); color: #a5b4fc; }
.nav-item.logout { margin-top: 24px; color: rgba(255,255,255,0.25); }
.nav-item.logout:hover { color: #f87171; background: rgba(248,113,113,0.08); }
.admin-main { flex: 1; padding: 36px; max-width: 100%; overflow-x: hidden; }
.page-tabs h2 { margin-bottom: 16px; font-size: 20px; }
.tab-bar { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab {
  padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.tab:hover, .tab.active { background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.2); }
.tab.active { color: #a5b4fc; }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) {
  .admin-grid { grid-template-columns: 1fr; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
}
.admin-card {
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; padding: 24px;
}
.admin-card h3 { font-size: 16px; margin-bottom: 20px; }
.admin-card h4 { font-size: 13px; margin-bottom: 12px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; }
.links-list { margin-bottom: 24px; }
.link-item {
  display: flex; gap: 8px; align-items: center; margin-bottom: 8px;
  padding: 10px; background: rgba(255,255,255,0.02); border-radius: 8px;
}
.link-drag { cursor: grab; color: rgba(255,255,255,0.15); font-size: 16px; user-select: none; }
.link-title-input, .link-url-input {
  flex: 1; padding: 10px 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px; color: white; font-size: 13px; font-family: inherit;
}
.link-title-input:focus, .link-url-input:focus { border-color: rgba(99,102,241,0.3); outline: none; }
.btn-small { padding: 8px 10px; border: none; border-radius: 6px; cursor: pointer; font-size: 13px; transition: all 0.2s; }
.btn-save-link { background: rgba(52,211,153,0.1); color: #34d399; }
.btn-save-link:hover { background: rgba(52,211,153,0.2); }
.btn-danger-link { background: rgba(248,113,113,0.1); color: #f87171; }
.btn-danger-link:hover { background: rgba(248,113,113,0.2); }
.add-link { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.add-link-form { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.add-link-form .form-control { flex: 1; min-width: 120px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.stat-box { text-align: center; padding: 16px; background: rgba(99,102,241,0.04); border-radius: 10px; border: 1px solid rgba(99,102,241,0.06); }
.stat-number { display: block; font-size: 28px; font-weight: 700; color: #a5b4fc; }
.stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.link-stat-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 13px; }
.stat-link-count { color: rgba(255,255,255,0.3); }
.empty-state { text-align: center; padding: 48px 20px; }
.empty-state p { margin-bottom: 16px; color: rgba(255,255,255,0.35); }

/* ===== BLOG ===== */
.blog-page, .blog-post-article { padding: 80px 0; }
.blog-title { font-size: 38px; font-weight: 800; margin-bottom: 8px; letter-spacing: -1px; }
.blog-subtitle { color: rgba(255,255,255,0.4); font-size: 16px; margin-bottom: 56px; }
.blog-list { display: flex; flex-direction: column; gap: 20px; max-width: 680px; }
.blog-post-card {
  display: block; padding: 28px; border-radius: 16px;
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.blog-post-card:hover { border-color: rgba(99,102,241,0.15); transform: translateY(-3px); }
.blog-post-card h2 { font-size: 20px; margin-bottom: 8px; }
.post-excerpt { color: rgba(255,255,255,0.45); font-size: 14px; margin-bottom: 12px; line-height: 1.6; }
.post-meta { font-size: 12px; color: rgba(255,255,255,0.2); display: flex; gap: 16px; }
.blog-back { display: inline-block; margin-bottom: 20px; color: rgba(255,255,255,0.3); font-size: 14px; transition: color 0.3s; }
.blog-back:hover { color: #818cf8; }
.blog-post-header { margin-bottom: 40px; }
.blog-post-header h1 { font-size: 34px; line-height: 1.2; margin-bottom: 10px; }
.blog-post-content { max-width: 680px; line-height: 1.8; font-size: 16px; }
.blog-post-content h2 { font-size: 24px; margin: 36px 0 14px; }
.blog-post-content p { margin-bottom: 16px; color: rgba(255,255,255,0.75); }
.blog-post-content ul, .blog-post-content ol { margin: 14px 0; padding-left: 24px; color: rgba(255,255,255,0.75); }
.blog-post-content li { margin-bottom: 6px; }
.blog-post-content a { color: #818cf8; text-decoration: underline; text-underline-offset: 2px; }
.no-posts { color: rgba(255,255,255,0.25); text-align: center; padding: 40px; }

/* ===== BLOG TEASER (Home) ===== */
.blog-teaser { padding: 80px 0; }
.blog-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.blog-card {
  padding: 24px; border-radius: 16px;
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.blog-card:hover { border-color: rgba(99,102,241,0.12); transform: translateY(-3px); }
.blog-card h3 { font-size: 16px; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 12px; line-height: 1.6; }
.blog-date { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 28px; border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand h3 { font-size: 18px; margin-bottom: 8px; color: #e2e2ea; }
.footer-brand p { color: rgba(255,255,255,0.3); font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-links h4 { font-size: 11px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.2); }
.footer-links a { display: block; padding: 5px 0; font-size: 13px; color: rgba(255,255,255,0.35); transition: all 0.3s; }
.footer-links a:hover { color: #818cf8; padding-left: 3px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.04); font-size: 12px; color: rgba(255,255,255,0.2); }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 80px 0; max-width: 720px; margin: 0 auto; }
.legal-page h1 { font-size: 32px; margin-bottom: 8px; }
.legal-date { color: rgba(255,255,255,0.3); font-size: 14px; margin-bottom: 40px; }
.legal-block { margin-bottom: 40px; }
.legal-block h2 { font-size: 20px; margin-bottom: 12px; color: #e8e8ef; }
.legal-block h3 { font-size: 16px; margin-bottom: 8px; margin-top: 20px; color: #d4d4dc; }
.legal-block p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.legal-block ul { margin: 8px 0 16px; padding-left: 20px; }
.legal-block li { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 6px; }
.legal-block a { color: #818cf8; text-decoration: underline; }
.legal-notice {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.15);
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
  font-size: 13px;
  line-height: 1.6;
}
.legal-notice p { color: rgba(255,255,255,0.6); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99,102,241,0.3); }
