/* =========================================================
   Rock'n Reels Casino — Main Stylesheet
   Dark rock-themed casino UI, AU-first
   ========================================================= */

/* ---------- CSS Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  overflow-x: clip;     /* prevent horizontal scroll without breaking position:fixed */
}
body {
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  background: #0b0d12;
  color: #e6e6ea;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #ffb347; text-decoration: none; transition: color .2s ease; }
a:hover { color: #ffd07a; }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: .35rem; }

/* ---------- Theme tokens ---------- */
:root {
  --bg: #0b0d12;
  --bg-2: #11141b;
  --bg-3: #181c25;
  --surface: #1d212c;
  --border: #2a2f3d;
  --text: #e6e6ea;
  --muted: #9ca3af;
  --accent: #ff3d6e;          /* neon pink */
  --accent-2: #ffb347;        /* gold */
  --accent-3: #5eead4;        /* teal */
  --danger: #ef4444;
  --success: #22c55e;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --container: 1200px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: .5px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.5rem); }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: .95rem; text-transform: uppercase; letter-spacing: 1px; }

p { margin: 0 0 1rem; color: #cfd1d6; }
strong { color: #fff; }
small { color: var(--muted); }

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.section {
  padding: 4rem 0;
}
.section-tight { padding: 2.5rem 0; }
.row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff7849 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255,61,110,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,61,110,.5); color: #fff; }
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--accent-2);
}
.btn-secondary:hover { background: var(--accent-2); color: #1a1a1a; }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-sm { padding: .55rem .95rem; font-size: .8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: rgba(11,13,18,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1rem;
  min-height: 64px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo .logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity .2s ease;
}
.logo:hover .logo-img { opacity: .88; }

/* footer variant — slightly larger */
.logo-footer .logo-img { height: 48px; max-width: 240px; }

.main-menu {
  display: flex;
  list-style: none;
  gap: 1.3rem;
  padding: 0;
  margin: 0;
}
.main-menu a {
  color: #d6d8df;
  font-size: .92rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.main-menu a:hover, .main-menu a.active { color: var(--accent-2); }

.header-actions { display: flex; gap: .6rem; align-items: center; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 0;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .main-menu {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    bottom: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    width: 100%;
    background: #0e1118;
    flex-direction: column;
    padding: 1.25rem 1rem 2rem;
    gap: .15rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    z-index: 200;
    box-shadow: -8px 0 24px rgba(0,0,0,.4);
  }
  .main-menu li { margin: 0; }
  .main-menu a {
    display: block;
    padding: .85rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
  }
  .main-menu a:hover, .main-menu a.active {
    background: rgba(255,179,71,.1);
  }
  .main-menu.is-open { transform: translateX(0); }
  .burger { display: block; }
  .logo .logo-img { height: 34px; max-width: 160px; }
}

@media (max-width: 480px) {
  .header-actions .btn-sm { padding: .45rem .7rem; font-size: .72rem; letter-spacing: .5px; }
  .header-actions { gap: .35rem; }
  .logo .logo-img { height: 30px; max-width: 140px; }
  .nav { padding: .55rem 0; min-height: 56px; }
  .main-menu {
    top: 56px;
    height: calc(100vh - 56px);
    height: calc(100dvh - 56px);
  }
}

/* ---------- Hero (centered, single column) ---------- */
.hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(255,61,110,.22) 0%, transparent 70%),
    radial-gradient(60% 60% at 10% 80%, rgba(94,234,212,.15) 0%, transparent 70%),
    linear-gradient(180deg, #0e1118 0%, #0b0d12 100%);
  overflow: hidden;
  text-align: center;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  display: block;
  width: auto;
  height: 120px;
  max-width: 90%;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(255, 61, 110, .25));
}
@media (max-width: 760px) { .hero-logo { height: 80px; margin-bottom: 1.25rem; } }
@media (max-width: 480px) { .hero-logo { height: 64px; } }

.hero-eyebrow {
  display: inline-block;
  padding: .35rem .9rem;
  background: rgba(255,61,110,.15);
  border: 1px solid rgba(255,61,110,.4);
  color: var(--accent);
  border-radius: 999px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 span { color: var(--accent-2); }
.hero-lead {
  font-size: 1.12rem;
  max-width: 680px;
  margin: 0 auto 1.75rem;
  color: #d6d8df;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
  margin-top: .5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 680px;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.7rem; color: var(--accent-2); font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
.hero-stat span { color: var(--muted); font-size: .85rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,179,71,.5); }

.game-card {
  position: relative;
  background: var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s ease;
}
.game-card:hover { transform: translateY(-4px); }
.game-card .thumb {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #2a2f3d, #1a1e28);
  display: grid;
  place-items: center;
  color: var(--accent-2);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  position: relative;
}
.game-card .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,61,110,.2), transparent 60%);
}
.game-card .info {
  padding: .85rem;
  text-align: center;
}
.game-card h4 { font-family: 'Inter', sans-serif; font-size: 1rem; margin: 0; color: #fff; }
.game-card .meta { font-size: .8rem; color: var(--muted); margin-top: .2rem; }
.game-card .play-btn {
  position: absolute;
  inset: 0;
  background: rgba(11,13,18,.7);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .2s ease;
}
.game-card:hover .play-btn { opacity: 1; }

/* ---------- Sections (generic) ---------- */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.section-header p { max-width: 700px; margin: .5rem auto 0; color: var(--muted); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: .95rem;
}
thead { background: linear-gradient(135deg, rgba(255,61,110,.15), rgba(255,179,71,.1)); }
th, td {
  padding: .9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th { color: #fff; font-weight: 700; text-transform: uppercase; font-size: .8rem; letter-spacing: 1px; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(255,255,255,.03); }
td .ok { color: var(--success); }
td .no { color: var(--danger); }

/* ---------- Bonus cards ---------- */
.bonus-card {
  background: linear-gradient(135deg, #1d212c 0%, #181c25 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,61,110,.3), transparent 70%);
}
.bonus-card .tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .2rem .6rem;
  border-radius: 6px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .8rem;
}
.bonus-card .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--accent-2);
  display: block;
  margin: .25rem 0;
}

/* ---------- Provider strip ---------- */
.providers {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.providers .chip {
  padding: .55rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: .85rem;
  transition: color .2s ease, border-color .2s ease;
}
.providers .chip:hover { color: var(--accent-2); border-color: var(--accent-2); }

/* ---------- Tabs ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: .5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.tab-btn {
  background: transparent;
  border: 0;
  padding: .75rem 1.2rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.tab-btn:hover { color: #fff; }
.tab-btn.is-active { color: var(--accent-2); border-bottom-color: var(--accent-2); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- FAQ Accordion ---------- */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.1rem 1.25rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent-2);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item.is-open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 1.25rem;
}
.faq-item.is-open .faq-a { max-height: 600px; padding: 0 1.25rem 1.1rem; }
.faq-a p { color: #c7c9d0; margin-bottom: .5rem; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-backdrop.is-open { display: flex; }
.modal {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 100%;
  max-width: 440px;
  padding: 2rem;
  position: relative;
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal h3 { margin-bottom: .5rem; }
.modal .modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.modal .modal-close:hover { color: var(--accent); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .4rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1rem;
}
.form-group input:focus { outline: none; border-color: var(--accent-2); }
.modal-switch {
  text-align: center;
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--muted);
}
.modal-switch a { color: var(--accent-2); cursor: pointer; }

/* ---------- Page intro (inner pages) ---------- */
.page-intro {
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(255,61,110,.15) 0%, transparent 70%),
    linear-gradient(180deg, #0e1118 0%, #0b0d12 100%);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-intro h1 { margin-bottom: .5rem; }
.page-intro p { max-width: 760px; margin: 0 auto; color: var(--muted); }
.breadcrumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent-2); }

