/* ============================================================
   Bizzo Casino Australia — review site stylesheet
   Original design: deep indigo night theme, violet glow, gold accents
   ============================================================ */

:root {
  --bg: #120e1f;
  --bg-soft: #191331;
  --bg-card: #201842;
  --bg-card-2: #261d4e;
  --line: rgba(160, 140, 255, 0.16);
  --text: #efeaff;
  --text-dim: #b6acd8;
  --violet: #7b5cff;
  --violet-deep: #4b2fd6;
  --gold: #ffc62b;
  --gold-deep: #e0a400;
  --green: #46d68c;
  --red: #ff6b7a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(8, 4, 24, 0.55);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(123, 92, 255, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255, 198, 43, 0.07), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1160px, 92%); margin: 0 auto; }
.container.narrow { width: min(860px, 92%); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.18; }

h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0.6rem 0 1.1rem;
}

h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: var(--text);
}

p { color: var(--text-dim); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 198, 43, 0.1);
  border: 1px solid rgba(255, 198, 43, 0.3);
  border-radius: 999px;
  padding: 0.4em 1em;
}

.section-intro { max-width: 760px; margin-bottom: 2rem; }

.prose { max-width: 860px; margin: 2.2rem auto 0; }
.prose p { margin-bottom: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 0.85em 1.7em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-gold {
  color: #251a00;
  background: linear-gradient(180deg, #ffd95e 0%, var(--gold) 55%, var(--gold-deep) 100%);
  box-shadow: 0 8px 24px rgba(255, 198, 43, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255, 198, 43, 0.42); }

.btn-ghost {
  color: var(--text);
  background: rgba(123, 92, 255, 0.12);
  border: 1px solid rgba(160, 140, 255, 0.4);
}
.btn-ghost:hover { background: rgba(123, 92, 255, 0.24); transform: translateY(-2px); }

.btn-lg { font-size: 0.95rem; padding: 1em 2.1em; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 14, 31, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.8rem 0;
}

.brand-logo { width: 172px; height: auto; }

.main-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.main-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 4.5rem 0 4rem; }

.hero-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background:
    radial-gradient(560px 360px at 70% 30%, rgba(123, 92, 255, 0.28), transparent 65%),
    radial-gradient(420px 300px at 30% 70%, rgba(255, 198, 43, 0.1), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-art img {
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
  transform: rotate(2deg);
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.hero-badges li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  border: 1px solid var(--line);
  background: rgba(32, 24, 66, 0.6);
  border-radius: 999px;
  padding: 0.4em 1em;
}

/* ---------- Sections ---------- */
.section { padding: 4.2rem 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(32, 24, 66, 0.45), rgba(25, 19, 49, 0.7));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 0.6rem;
}

.feature-card {
  background: linear-gradient(165deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(255, 198, 43, 0.45); }

.feature-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 1.45rem;
  border-radius: 14px;
  background: rgba(123, 92, 255, 0.18);
  border: 1px solid rgba(160, 140, 255, 0.35);
  margin-bottom: 1rem;
}

/* ---------- Pros / cons ---------- */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.pc-card {
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.pc-pros { border-top: 3px solid var(--green); }
.pc-cons { border-top: 3px solid var(--red); }

.pc-card ul { list-style: none; }
.pc-card li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.8rem;
  color: var(--text-dim);
}
.pc-pros li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pc-cons li::before { content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

.note-line {
  margin-top: 1.6rem;
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 198, 43, 0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text);
}

/* ---------- Split (mobile app) ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split-copy h3 { margin-top: 1.5rem; color: var(--gold); }

.split-art img {
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
  transform: rotate(-2deg);
}

.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; justify-content: center; }
.chip {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(123, 92, 255, 0.13);
  border: 1px solid rgba(160, 140, 255, 0.35);
  border-radius: 999px;
  padding: 0.45em 1.1em;
}

/* ---------- Bonus ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.4rem;
  align-items: start;
}

.bonus-hero-card {
  position: sticky;
  top: 92px;
  text-align: center;
  background:
    radial-gradient(220px 160px at 50% 0%, rgba(255, 198, 43, 0.2), transparent 70%),
    linear-gradient(165deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid rgba(255, 198, 43, 0.35);
  border-radius: var(--radius);
  padding: 2.4rem 1.8rem;
  box-shadow: var(--shadow);
}

.bonus-amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.3rem);
  font-weight: 800;
  background: linear-gradient(180deg, #ffe49a, var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bonus-sub { display: block; color: var(--text-dim); margin: 0.6rem 0 1.5rem; font-weight: 600; }

.tiny { font-size: 0.74rem; color: var(--text-dim); margin-top: 1rem; }

.bonus-copy h3 { margin-top: 1.6rem; color: var(--gold); }

.steps { margin: 0.6rem 0 0.8rem 1.2rem; color: var(--text-dim); }
.steps li { padding: 0.3rem 0; }
.steps li::marker { color: var(--gold); font-weight: 700; }

.bonus-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2.6rem;
}

.extra-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.extra-card h3 { color: var(--violet); }

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.review-card {
  background: linear-gradient(165deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
}

.review-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.review-head h3 { margin-bottom: 0.1rem; }
.review-loc { font-size: 0.82rem; color: var(--gold); font-weight: 600; }

.avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 198, 43, 0.5);
  object-fit: cover;
}

.review-footer {
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
  font-style: italic;
}

.cta-band {
  margin-top: 2.6rem;
  text-align: center;
  background:
    radial-gradient(420px 200px at 50% 0%, rgba(123, 92, 255, 0.24), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.6rem 1.6rem;
}
.cta-band p { max-width: 540px; margin-inline: auto; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }

.info-table { width: 100%; border-collapse: collapse; background: var(--bg-card); min-width: 560px; }
.info-table th, .info-table td { padding: 0.95rem 1.3rem; text-align: left; border-bottom: 1px solid var(--line); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table th {
  width: 34%;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(255, 198, 43, 0.05);
}
.info-table td { color: var(--text-dim); }
.info-table tr:hover td { background: rgba(123, 92, 255, 0.06); }

/* ---------- Checklist article ---------- */
#choosing h3 { margin-top: 2rem; color: var(--gold); font-size: 1.12rem; }

/* ---------- Responsible gaming ---------- */
.rg-list { list-style: none; margin: 0.4rem 0 1.4rem; }
.rg-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.9rem;
  color: var(--text-dim);
}
.rg-list li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 0.62rem; }

