:root {
  --bg-color: #2a2727;
  --text-light: #f1f1f1;
  --accent: #ffd700;
  --button-bg: transparent;
  --button-border: 1px solid #f1f1f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-color);
  color: var(--text-light);
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(42, 39, 39, 0.95), rgba(18, 17, 17, 0.9)),
    radial-gradient(circle at top, rgba(255, 215, 0, 0.15), transparent 60%),
    var(--bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem clamp(1.25rem, 5vw, 4rem) 4rem;
  text-align: center;
}

.hero__header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1rem, 4vw, 3rem);
}

.hero__logo {
  width: clamp(140px, 20vw, 220px);
  max-width: 80vw;
  height: auto;
}

.hero__content {
  max-width: 720px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: clamp(-3rem, -1.5vw, -1rem);
  padding-block: clamp(1rem, 4vw, 3rem);
}

.hero__eyebrow {
  letter-spacing: 0.4em;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: rgba(241, 241, 241, 0.8);
}

.hero__title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  margin: 0;
  letter-spacing: 0.08em;
}

.hero__subtitle {
  margin: 1.25rem auto 2.5rem;
  color: rgba(241, 241, 241, 0.75);
  font-size: 1.05rem;
  max-width: 520px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.95rem 2.7rem;
  border-radius: 999px;
  border: var(--button-border);
  color: var(--text-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, border-color 0.3s ease;
  background: var(--button-bg);
}

.btn--primary {
  border-color: transparent;
  background: rgba(241, 241, 241, 0.08);
}

.btn--ghost {
  border-color: rgba(241, 241, 241, 0.4);
  background: transparent;
  padding-inline: 1.75rem;
}

.btn:hover,
.btn:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  outline: none;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  color: var(--accent);
  background: rgba(255, 215, 0, 0.08);
}

.btn--small {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

.hero__footer {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.footer__links {
  display: inline-flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  color: rgba(241, 241, 241, 0.8);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__divider {
  color: rgba(241, 241, 241, 0.5);
}

.legal {
  min-height: 100vh;
  background: var(--bg-color);
  color: var(--text-light);
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
}

.legal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.legal__logo-link {
  display: inline-flex;
}

.legal__content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.legal__article {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 3vw, 1rem);
  font-size: 1rem;
  line-height: 1.7;
}

.legal__article h1 {
  font-family: 'Orbitron', 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1rem;
}

.legal__intro {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(241, 241, 241, 0.8);
}

.legal__article h2 {
  margin-top: 2.5rem;
  letter-spacing: 0.05em;
}

.legal__article ol {
  padding-left: 1.5rem;
}

.legal__article ol li {
  margin-bottom: 0.75rem;
}

.legal__article section + section {
  margin-top: 1rem;
}

.legal__article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.legal__article th,
.legal__article td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
  text-align: left;
}

.legal__article thead {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 480px);
  background: rgba(26, 24, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  color: var(--text-light);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.cookie-banner--visible {
  opacity: 1;
  visibility: visible;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 8rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
  }

  .cookie-banner {
    width: calc(100vw - 2rem);
    bottom: 1rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .legal {
    padding: 1rem;
  }

  .legal__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal__article {
    padding: 1.5rem;
  }
}