/* ---------- Article content (rich text on inner pages) ---------- */
.content { max-width: 880px; margin: 0 auto; }
.content h2 { margin-top: 2.5rem; }
.content h3 { margin-top: 1.6rem; color: var(--accent-2); }
.content h4 { margin-top: 1.2rem; color: #fff; }
.content ul, .content ol { margin: .5rem 0 1.25rem 1.5rem; }
.content li { color: #c7c9d0; }
.content table { margin: 1.25rem 0; }
.callout {
  background: rgba(255,179,71,.08);
  border-left: 4px solid var(--accent-2);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.callout strong { color: var(--accent-2); }

/* ---------- Footer ---------- */
.site-footer {
  background: #07080c;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h5 { margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: var(--muted); font-size: .9rem; }
.footer-grid a:hover { color: var(--accent-2); }
.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}
.footer-disclaimer .badges {
  display: flex; gap: 1rem; justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.footer-disclaimer .badge {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .4rem .8rem;
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Mobile responsive polish ---------- */
@media (max-width: 860px) {
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero p { font-size: 1rem; }
  .hero-actions { gap: .6rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-lead { font-size: 1rem; }
  .hero-stats { margin-top: 2rem; padding-top: 1.25rem; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 1.5rem, var(--container)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: 1.5rem; padding-top: 1rem; }
  .hero-stat strong { font-size: 1.2rem; }
  .hero-stat span { font-size: .72rem; line-height: 1.3; display: block; }
  .section { padding: 2.5rem 0; }
  .section-tight { padding: 1.5rem 0; }
  .section-header { margin-bottom: 1.75rem; }
  h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  h3 { font-size: 1.25rem; }

  /* tables get edge-to-edge horizontal scroll, no clipping */
  .table-wrap { border-radius: 8px; }
  table { font-size: .85rem; min-width: 480px; }
  th, td { padding: .65rem .7rem; }
  th { font-size: .7rem; letter-spacing: .5px; }

  /* tabs become scrollable horizontally */
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; padding: .65rem .9rem; font-size: .78rem; }

  /* providers chips a bit denser */
  .providers { gap: .45rem; }
  .providers .chip { padding: .4rem .8rem; font-size: .78rem; }

  /* game cards smaller on phones */
  .grid-4 { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .game-card .thumb { font-size: 1.5rem; }
  .game-card h4 { font-size: .9rem; }
  .game-card .meta { font-size: .7rem; }

  /* bonus cards stack nicer */
  .bonus-card { padding: 1.25rem; }
  .bonus-card .amount { font-size: 1.6rem; }

  /* page-intro tighter */
  .page-intro { padding: 2.5rem 0 1.75rem; }
  .breadcrumbs { margin-bottom: .6rem; font-size: .8rem; }

  /* content paddings */
  .content h2 { margin-top: 1.8rem; }
  .content h3 { margin-top: 1.2rem; }
  .content ul, .content ol { margin-left: 1.1rem; }

  /* FAQ a touch smaller */
  .faq-q { padding: .95rem 1rem; font-size: .95rem; }
  .faq-a { padding: 0 1rem; }
  .faq-item.is-open .faq-a { padding: 0 1rem 1rem; }

  /* footer paddings */
  .site-footer { padding: 2rem 0 1.25rem; margin-top: 2.5rem; }
  .footer-disclaimer .badges { gap: .5rem; }
  .footer-disclaimer .badge { font-size: .68rem; padding: .3rem .6rem; }

  /* hero buttons stack to full-width when needed */
  .hero-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 1rem, var(--container)); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .hero-stat:last-child { grid-column: 1 / -1; text-align: center; }
  h1 { font-size: 1.6rem; line-height: 1.2; }
  .hero h1 { font-size: 1.9rem; }
  .hero-eyebrow { font-size: .7rem; letter-spacing: 1px; }

  /* modal full-width-ish */
  .modal { padding: 1.5rem 1.25rem; max-width: 96%; }
  .modal h3 { font-size: 1.4rem; }
  .form-group label { font-size: .75rem; }

  /* tabs */
  .tab-btn { font-size: .72rem; padding: .55rem .75rem; }

  /* buttons full width inside hero */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  /* tighten cards */
  .card { padding: 1.1rem; }
  .bonus-card { padding: 1.1rem; }

  /* badges wrap nicely */
  .footer-disclaimer .badges { flex-wrap: wrap; }

  /* logo-footer slightly smaller on tiny screens */
  .logo-footer .logo-img { height: 40px; }
}

/* Touch-friendly hit areas for any device with no-hover */
@media (hover: none) {
  .game-card .play-btn { display: none; }
  .btn { -webkit-tap-highlight-color: transparent; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.muted { color: var(--muted); }
.accent { color: var(--accent-2); }
.flex-center { display: flex; align-items: center; justify-content: center; }