#responsible h3 { color: var(--gold); margin-top: 1.6rem; }

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.help-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.help-card:hover { border-color: var(--green); transform: translateY(-3px); }
.help-card h3 { color: var(--green); margin-top: 0; font-size: 0.95rem; }
.help-card p { font-size: 0.88rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary h3 { margin: 0; font-size: 0.98rem; }
.faq-item p { padding: 0 1.4rem 1.3rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(25, 19, 49, 0.5), rgba(14, 10, 26, 0.95));
  padding-top: 3.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}

.footer-brand p { font-size: 0.92rem; margin-top: 1rem; }

.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links h3 { color: var(--gold); font-size: 0.88rem; margin-bottom: 0.4rem; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.93rem; }
.footer-links a:hover { color: var(--gold); }

.footer-cta h3 { color: var(--gold); font-size: 0.88rem; }
.footer-cta p { font-size: 0.92rem; margin-bottom: 1rem; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}
.footer-bottom p { font-size: 0.8rem; margin: 0; }
.rg-line { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split-grid, .bonus-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 420px; }
  .bonus-hero-card { position: static; }
  .feature-grid, .bonus-extras, .help-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .feature-grid, .proscons-grid, .review-grid, .bonus-extras, .help-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .hero { padding: 3rem 0; }
  .brand-logo { width: 138px; }
}
