/* 3Patti Aura — royal purple + gold, light mode only */

:root {
  --purple-950: #2a0845;
  --purple-900: #37105a;
  --purple-800: #4a1b78;
  --purple-700: #5f2494;
  --purple-600: #7433ab;
  --purple-500: #8b4fc4;
  --gold-700: #a9791f;
  --gold-600: #c9a227;
  --gold-500: #d4af37;
  --gold-400: #e6c458;
  --gold-100: #fbf3d9;
  --bg: #faf6ff;
  --bg-alt: #f3ebff;
  --card: #ffffff;
  --text: #2a1b3d;
  --text-muted: #6b5c7d;
  --border: #e8dff5;
  --radius: 16px;
  --shadow-aura: 0 8px 30px rgba(122, 51, 171, 0.18), 0 2px 8px rgba(212, 175, 55, 0.12);
  --shadow-aura-lg: 0 20px 60px rgba(74, 27, 120, 0.22), 0 4px 16px rgba(212, 175, 55, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, .brand {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  color: var(--purple-900);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

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

a { color: var(--purple-700); text-decoration: none; }
a:hover { color: var(--gold-700); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Aura background wash */
.aura-bg {
  position: relative;
  overflow: hidden;
}
.aura-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(45% 45% at 20% 15%, rgba(139, 79, 196, 0.16), transparent 70%),
    radial-gradient(40% 40% at 85% 10%, rgba(212, 175, 55, 0.14), transparent 70%),
    radial-gradient(50% 50% at 50% 100%, rgba(116, 51, 171, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.aura-bg > * { position: relative; z-index: 1; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  color: var(--purple-900);
}
.brand img { width: 40px; height: 40px; border-radius: 10px; box-shadow: var(--shadow-aura); }
.brand span.gold { color: var(--gold-600); }

nav.main-nav { display: flex; align-items: center; gap: 28px; }
nav.main-nav a {
  color: var(--purple-800);
  font-weight: 500;
  font-size: 0.98rem;
}
nav.main-nav a.active { color: var(--gold-700); font-weight: 600; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--purple-800); cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #3a2503;
  box-shadow: var(--shadow-aura);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-aura-lg); color: #3a2503; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--purple-500);
  color: var(--purple-800);
}
.btn-outline:hover { background: var(--purple-800); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1.08rem; }

/* Hero */
.hero {
  padding: 70px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--gold-700);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero p.lede { font-size: 1.12rem; color: var(--text-muted); max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-art {
  border-radius: 24px;
  box-shadow: var(--shadow-aura-lg);
  border: 1px solid var(--border);
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stats div strong { display: block; font-size: 1.4rem; color: var(--purple-800); font-family: 'Cinzel', serif; }
.hero-stats div span { color: var(--text-muted); font-size: 0.88rem; }

/* Section */
.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 42px; }
.section-head .eyebrow { display: block; text-align: center; margin: 0 auto 14px; width: fit-content; }

/* Cards */
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-aura);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-aura-lg); }
.card .icon-badge {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.game-card img { border-radius: 12px; margin-bottom: 14px; border: 1px solid var(--border); }

/* Gallery */
.shot-figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-aura);
  background: var(--card);
}
.shot-figure figcaption {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-800), var(--purple-950));
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-aura-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(50% 50% at 30% 20%, rgba(212,175,55,0.25), transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #e6d9f7; }

/* Steps */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.steps li {
  counter-increment: step;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px 18px 62px;
  position: relative;
  box-shadow: var(--shadow-aura);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #3a2503;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

/* FAQ */
details.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-aura);
}
details.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--purple-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold-600);
  margin-left: 12px;
}
details.faq-item[open] summary::after { content: "\2212"; }
details.faq-item p { margin: 12px 0 0; color: var(--text-muted); }

/* Table */
table.spec-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-aura); }
table.spec-table th, table.spec-table td { text-align: left; padding: 14px 20px; border-bottom: 1px solid var(--border); }
table.spec-table th { background: var(--bg-alt); color: var(--purple-800); width: 40%; }

/* Callout */
.callout {
  border-left: 4px solid var(--gold-500);
  background: var(--gold-100);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  color: #4a3a10;
  margin: 24px 0;
}
.callout strong { color: var(--purple-900); }

/* Footer */
footer.site-footer {
  background: var(--purple-950);
  color: #d9c9ec;
  padding: 56px 0 28px;
  margin-top: 60px;
}
footer.site-footer a { color: #e6c458; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { color: #fff; font-family: 'Cinzel', serif; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: #a993c2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.disclaimer-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 0.85rem;
  color: #c9b8de;
  margin-top: 28px;
}

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); padding: 18px 0 0; }
.breadcrumb a { color: var(--purple-700); }

/* Responsive */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner .btn-gold.header-cta { display: none; }
}
nav.main-nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card);
  flex-direction: column;
  padding: 18px 24px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
