:root {
  color-scheme: dark;
  --bg: #07060a;
  --surface: #0e0b14;
  --text: #f5f3ff;
  --muted: rgba(245, 243, 255, 0.65);
  --border: rgba(255, 255, 255, 0.08);
  --pink: #ff2bd6;
  --purple: #7c3aed;
  --cyan: #22d3ee;
  --gradient: linear-gradient(90deg, #ff2bd6 0%, #7c3aed 50%, #22d3ee 100%);
  --shadow: 0 18px 40px rgba(5, 4, 10, 0.65);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  background:
    radial-gradient(120% 120% at 12% 0%, rgba(124, 58, 237, 0.18), transparent 55%),
    radial-gradient(140% 120% at 85% 10%, rgba(255, 43, 214, 0.18), transparent 60%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.25);
}

.background-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.glow.glow-pink {
  background: #ff2bd6;
  top: -120px;
  left: -80px;
}

.glow.glow-purple {
  background: #7c3aed;
  top: 20%;
  right: -120px;
}

.glow.glow-cyan {
  background: #22d3ee;
  bottom: -140px;
  left: 30%;
  opacity: 0.2;
}

.site {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, 100% - 48px);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 6, 10, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #ff2bd6 0%, #7c3aed 50%, #ff2bd6 100%);
  color: #07060a;
  box-shadow: 0 10px 30px rgba(255, 43, 214, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 24px rgba(20, 10, 40, 0.45);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.hero {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-subline {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 6, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate__panel {
  width: min(520px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.age-gate__title {
  margin: 0 0 12px;
  font-size: 1.6rem;
}

.age-gate__text {
  margin: 0 0 20px;
  color: var(--muted);
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.age-gate__note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.age-gate-open {
  overflow: hidden;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(12, 6, 26, 0.6);
}

.hero-card {
  border-color: rgba(255, 43, 214, 0.35);
  box-shadow: 0 18px 40px rgba(255, 43, 214, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill-strong {
  color: var(--text);
  border-color: rgba(255, 43, 214, 0.4);
  box-shadow: 0 0 16px rgba(255, 43, 214, 0.2);
}

.creator-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-title {
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.card-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.creator-avatar {
  height: 100%;
  width: clamp(96px, 18vw, 140px);
  min-height: 96px;
  border-radius: 16px;
  border: 1px dashed var(--border);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.creator-avatar::after {
  content: "Photo";
}

.creator-card {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.creator-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.muted {
  color: var(--muted);
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 640px;
}

.link-list {
  display: grid;
  gap: 12px;
}

.link-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.link-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.link-icon {
  height: 22px;
  width: auto;
  max-width: 72px;
  flex-shrink: 0;
  display: block;
}

.split-grid {
  display: grid;
  gap: 20px;
}

.centered-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.footer-note {
  color: var(--muted);
  margin-top: 32px;
  font-size: 0.9rem;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
