/* ===========================
   YETI CASINO — style.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

/* ---- TOKENS ---- */
:root {
  --bg-dark:       #0a0e14;
  --bg-card:       #111820;
  --bg-card2:      #161e28;
  --accent:        #00c8ff;
  --accent2:       #0af0b0;
  --accent-glow:   rgba(0,200,255,.18);
  --gold:          #f5c842;
  --text:          #e8edf3;
  --text-muted:    #7a8fa6;
  --border:        rgba(0,200,255,.18);
  --radius:        12px;
  --radius-lg:     20px;
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Open Sans', sans-serif;
  --max-w:         1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }
ul { list-style: none; }
img { display: none !important; }

/* ---- UTILS ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.text-accent  { color: var(--accent); }
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }

/* ===========================
   PROMO BANNER — TOP STRIP
   =========================== */
.promo-strip {
  background: linear-gradient(90deg, #003d52 0%, #00c8ff22 50%, #003d52 100%);
  border-bottom: 2px solid var(--accent);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.promo-strip p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  color: #fff;
}
.promo-strip span { color: var(--accent); }

/* ===========================
   HEADER / NAV
   =========================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,20,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

/* ---- LOGO ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: .04em;
}
.logo-text span { color: var(--accent); display: block; }
.logo-text em   { color: var(--text-muted); font-size: .65rem; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }

/* ---- NAV ---- */
nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
nav a:hover { color: var(--accent); background: var(--accent-glow); }

/* ---- CTA BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #007aab);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,200,255,.35);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(0,200,255,.55); color: #fff; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c99400);
  color: #0a0e14;
  box-shadow: 0 4px 18px rgba(245,200,66,.3);
}
.btn-gold:hover { box-shadow: 0 6px 28px rgba(245,200,66,.5); color: #0a0e14; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent-glow); }
.btn-lg { font-size: 1.05rem; padding: 14px 32px; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0,200,255,.12) 0%, transparent 70%),
    linear-gradient(180deg, #0a1825 0%, var(--bg-dark) 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,200,255,.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero h1 .hl {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- YETI SVG MASCOT ---- */
.yeti-mascot {
  margin: 50px auto 0;
  max-width: 340px;
  width: 90%;
}

/* ---- TRUST BADGES ---- */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 14px;
}
.trust-badge svg { flex-shrink: 0; }

/* ===========================
   SECTIONS — general
   =========================== */
section { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.section-head p { color: var(--text-muted); max-width: 580px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ===========================
   GAME GRID
   =========================== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,200,255,.15); }
.game-card-art {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  background: var(--bg-card2);
  border-bottom: 1px solid var(--border);
}
.game-card-body { padding: 14px 16px; }
.game-card-body h3 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.game-card-body p { font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }
.game-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
  background: rgba(0,200,255,.12);
  color: var(--accent);
  border: 1px solid var(--border);
}

/* ===========================
   FEATURES GRID
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.feature-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,200,255,.1); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p { font-size: .86rem; color: var(--text-muted); }

/* ===========================
   REVIEW SECTION — long text
   =========================== */
.review-section { background: var(--bg-card2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}
.review-text h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.review-text h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--accent2);
}
.review-text p { font-size: .95rem; color: var(--text-muted); margin-bottom: 14px; }
.review-text ul { margin: 10px 0 14px 16px; }
.review-text ul li {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}
.review-text ul li::before {
  content: '›';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ---- SIDEBAR SCORECARD ---- */
.scorecard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: sticky;
  top: 80px;
}
.scorecard h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.score-total {
  text-align: center;
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.score-total span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.score-label { text-align: center; font-size: .78rem; color: var(--text-muted); margin-bottom: 20px; }
.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}
.score-row span:first-child { font-size: .82rem; color: var(--text-muted); flex-shrink: 0; }
.score-bar { flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 6px; overflow: hidden; }
.score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 6px; }
.score-num { font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--accent); flex-shrink: 0; }
.scorecard .btn { width: 100%; margin-top: 20px; }

