/* =========================================================
   Stay Casino Australia — stylesheet
   Brand palette taken from staycasino.com (black + crimson red ❤)
   ========================================================= */

:root{
  --c-bg:        #0d0d10;
  --c-bg-2:      #111116;
  --c-surface:   #17171d;
  --c-surface-2: #1e1e26;
  --c-border:    #2a2a34;
  --c-red:       #e8113c;
  --c-red-2:     #ff3b5c;
  --c-red-deep:  #b00b2c;
  --c-text:      #ececf1;
  --c-muted:     #9a9aa8;
  --c-faint:     #6c6c7a;
  --c-gold:      #f3c969;
  --radius:      14px;
  --radius-sm:   9px;
  --maxw:        1180px;
  --shadow:      0 18px 48px rgba(0,0,0,.55);
  --shadow-red:  0 10px 30px rgba(232,17,60,.30);
  --font-head:   "Bebas Neue","Oswald",Impact,sans-serif;
  --font-body:   "Manrope","Segoe UI",system-ui,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--c-bg);
  color:var(--c-text);
  line-height:1.65;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}
a{color:var(--c-red-2);text-decoration:none}
img{max-width:100%;display:block}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--font-head);letter-spacing:.06em;
  font-size:1.05rem;line-height:1;
  padding:14px 30px;border:none;border-radius:var(--radius-sm);
  cursor:pointer;text-transform:uppercase;
  background:linear-gradient(135deg,var(--c-red),var(--c-red-deep));
  color:#fff;box-shadow:var(--shadow-red);
  transition:transform .15s ease,box-shadow .15s ease,filter .15s ease;
}
.btn:hover{transform:translateY(-2px);filter:brightness(1.08);box-shadow:0 14px 36px rgba(232,17,60,.45)}
.btn:active{transform:translateY(0)}
.btn--ghost{
  background:transparent;border:1.6px solid var(--c-red);color:var(--c-red-2);
  box-shadow:none;
}
.btn--ghost:hover{background:rgba(232,17,60,.12)}
.btn--sm{padding:9px 18px;font-size:.9rem}
.btn--block{width:100%}

/* ---------- header ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(13,13,16,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--c-border);
}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;height:78px;gap:16px}
.logo img{height:46px;width:auto}
.header-actions{display:flex;gap:12px}

/* ---------- breadcrumb ---------- */
.breadcrumb{font-size:.82rem;color:var(--c-faint);padding:14px 0}
.breadcrumb a{color:var(--c-muted)}

/* ---------- hero ---------- */
.hero{
  position:relative;overflow:hidden;
  border-radius:var(--radius);
  background:
    linear-gradient(105deg,rgba(13,13,16,.96) 38%,rgba(13,13,16,.55) 100%),
    url("../img/hero.png") center/cover no-repeat;
  border:1px solid var(--c-border);
  padding:64px 48px;margin:6px 0 8px;
}
.hero::after{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 85% 40%,rgba(232,17,60,.22),transparent 55%);
  pointer-events:none;
}
.hero-inner{position:relative;z-index:2;max-width:640px}
.hero h1{
  font-family:var(--font-head);font-weight:400;
  font-size:clamp(2.6rem,6vw,4.6rem);line-height:.95;
  letter-spacing:.01em;margin-bottom:18px;
}
.hero h1 .accent{color:var(--c-red-2)}
.hero p{font-size:1.15rem;color:var(--c-muted);margin-bottom:28px;max-width:520px}

/* ---------- section shell ---------- */
section{padding:42px 0}
.section-head{display:flex;align-items:baseline;gap:14px;margin-bottom:22px}
h2{
  font-family:var(--font-head);font-weight:400;
  font-size:clamp(1.8rem,3.6vw,2.6rem);letter-spacing:.02em;
  line-height:1.05;
}
h2 .bar{display:inline-block;width:34px;height:4px;background:var(--c-red);
  border-radius:3px;vertical-align:middle;margin-right:12px}
h3{
  font-family:var(--font-body);font-weight:800;
  font-size:1.22rem;margin:26px 0 10px;color:#fff;
}
h4{font-weight:800;font-size:1.02rem;margin:18px 0 6px;color:var(--c-gold)}

/* ---------- bonus cards ---------- */
.bonus-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;
}
.bonus-card{
  background:linear-gradient(180deg,var(--c-surface),var(--c-bg-2));
  border:1px solid var(--c-border);border-radius:var(--radius);
  padding:22px 18px;text-align:center;
  transition:border-color .2s,transform .2s;
}
.bonus-card:hover{border-color:var(--c-red);transform:translateY(-4px)}
.bonus-card img{width:96px;height:96px;margin:0 auto 14px;border-radius:12px}
.bonus-card .tier{font-family:var(--font-head);color:var(--c-red-2);
  font-size:1.05rem;letter-spacing:.05em}
.bonus-card .amount{font-weight:800;font-size:1.05rem;margin:6px 0 16px;min-height:48px}

