/* ============================================================
   Oshi Casino AU — stylesheet
   Dark casino aesthetic, gold accent, fully separated from HTML
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg:            #15181c;
  --bg-2:          #1c2026;
  --bg-3:          #23282f;
  --surface:       #1f242b;
  --line:          #313942;
  --txt:           #e7ebf0;
  --txt-dim:       #9aa3ad;
  --gold:          #d4af37;
  --gold-soft:     #e7c662;
  --green:         #34c759;
  --red:           #e0533d;
  --radius:        16px;
  --radius-sm:     10px;
  --shadow:        0 18px 50px rgba(0,0,0,.45);
  --maxw:          1160px;
  --display:       'Sora', sans-serif;
  --body:          'Manrope', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1200px 600px at 80% -200px, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(52,199,89,.06), transparent 55%),
    var(--bg);
  color: var(--txt);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

a { color: var(--gold-soft); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .3px;
  border: none; cursor: pointer;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  transition: transform .15s ease, box-shadow .25s ease, filter .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1407;
  box-shadow: 0 10px 26px rgba(212,175,55,.34);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); text-decoration: none; }
.btn-ghost {
  background: transparent; color: var(--txt);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); text-decoration: none; }
.btn-lg { padding: 17px 38px; font-size: 18px; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(21,24,28,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 26px;
  padding: 12px 0;
}
.nav .logo img { height: 46px; width: auto; }
.nav ul {
  list-style: none; display: flex; align-items: center; gap: 22px;
  margin-left: 6px;
}
.nav ul li { position: relative; }
.nav ul a {
  color: var(--txt); font-weight: 600; font-size: 15px; padding: 8px 0;
}
.nav ul a:hover { color: var(--gold-soft); text-decoration: none; }
.nav .spacer { flex: 1; }
.nav .cta-top { display: flex; gap: 10px; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
}
.eyebrow {
  display: inline-block; font-family: var(--display); font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 16px;
  padding: 6px 14px; border: 1px solid var(--line); border-radius: 50px;
}
h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 40px); line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 18px;
}
h1 .accent { color: var(--gold); }
.hero p.lead { color: var(--txt-dim); font-size: 19px; max-width: 540px; margin-bottom: 26px; }
.rating { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.rating .score {
  font-family: var(--display); font-weight: 800; font-size: 34px; color: var(--gold);
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 18px; }
.rating .sub { color: var(--txt-dim); font-size: 14px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); position: relative;
}
.hero-art::after {
  content: "CLAIM YOUR BONUS"; position: absolute; bottom: 0; left: 0; right: 0;
  font-family: var(--display); font-weight: 700; letter-spacing: 2px; font-size: 13px;
  text-align: center; padding: 14px; color: var(--gold-soft);
  background: linear-gradient(transparent, rgba(0,0,0,.8));
}

/* ---------- Sections ---------- */
section.block { padding: 46px 0; border-top: 1px solid var(--line); }
h2 {
  font-family: var(--display);;
  font-size: clamp(26px, 3.4vw, 30px); line-height: 1.15;
  letter-spacing: -.5px; margin-bottom: 18px;
}
h2 .accent, h3 .accent { color: var(--gold); }
h3 {
  font-family: var(--display);;
  font-size: clamp(20px, 2.4vw, 25px); margin: 28px 0 12px;
}
section.block p { color: #c8cfd7; margin-bottom: 16px; }
section.block p:last-child { margin-bottom: 0; }
strong { color: var(--txt); }

.feature-list { list-style: none; display: grid; gap: 14px; margin: 18px 0; }
.feature-list li {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px;
  border-left: 3px solid var(--gold);
}
.feature-list li b { color: var(--gold-soft); font-family: var(--display); }

ul.checks, ol.steps { margin: 12px 0 18px 0; padding-left: 22px; }
ul.checks li, ol.steps li { margin-bottom: 10px; color: #c8cfd7; }
ul.checks { list-style: none; padding-left: 0; }
ul.checks li { position: relative; padding-left: 30px; }
ul.checks li::before {
  content: "♠"; position: absolute; left: 0; color: var(--gold); font-size: 16px;
}

.section-img {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); margin: 22px 0; box-shadow: var(--shadow);
}

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
table.games {
  width: 100%; border-collapse: collapse; min-width: 880px;
  background: var(--surface); font-size: 15px;
}
table.games thead th {
  background: var(--bg-3); color: var(--gold-soft);
  font-family: var(--display); font-weight: 700;
  text-align: left; padding: 14px 16px; white-space: nowrap;
  border-bottom: 2px solid var(--gold);
}
table.games td { padding: 13px 16px; border-bottom: 1px solid var(--line); color: #c8cfd7; }
table.games tbody tr:hover { background: var(--bg-2); }
table.games td .play {
  font-family: var(--display); font-weight: 700; color: var(--gold);
  cursor: pointer; white-space: nowrap;
}
.yes { color: var(--green); font-weight: 600; }
.no  { color: var(--red); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 20px;
  font-family: var(--display); font-weight: 700; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 24px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .answer { padding: 16px 20px 20px; color: var(--txt-dim); }

/* ---------- Callout / responsible ---------- */
.callout {
  background: var(--bg-3); border: 1px dashed var(--line);
  border-radius: var(--radius); padding: 22px 24px; margin: 24px 0;
  color: var(--txt-dim); font-size: 15px;
}
.callout b { color: var(--gold-soft); font-family: var(--display); }

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line); margin-top: 30px;
  padding: 44px 0 30px; background: var(--bg-2);
}
.foot-top { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.foot-top .logo img { height: 44px; }
.foot-nav { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; }
.foot-nav a { color: var(--txt-dim); font-weight: 600; font-size: 15px; }
.badges { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin: 26px 0; }
.badges img { height: 56px; width: auto; opacity: .85; filter: grayscale(.2); }
.foot-legal { color: var(--txt-dim); font-size: 14px; line-height: 1.7; }
.foot-legal a { color: var(--gold-soft); }
.copyright {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--txt-dim); font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav ul { display: none; }
  .nav .cta-top .btn-ghost { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 40px 0 20px; }
  .nav { gap: 12px; }
  .btn { padding: 12px 20px; font-size: 15px; }
}