/* ===========================
   BONUS TABLE
   =========================== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bonus-table { width: 100%; border-collapse: collapse; min-width: 600px; font-size: .88rem; }
.bonus-table thead tr { background: rgba(0,200,255,.1); border-bottom: 2px solid var(--accent); }
.bonus-table thead th { font-family: var(--font-head); font-weight: 700; padding: 14px 16px; text-align: left; color: var(--accent); }
.bonus-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.bonus-table tbody tr:hover { background: rgba(255,255,255,.03); }
.bonus-table tbody td { padding: 13px 16px; color: var(--text-muted); }
.bonus-table tbody td:first-child { color: var(--text); font-weight: 600; }
.badge-new { background: rgba(10,240,176,.15); color: var(--accent2); border: 1px solid rgba(10,240,176,.3); font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-left: 6px; text-transform: uppercase; }
.badge-hot { background: rgba(255,100,60,.15); color: #ff6c3c; border: 1px solid rgba(255,100,60,.3); font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-left: 6px; text-transform: uppercase; }

/* ===========================
   PAYMENT METHODS
   =========================== */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color .2s;
}
.payment-card:hover { border-color: var(--accent); }
.payment-icon { font-size: 1.8rem; margin-bottom: 8px; }
.payment-card p { font-size: .78rem; color: var(--text-muted); font-weight: 600; }

/* ===========================
   MID-PAGE PROMO BANNER
   =========================== */
.mid-banner {
  background: linear-gradient(135deg, #003d52 0%, #001f2e 60%, #0a0e14 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.mid-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,.15) 0%, transparent 70%);
}
.mid-banner-text { position: relative; z-index: 1; }
.mid-banner-text h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.mid-banner-text p { color: var(--text-muted); font-size: .92rem; }
.mid-banner-cta { position: relative; z-index: 1; }

/* ===========================
   PROS / CONS
   =========================== */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.proscons-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.proscons-card.pros { border-top: 3px solid var(--accent2); }
.proscons-card.cons { border-top: 3px solid #ff6c3c; }
.proscons-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.proscons-card.pros h3 { color: var(--accent2); }
.proscons-card.cons h3 { color: #ff6c3c; }
.proscons-list { display: flex; flex-direction: column; gap: 10px; }
.proscons-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .87rem;
  color: var(--text-muted);
}
.pros-dot { color: var(--accent2); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.cons-dot { color: #ff6c3c; font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ===========================
   FAQ
   =========================== */
.faq-section { background: var(--bg-card2); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--bg-card);
  transition: background .2s;
  gap: 14px;
}
.faq-q:hover { background: rgba(0,200,255,.06); }
.faq-q h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
}
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0,200,255,.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform .3s, background .2s;
  user-select: none;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  background: var(--bg-dark);
}
.faq-body-inner { padding: 0 22px 18px; font-size: .9rem; color: var(--text-muted); }
.faq-item.open .faq-body { max-height: 600px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(0,200,255,.2); }

/* ===========================
   RESPONSIBLE GAMBLING
   =========================== */
.rg-section { background: var(--bg-card2); border-top: 1px solid var(--border); }
.rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.rg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}
.rg-icon { font-size: 1.8rem; margin-bottom: 10px; }
.rg-card h3 { font-family: var(--font-head); font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.rg-card p { font-size: .78rem; color: var(--text-muted); }

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #060a0f;
  border-top: 1px solid var(--border);
  padding: 50px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-col p { font-size: .82rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 22px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .78rem;
  color: var(--text-muted);
}
.footer-legal { max-width: 900px; font-size: .73rem; color: #3a4a5a; text-align: center; margin: 16px auto 0; line-height: 1.6; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .review-layout { grid-template-columns: 1fr; }
  .scorecard { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .proscons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  nav { display: none; }
  .header-inner { justify-content: space-between; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .mid-banner { padding: 28px 22px; }
  .mid-banner-text h2 { font-size: 1.2rem; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.9rem; }
  section { padding: 48px 0; }
  .promo-strip { gap: 10px; }
}

@media (max-width: 420px) {
  .game-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .features-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: repeat(3, 1fr); }
}