/* ---------- game grids ---------- */
.game-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:16px;
}
.game-card{
  background:var(--c-surface);border:1px solid var(--c-border);
  border-radius:var(--radius-sm);overflow:hidden;
  transition:transform .18s,border-color .18s;position:relative;
}
.game-card:hover{transform:translateY(-4px);border-color:var(--c-red)}
.game-card img{width:100%;aspect-ratio:1/1;object-fit:cover}
.game-card .gc-body{padding:10px 10px 14px;text-align:center}
.game-card .gc-name{font-size:.82rem;color:var(--c-muted);
  display:block;margin-bottom:10px;min-height:32px;line-height:1.25}

/* ---------- article ---------- */
.article{padding-top:18px}
.article p{margin:0 0 16px;color:#d4d4dc}
.article ul,.article ol{margin:0 0 18px 22px;color:#d4d4dc}
.article li{margin-bottom:8px}
.article strong{color:#fff}
.meta-line{font-size:.82rem;color:var(--c-faint);margin-bottom:22px}
.meta-line span{margin-right:18px}

/* ---------- tables ---------- */
.table-scroll{overflow-x:auto;margin:18px 0 26px;
  border:1px solid var(--c-border);border-radius:var(--radius)}
table{width:100%;border-collapse:collapse;font-size:.92rem;min-width:460px}
th,td{padding:12px 16px;text-align:left;border-bottom:1px solid var(--c-border)}
thead th{background:var(--c-surface-2);color:var(--c-gold);
  font-family:var(--font-body);font-weight:800;letter-spacing:.02em}
tbody tr:nth-child(even){background:rgba(255,255,255,.018)}
.glance td:first-child{color:var(--c-red-2);font-weight:700;width:42%}

/* ---------- steps ---------- */
.steps{counter-reset:step;list-style:none;margin:0 0 18px}
.steps li{position:relative;padding:0 0 18px 56px;margin:0}
.steps li::before{
  counter-increment:step;content:counter(step);
  position:absolute;left:0;top:-2px;width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-head);font-size:1.15rem;
  background:linear-gradient(135deg,var(--c-red),var(--c-red-deep));
  color:#fff;border-radius:50%;
}
.steps li .step-title{margin:2px 0 6px;font-size:1.05rem;font-weight:800;color:#fff}

/* ---------- promo banner ---------- */
.promo-banner{margin:8px 0;border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--c-border)}

/* ---------- FAQ ---------- */
.faq details{
  background:var(--c-surface);border:1px solid var(--c-border);
  border-radius:var(--radius-sm);margin-bottom:12px;padding:0 20px;
}
.faq summary{
  cursor:pointer;list-style:none;padding:18px 0;font-weight:800;
  display:flex;justify-content:space-between;align-items:center;gap:14px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";color:var(--c-red-2);font-size:1.5rem;line-height:1}
.faq details[open] summary::after{content:"–"}
.faq details[open]{border-color:var(--c-red)}
.faq details p{padding:0 0 20px;color:#c8c8d2;margin:0}

/* ---------- callout ---------- */
.callout{
  background:linear-gradient(135deg,rgba(232,17,60,.12),rgba(232,17,60,.03));
  border:1px solid rgba(232,17,60,.4);border-left:4px solid var(--c-red);
  border-radius:var(--radius-sm);padding:18px 22px;margin:20px 0;
}
.callout strong{color:var(--c-red-2)}

/* ---------- footer ---------- */
.site-footer{
  background:var(--c-bg-2);border-top:1px solid var(--c-border);
  margin-top:40px;padding:44px 0 30px;
}
.footer-top{display:flex;flex-wrap:wrap;justify-content:space-between;gap:28px;align-items:flex-start}
.footer-top img{height:44px;margin-bottom:14px}
.footer-contacts li{list-style:none;margin-bottom:8px;color:var(--c-muted)}
.footer-note{font-size:.78rem;color:var(--c-faint);margin-top:26px;
  border-top:1px solid var(--c-border);padding-top:20px;line-height:1.7}
.footer-bottom{text-align:center;color:var(--c-faint);font-size:.8rem;margin-top:18px}

/* ---------- floating wheel ---------- */
.wheel-fab{
  position:fixed;right:18px;bottom:18px;z-index:60;
  width:64px;height:64px;border-radius:50%;border:none;cursor:pointer;
  background:radial-gradient(circle at 30% 30%,var(--c-red-2),var(--c-red-deep));
  box-shadow:var(--shadow-red);color:#fff;font-size:.62rem;
  font-family:var(--font-head);letter-spacing:.04em;
  display:flex;align-items:center;justify-content:center;text-align:center;
  animation:pulse 2.4s infinite;
}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(232,17,60,.5)}
  50%{box-shadow:0 0 0 14px rgba(232,17,60,0)}}

/* ---------- responsive ---------- */
@media(max-width:900px){
  .bonus-grid{grid-template-columns:repeat(2,1fr)}
  .hero{padding:46px 26px}
}
@media(max-width:560px){
  .bonus-grid{grid-template-columns:1fr}
  .site-header .wrap{height:64px}
  .logo img{height:36px}
  .header-actions .btn{padding:9px 14px;font-size:.85rem}
  .hero{padding:38px 20px}
}
