/* =========================================================
   Pure Casino AU — stylesheet
   ========================================================= */

:root {
    --bg:        #121521;
    --bg-2:      #0d101a;
    --card:      #1c2132;
    --card-2:    #232943;
    --line:      #343c56;
    --ink:       #e9ecf5;
    --muted:     #8b93ad;
    --gold:      #f5bf42;
    --gold-2:    #ffd66e;
    --green:     #3ddc84;
    --red:       #ff6b6b;
    --radius:    16px;
    --radius-sm: 10px;
    --maxw:      1140px;
    --shadow:    0 20px 50px -20px rgba(0,0,0,.7);
    --font-head: 'Sora', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    background:
        radial-gradient(900px 500px at 85% -5%, rgba(245,191,66,.10), transparent 60%),
        radial-gradient(700px 500px at 0% 10%, rgba(61,140,255,.08), transparent 55%),
        var(--bg);
    color: var(--ink);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -.5px; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 700; letter-spacing: -.4px; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: #c4cadb; }
a  { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }

section { padding: 56px 0; }
.section-lead { color: var(--muted); max-width: 760px; margin-top: 10px; }

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #2a2102;
    box-shadow: 0 10px 25px -10px rgba(245,191,66,.8);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(245,191,66,.9); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-wide { width: 100%; max-width: 420px; justify-content: center; margin: 18px auto 0; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(13,16,26,.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand img { height: 42px; width: auto; display: block; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: var(--muted); font-weight: 600; font-size: .96rem; }
.main-nav a:hover { color: var(--ink); text-decoration: none; }
.header-cta { padding: 10px 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 70px 0 40px; }
.hero-glow {
    position: absolute; inset: -40% 0 auto 30%; height: 420px;
    background: radial-gradient(closest-side, rgba(245,191,66,.18), transparent);
    filter: blur(20px); pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; position: relative; }
.eyebrow {
    text-transform: uppercase; letter-spacing: 3px; font-size: .8rem;
    color: var(--gold); font-weight: 700; font-family: var(--font-head);
}
.hero-lead { font-size: 1.35rem; color: var(--ink); margin: 16px 0 26px; max-width: 540px; line-height: 1.5; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { list-style: none; display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.hero-badges li {
    font-size: .8rem; font-weight: 600; color: var(--muted);
    border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px;
}
.hero-art { display: flex; justify-content: center; }
.hero-art img { width: 100%; max-width: 380px; height: auto; filter: drop-shadow(0 24px 50px rgba(0,0,0,.6)); }

/* ---------- Intro / article ---------- */
.intro { padding: 30px 0 10px; max-width: 880px; }
.intro h1 { margin-bottom: 18px; }
.intro p { margin-bottom: 16px; }

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

/* ---------- Highlights ---------- */
.hl-card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 24px; position: relative;
}
.hl-card h3 { margin: 12px 0 8px; }
.hl-card p { color: var(--muted); font-size: .96rem; }
.hl-mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 12px; font-size: 1.2rem; font-weight: 800;
}
.pro .hl-mark { background: rgba(61,220,132,.14); color: var(--green); }
.con .hl-mark { background: rgba(255,107,107,.14); color: var(--red); }
.pro { border-top: 3px solid var(--green); }
.con { border-top: 3px solid var(--red); }

/* ---------- Split (mobile section) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split-media img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.split-copy h2 { margin-bottom: 14px; }
.split-copy p { margin-bottom: 14px; }
.mobile-cta { display: flex; align-items: center; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.qr { display: flex; align-items: center; gap: 12px; }
.qr img { width: 78px; height: 78px; border-radius: 10px; background: #fff; padding: 5px; }
.qr span { font-size: .85rem; color: var(--muted); max-width: 130px; }

/* ---------- Bonus ---------- */
.bonus-grid {
    display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
    background: linear-gradient(135deg, var(--card-2), var(--card));
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; margin-top: 24px;
}
.bonus-figures { display: flex; flex-direction: column; gap: 16px; }
.figure { text-align: center; padding: 16px 24px; border: 1px dashed var(--gold); border-radius: var(--radius-sm); }
.figure strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold-2); }
.figure span { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.bonus-points { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bonus-points li { padding-left: 28px; position: relative; color: var(--ink); }
.bonus-points li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.bonus-img { width: 220px; height: auto; border-radius: var(--radius-sm); border: 1px solid var(--line); }

.steps { margin-top: 36px; text-align: center; }
.steps h3 { margin-bottom: 22px; }
.steps .grid { text-align: left; }
.step {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 24px; position: relative;
}
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #2a2102; font-family: var(--font-head); font-weight: 800; margin-bottom: 12px;
}
.step h4 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .95rem; }
.fineprint { font-size: .82rem; color: var(--muted); margin-top: 12px; }

.reload-note {
    margin-top: 34px; padding: 28px; text-align: center;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
}
.reload-note h3 { margin-bottom: 10px; }
.reload-note p { max-width: 720px; margin: 0 auto 18px; color: var(--muted); }

/* ---------- Reviews ---------- */
.review-card {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 26px;
}
.review-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.review-head img { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.review-meta { font-size: .86rem; color: var(--muted); }
.review-card blockquote p { margin-bottom: 12px; color: #d3d9ea; }
.review-note { color: var(--muted); font-style: italic; font-size: .95rem; }
.tags { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tags li { font-size: .78rem; font-weight: 600; color: var(--gold-2); background: rgba(245,191,66,.1); border-radius: 999px; padding: 4px 12px; }

.trust-row { margin-top: 28px; text-align: center; }
.trust-row h3 { margin-bottom: 16px; }
.trust-row ul { list-style: none; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.trust-row li { font-weight: 600; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; }

/* ---------- Facts ---------- */
.facts-table {
    margin: 22px 0 24px; border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden;
}
.fact-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; padding: 14px 22px; border-bottom: 1px solid var(--line); }
.fact-row:last-child { border-bottom: none; }
.fact-row:nth-child(odd) { background: rgba(255,255,255,.02); }
.fact-row span:first-child { color: var(--muted); font-weight: 600; }
.fact-row span:last-child { color: var(--ink); }

.facts h3 { margin-top: 34px; }
.checklist { list-style: none; counter-reset: c; margin-top: 22px; display: grid; gap: 16px; }
.checklist li {
    counter-increment: c; position: relative;
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 22px 22px 22px 76px;
}
.checklist li::before {
    content: counter(c); position: absolute; left: 22px; top: 22px;
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #2a2102; font-family: var(--font-head); font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.checklist h4 { margin-bottom: 6px; }
.checklist p { color: var(--muted); font-size: .96rem; }
.final-tip { margin-top: 22px; padding: 18px 22px; border-left: 3px solid var(--gold); background: var(--card); border-radius: var(--radius-sm); }

/* ---------- Responsible ---------- */
.responsible h3 { margin: 26px 0 10px; }
.responsible p { margin-bottom: 14px; max-width: 860px; }
.rules { list-style: none; display: grid; gap: 10px; margin: 6px 0 4px; }
.rules li { padding-left: 26px; position: relative; color: #d3d9ea; }
.rules li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: .8rem; top: 4px; }
.rule-bottom { color: var(--gold-2) !important; font-weight: 600; }
.help-grid { margin-top: 14px; }
.help-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.help-card h4 { margin-bottom: 6px; color: var(--gold-2); }
.help-card p { color: var(--muted); font-size: .95rem; margin-bottom: 8px; }

/* ---------- FAQ ---------- */
.faq-item {
    background: var(--card); border: 1px solid var(--line);
    border-radius: var(--radius); margin-top: 14px; overflow: hidden;
}
.faq-item summary {
    list-style: none; cursor: pointer; padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 1.1rem; }
.faq-item summary::after { content: "+"; font-family: var(--font-head); font-size: 1.5rem; color: var(--gold); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); margin-top: 30px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding: 48px 22px 30px; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 12px; }
.footer-brand p { color: var(--muted); max-width: 320px; margin-bottom: 16px; }
.socials { display: flex; gap: 16px; flex-wrap: wrap; }
.socials a { color: var(--muted); font-weight: 600; font-size: .9rem; }
.socials a:hover { color: var(--gold-2); }
.footer-h { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); margin-bottom: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--muted); font-weight: 600; }
.footer-nav a:hover { color: var(--ink); text-decoration: none; }
.footer-bottom {
    display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    padding-top: 20px; padding-bottom: 26px; border-top: 1px solid var(--line);
}
.footer-bottom p { font-size: .85rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-badges { justify-content: center; }
    .hero-art { order: -1; }
    .hero-art img { max-width: 260px; }
    .split { grid-template-columns: 1fr; }
    .split-media { order: -1; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .bonus-img { width: 100%; max-width: 360px; margin: 0 auto; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    body { font-size: 16px; }
    .main-nav { display: none; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .fact-row { grid-template-columns: 1fr; gap: 4px; }
    .footer-inner { grid-template-columns: 1fr; }
    .mobile-cta { flex-direction: column; align-items: flex-start; }
}
