:root {
  color-scheme: dark;
  --bg: #09111f;
  --surface: #101a2c;
  --surface-strong: #16233b;
  --text: #f5f7fb;
  --muted: #b9c2d3;
  --accent: #69e4ff;
  --accent-strong: #ff4ec1;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(105, 228, 255, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 78, 193, 0.14), transparent 28%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
.site-footer,
.hero,
.legal-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header nav a {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.insta-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("/assets/logo_insta_30x30.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.brand,
.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand {
  font-weight: 700;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 16px 0 40px;
}

.hero-copy,
.legal-card {
  background: rgba(16, 26, 44, 0.72);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy h1,
.legal-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.95;
}

.hero-copy p,
.legal-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #09111f;
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.poster-card {
  margin: 0;
  padding: 14px;
  background: rgba(16, 26, 44, 0.6);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.poster-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.site-footer {
  padding: 0 0 36px;
  color: var(--muted);
}

.legal-page {
  display: flex;
  justify-content: center;
  padding: 24px 0 48px;
}

.legal-card {
  max-width: 760px;
  width: 100%;
}

.legal-card h2 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.legal-block + .legal-block {
  margin-top: 24px;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .legal-card,
  .poster-card {
    padding: 20px;
  }
}
