@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --bg-app: #07090e;
  --bg-page: #0d111a;
  --bg-card: #131824;
  --bg-card-hover: #192030;
  --bg-elevated: #1c2333;
  --border-dim: rgba(212, 175, 55, 0.15);
  --border-mid: rgba(212, 175, 55, 0.35);
  --border-bright: rgba(212, 175, 55, 0.65);
  --gold-primary: #e5be53;
  --gold-light: #f3d788;
  --gold-dark: #a8842c;
  --text-white: #ffffff;
  --text-primary: #eef2f8;
  --text-secondary: #9ea8b8;
  --text-tertiary: #6a7688;
  --accent-green: #22c55e;
  --accent-red: #ef4444;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-app);
}

body {
  background-color: var(--bg-app);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(229, 190, 83, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(20, 32, 54, 0.35) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

/* ================= Sticky Executive Navigation ================= */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 14, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
}

.nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.brand span {
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(229, 190, 83, 0.15), rgba(229, 190, 83, 0.05));
  border: 1px solid var(--border-mid);
  color: var(--gold-primary);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.96rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(229, 190, 83, 0.15);
}

.nav-score-badge small {
  color: var(--text-tertiary);
  font-size: 0.75em;
  font-weight: 600;
}

/* ================= AskGamblers Executive Scorecard Hero ================= */
.review-header {
  max-width: 1140px;
  margin: 2.5rem auto 2rem;
  padding: 0 1.5rem;
}

.scoreboard-panel {
  background: linear-gradient(150deg, var(--bg-card), #101520);
  border: 1px solid var(--border-mid);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.scoreboard-panel::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(229, 190, 83, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.editor-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-primary);
  background: rgba(229, 190, 83, 0.12);
  border: 1px solid var(--border-dim);
  padding: 0.4rem 1rem;
  border-radius: 8px;
}

.audit-date-pill {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  font-weight: 600;
}

.scoreboard-panel h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.scoreboard-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.overall-score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #181f30, #111622);
  border: 1px solid var(--border-mid);
  border-radius: 20px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.score-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.score-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.breakdown-bars {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

.bar-meta span:last-child {
  color: var(--gold-primary);
  font-weight: 700;
}

.bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary));
  border-radius: 999px;
}

/* Quick Audit Specs Grid */
.audit-specs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-tile {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.spec-title {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  font-weight: 700;
}

.spec-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

/* ================= Layout & Typography ================= */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem 1.5rem 6rem;
}

.lead {
  font-size: 1.24rem;
  color: var(--text-white);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 2.5rem;
  padding: 1.8rem 2.2rem;
  background: var(--bg-card);
  border-left: 4px solid var(--gold-primary);
  border-radius: 0 16px 16px 0;
}

article p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: var(--text-white);
  margin: 4rem 0 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

h2::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 28px;
  background: var(--gold-primary);
  border-radius: 4px;
}

h3 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 2rem 0 0.9rem;
}

/* ================= Technical Audit Data Table ================= */
.audit-data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.2rem 0;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-dim);
}

.audit-data-table th,
.audit-data-table td {
  padding: 1.25rem 1.6rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audit-data-table th {
  background: var(--bg-elevated);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  font-weight: 700;
}

.audit-data-table td {
  font-size: 1rem;
  color: var(--text-primary);
}

.audit-data-table tr:last-child td {
  border-bottom: none;
}

/* ================= Executive Callout Box ================= */
.executive-note {
  background: linear-gradient(135deg, rgba(229, 190, 83, 0.08), rgba(229, 190, 83, 0.02));
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  padding: 1.8rem 2.2rem;
  margin: 2.5rem 0;
}

.executive-note h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.executive-note p {
  margin-bottom: 0;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-style: italic;
}

/* ================= Pros and Cons Executive Grid ================= */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  border-radius: 20px;
  padding: 2.2rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-mid);
}

.card h3 {
  font-size: 1.22rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.card ul {
  list-style: none;
}

.card li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.pros {
  border-top: 4px solid var(--accent-green);
}

.cons {
  border-top: 4px solid var(--accent-red);
}

.pros h3 {
  color: var(--accent-green);
}

.cons h3 {
  color: var(--accent-red);
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 800;
}

.cons li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: 800;
}

/* ================= Final Verdict Executive Card ================= */
.verdict-box {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(145deg, var(--bg-card), #141c2c);
  border: 1px solid var(--border-mid);
  border-radius: 24px;
  padding: 2.8rem;
  margin: 3rem 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.verdict-badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--gold-primary), var(--gold-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(229, 190, 83, 0.28);
}

.v-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #07090e;
  line-height: 1;
}

.v-den {
  font-size: 0.85rem;
  color: rgba(7, 9, 14, 0.8);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.verdict-body p {
  margin-bottom: 0;
  color: var(--text-primary);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ================= Interactive FAQ Accordions ================= */
.faq {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  transition: all 0.25s ease;
  overflow: hidden;
}

.faq details:hover {
  border-color: var(--border-mid);
}

.faq summary {
  cursor: pointer;
  padding: 1.4rem 1.8rem;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text-white);
  list-style: none;
  position: relative;
  padding-right: 4rem;
  transition: color 0.2s ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq details[open] {
  background: #161c2b;
  border-color: var(--border-mid);
}

.faq details[open] summary {
  color: var(--gold-primary);
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq details p {
  padding: 0 1.8rem 1.6rem;
  margin: 0;
  font-size: 1.03rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ================= Executive Footer ================= */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #05060a;
  padding: 4rem 2rem;
  text-align: center;
}

.footer p {
  max-width: 840px;
  margin: 0 auto 1.2rem;
  font-size: 0.92rem;
  color: var(--text-tertiary);
  line-height: 1.75;
}

.f-warn {
  color: var(--gold-primary);
  font-weight: 700;
}

.f-copy {
  font-size: 0.82rem;
  color: #4b5565;
}

/* ================= Responsive Design ================= */
@media (max-width: 900px) {
  .scoreboard-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .audit-specs-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .scoreboard-panel {
    padding: 2rem 1.5rem;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .verdict-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .audit-specs-row {
    grid-template-columns: 1fr;
  }
}
