:root {
  --bg-1: #0a0800;
  --bg-2: #1a1200;
  --card: #1c1400;
  --gold-deep: #d97706;
  --gold-bright: #fbbf24;
  --champagne: #fff8dc;
  --cream: #fffbf0;
  --navy-text: #0f172a;
  --line: rgba(251, 191, 36, 0.45);
  --danger: #ef4444;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--cream);
  background: radial-gradient(circle at 10% 10%, #2a1d00 0%, var(--bg-1) 35%, var(--bg-2) 100%);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #050403;
  backdrop-filter: blur(8px);
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", serif;
  font-variant: small-caps;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.brand img {
  width: 40px;
  height: 40px;
}

.brand .crown {
  color: var(--gold-bright);
  font-size: 1.05rem;
}

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

.main-nav a {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  font-variant: small-caps;
  letter-spacing: 1.1px;
  color: #f6f6f6;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-bright);
}

.auth-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  border: none;
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--navy-text);
}

.btn-ghost {
  border: 1px solid #665b39;
  background: transparent;
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(251, 191, 36, 0.22), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(217, 119, 6, 0.2), transparent 45%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: repeating-radial-gradient(circle, rgba(255, 248, 220, 0.035) 0 1px, transparent 1px 12px);
  animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-8%) rotate(8deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

h1,
h2,
h3 {
  font-family: "Cinzel", serif;
  line-height: 1.2;
  margin-top: 0;
  color: var(--champagne);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #f3e8bf;
}

section {
  padding: 64px 0;
}

.card {
  background: linear-gradient(180deg, #261d07, var(--card));
  border: 1px solid rgba(255, 228, 164, 0.2);
  border-top: 3px solid var(--gold-bright);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.16);
  color: var(--gold-bright);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.slider {
  position: relative;
}

.slider-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.slider-track figure {
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: #141007;
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 12px;
}

.slider-track img {
  max-height: 260px;
}

.slider-controls {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.review-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.review-tabs button {
  padding: 9px 14px;
}

.review-panel {
  margin-top: 14px;
}

.stars {
  color: var(--gold-bright);
  letter-spacing: 1px;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px;
}

.faq-answer {
  display: none;
  padding: 0 14px 14px;
  color: #f3e8bf;
}

.faq-item.open .faq-answer {
  display: block;
}

.play-badge {
  display: inline-flex;
  margin-top: 14px;
}

.play-badge img {
  height: 56px;
}

.content-hero {
  padding: 80px 0 40px;
}

.content-hero p {
  max-width: 780px;
}

.iframe-wrap {
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-top: 3px solid var(--gold-bright);
  border-radius: 12px;
  overflow: hidden;
  background: #0a0700;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #6d5720;
  background: #120e03;
  color: var(--cream);
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.form-row + .form-row {
  margin-top: 12px;
}

.site-footer {
  margin-top: 56px;
  background: #050403;
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", serif;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.92rem;
}

.tiny {
  color: #e8d9a2;
  font-size: 0.92rem;
}

.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  padding: 18px;
}

.auth-modal.show {
  display: flex;
}

.auth-card {
  width: min(420px, 100%);
  position: relative;
}

.auth-close {
  position: absolute;
  right: 10px;
  top: 8px;
  background: transparent;
  color: #f0e5bf;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.auth-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 0.92rem;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #8e6d24;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(17, 13, 2, 0.7);
  font-size: 0.92rem;
}

.section-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-slot {
    width: 100%;
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 74vh;
  }
}
