/* ═══════════════════════════════════════════════════════════════════════════
   PADELLY — Style Sheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:      #0a0a0a;
  --surface: #111111;
  --card:    #161616;
  --border:  #222222;
  --text:    #ffffff;
  --text-2:  #a1a1a1;
  --text-3:  #666666;
  --accent:  #AAFF00;
  --accent2: #00FF9F;
  --radius:  16px;
  --radius-sm: 10px;
  --nav-h:   72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }
.hidden { display: none !important; }

/* ─── Reveal Animations ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* If JS hasn't loaded after 4s, show everything anyway */
@keyframes force-visible {
  to { opacity: 1; transform: translateY(0); }
}

.reveal:not(.visible) {
  animation: force-visible 0s 4s forwards;
}

/* Hero elements animate immediately via CSS — no JS dependency */
.hero .reveal {
  animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero .reveal[data-delay="0"]   { animation-delay: 0ms; }
.hero .reveal[data-delay="100"] { animation-delay: 100ms; }
.hero .reveal[data-delay="200"] { animation-delay: 200ms; }
.hero .reveal[data-delay="300"] { animation-delay: 300ms; }
.hero .reveal[data-delay="400"] { animation-delay: 400ms; }
.hero .reveal[data-delay="500"] { animation-delay: 500ms; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-logo-text {
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--accent);
  color: #0a0a0a;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(170, 255, 0, 0.3);
}

.nav-cta:active { transform: scale(0.97); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(170, 255, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 0%, transparent 70%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(170, 255, 0, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 80%, rgba(0, 255, 159, 0.04) 0%, transparent 60%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  mix-blend-mode: luminosity;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 24px 60px;
  max-width: 740px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(170, 255, 0, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(170, 255, 0, 0); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-headline .word {
  display: inline-block;
  margin-right: 0.2em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--accent);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: 0.3; }
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
  border: none;
}

.btn:hover  { transform: scale(1.04); }
.btn:active { transform: scale(0.97); }

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(170, 255, 0, 0.3), 0 0 60px rgba(170, 255, 0, 0.1);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn-primary:hover .btn-shine { left: 120%; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(170, 255, 0, 0.1);
}

/* ─── Sections ───────────────────────────────────────────────────────────── */
.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ─── Stats ──────────────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}

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

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.stat-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── Players Grid ───────────────────────────────────────────────────────── */
.players-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.player-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.player-card:hover {
  transform: translateY(-6px);
  border-color: rgba(170, 255, 0, 0.3);
  box-shadow: 0 0 30px rgba(170, 255, 0, 0.06);
}

.player-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  background: hsl(var(--hue), 60%, 15%);
  color: hsl(var(--hue), 80%, 65%);
  border: 1px solid hsl(var(--hue), 50%, 25%);
  flex-shrink: 0;
}

.player-info { flex: 1; min-width: 0; }

.player-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-level {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

.player-stat { text-align: right; flex-shrink: 0; }

.player-elo {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.player-elo-label {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 4px;
}

/* ─── Events ─────────────────────────────────────────────────────────────── */
.events-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color 0.3s, transform 0.2s;
  cursor: pointer;
}

.event-card:hover {
  border-color: var(--accent);
  transform: translateX(6px);
}

.event-date {
  text-align: center;
  flex-shrink: 0;
  min-width: 52px;
}

.event-day {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.event-month {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-body { flex: 1; min-width: 0; }

.event-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.tag-tournament { background: rgba(170, 255, 0, 0.1); color: var(--accent); }
.tag-social     { background: rgba(0, 200, 255, 0.1); color: #00c8ff; }
.tag-ladder     { background: rgba(255, 170, 0, 0.1); color: #ffaa00; }
.tag-workshop   { background: rgba(200, 100, 255, 0.1); color: #c864ff; }

.event-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.event-body p {
  font-size: 14px;
  color: var(--text-3);
}

.event-arrow {
  color: var(--text-3);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.event-card:hover .event-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ─── Courts ─────────────────────────────────────────────────────────────── */
.courts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.court-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

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

.court-pin {
  font-size: 24px;
  margin-bottom: 12px;
}

.court-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.court-card p {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 16px;
}

.court-status {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
}

.court-status.open { color: var(--accent); }

/* ─── Join CTA ───────────────────────────────────────────────────────────── */
.join {
  padding-bottom: 160px;
}

.join-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(170, 255, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.join-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  position: relative;
}

.join-desc {
  color: var(--text-2);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative;
}

.join-form { position: relative; }

.input-wrap {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.input-wrap input {
  flex: 1;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.input-wrap input::placeholder { color: var(--text-3); }
.input-wrap input:focus { border-color: var(--accent); }

.btn-submit { white-space: nowrap; }

.join-note {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 16px;
  position: relative;
}

.join-success {
  position: relative;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(170, 255, 0, 0.1);
  color: var(--accent);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.join-success p {
  color: var(--text-2);
  font-size: 1.1rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -1px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--accent); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 8px;
}

/* ─── Modal ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: background 0.2s, color 0.2s;
  font-size: 16px;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.modal-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.modal-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.modal-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 8px;
}

.modal-body ul {
  padding-left: 20px;
  margin-bottom: 8px;
}

.modal-body li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .players-grid { grid-template-columns: repeat(2, 1fr); }
  .courts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav open */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open a { font-size: 18px; }

  .section { padding: 80px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-number { font-size: 2rem; }
  .stat-card { padding: 24px 16px; }
  .players-grid { grid-template-columns: 1fr; }

  .event-card { flex-wrap: wrap; gap: 16px; padding: 20px; }
  .event-arrow { display: none; }

  .courts-grid { grid-template-columns: 1fr; }

  .join-card { padding: 40px 24px; }
  .input-wrap { flex-direction: column; }

  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { width: 100%; justify-content: center; }
  .footer-social { width: 100%; justify-content: center; }

  .hero-headline { margin-bottom: 20px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Legal Pages ────────────────────────────────────────────────────────── */
.legal-page {
  padding-top: 140px;
}

.legal-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-3);
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-page p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-page li {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page a:hover {
  text-decoration-color: transparent;
}

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