/* ============================================================
   FSCASINO.PL – Classic Dark Theme
   Red buttons | Blue accents | Dark navy background
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --red:          #d40000;
  --red-hover:    #ff1a1a;
  --blue:         #1a6fd4;
  --blue-light:   #3b8fef;
  --gold:         #f5c518;          /* badge/highlight accent */

  --bg-page:      #0b0d14;
  --bg-card:      #13172a;
  --bg-nested:    #1c2138;
  --bg-header:    #0d1020;
  --bg-footer:    #080a14;

  --text:         #e8eaf2;
  --text-muted:   #9ea3b8;
  --text-head:    #ffffff;
  --text-link:    #3b8fef;

  --border:       #252a45;
  --border-blue:  #1a6fd4;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   0.25s ease;
  --max-w:        1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  background: var(--bg-page);
  color: var(--text);
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-light); }
ul, ol { padding-left: 1.5rem; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { color: var(--text-head); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 1rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); margin-bottom: .5rem; margin-top: 1.5rem; }
p  { margin-bottom: 1rem; }
li { margin-bottom: .25rem; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--blue); color: #fff;
  padding: .5rem 1rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999; font-weight: 700; transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-header);
  border-bottom: 2px solid var(--border-blue);
  box-shadow: 0 2px 20px rgba(26,111,212,.2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem 1rem; max-width: var(--max-w); margin: 0 auto; gap: 1rem;
}
.site-logo img { height: 50px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a {
  color: var(--text); font-weight: 500; font-size: .95rem;
  padding: .25rem .5rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover { color: var(--blue-light); background: rgba(26,111,212,.1); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: .5rem;
}
.nav-toggle span {
  display: block; width: 25px; height: 3px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition); margin: 5px 0;
}

/* ── Buttons (only .btn-primary, .btn-secondary, .slot-play-btn in markup) ── */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 3px; }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 15px rgba(212,0,0,.4);
}
.btn-primary:hover {
  background: var(--red-hover); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,0,0,.5);
}
.btn-secondary {
  background: transparent; color: var(--blue-light);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: #fff; }
.faq-answer .btn-primary {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}
.bonus-highlight .btn-primary {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  padding: 12px 14px;
  font-size: clamp(0.85rem, 2.8vw, 1.05rem);
  overflow-wrap: break-word;
  word-break: normal;
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: .5rem 0;
}
.breadcrumbs ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .25rem;
  font-size: .875rem; align-items: center;
}
.breadcrumbs li { display: flex; align-items: center; color: var(--text-muted); margin-bottom: 0; }
.breadcrumbs li + li::before { content: '›'; margin-right: .25rem; color: var(--text-muted); }
.breadcrumbs a { color: var(--blue-light); }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ── Hero / Banner ──
   The <img> drives the container height – no cropping at all.
   Overlay and content card are positioned absolutely on top.        */
.hero {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-page);
}
/* Full-width image – never cropped, always shows complete */
.hero-bg {
  width: 100%; height: auto; display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,13,20,.68) 0%, rgba(13,16,32,.45) 100%);
  z-index: 1;
}
/* Content card pinned to the bottom of the banner */
.hero-content {
  position: absolute;
  bottom: 2.5rem;
  left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center;
  background: rgba(11,13,30,.78);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(26,111,212,.35);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2.5rem;
  max-width: 560px; width: calc(100% - 2rem);
  box-sizing: border-box;
}
.hero-content h1 {
  font-size: clamp(1.05rem, 4.2vw, 1.7rem);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  margin-bottom: .6rem;
  line-height: 1.25;
}
.hero-tagline {
  font-size: clamp(0.88rem, 3.2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.hero-bonus {
  display: inline-block; background: var(--blue); color: #fff;
  font-size: clamp(0.88rem, 3.5vw, 1.3rem); font-weight: 800;
  padding: .4rem 1rem; border-radius: var(--radius-md);
  margin-bottom: 1rem; letter-spacing: .5px;
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
  box-sizing: border-box;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ── Section decorators ── */
.section-label {
  display: inline-block; background: var(--blue); color: #fff;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 3px 12px;
  border-radius: var(--radius-sm); margin-bottom: .5rem;
}
.section-divider {
  border: none; border-top: 2px solid var(--border);
  margin: 2rem 0; opacity: .5;
}
.section-divider-red {
  border: none; border-top: 2px solid var(--red);
  margin: 2rem 0; opacity: .4;
}

/* ── Popular Slots ── */
.slots-section { background: var(--bg-card); padding: 2.5rem 0; }
.slots-section .section-title {
  text-align: center; margin-bottom: 1.5rem;
  font-size: clamp(1.4rem,3vw,2rem); position: relative;
}
.slots-section .section-title::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--red); margin: .5rem auto 0; border-radius: 2px;
}
/* Desktop: 6 per row */
.slots-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.slot-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-nested);
  cursor: pointer; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.slot-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 30px rgba(26,111,212,.35); border-color: var(--blue);
}
.slot-card img { width: 100%; height: auto; display: block; border-radius: var(--radius-md); }
.slot-card-overlay {
  position: absolute; inset: 0; background: rgba(11,13,30,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition); border-radius: var(--radius-md);
}
.slot-card:hover .slot-card-overlay { opacity: 1; }
.slot-play-btn {
  background: var(--red); color: #fff; font-weight: 700;
  font-size: .9rem; padding: 10px 22px; border-radius: var(--radius-sm);
}
/* Mobile scroll strip */
.slots-scroll-wrapper {
  display: none; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 0 0 .75rem;
  margin: 0 -0.25rem;
  scroll-snap-type: x mandatory;
  max-width: 100%;
  scrollbar-color: var(--red) var(--bg-nested);
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
}
.slots-scroll-inner {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  padding: 0 0.25rem 4px;
}
.slots-scroll-inner .slot-card {
  width: clamp(148px, 42vw, 200px);
  flex-shrink: 0;
  scroll-snap-align: start;
}
.slots-scroll-inner .slot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ── Content + Sidebar layout ── */
.content-section { padding: 2.5rem 0; }
.content-section .container {
  display: grid; grid-template-columns: 1fr minmax(0,260px);
  gap: 2.5rem; align-items: start;
}
.content-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1.5rem;
  min-width: 0;
}
.sidebar-card h3 {
  font-size: 1rem; color: var(--blue-light); margin-bottom: 1rem; margin-top: 0;
  text-transform: uppercase; letter-spacing: .5px;
}
.sidebar-nav a {
  display: block; padding: .25rem 0; color: var(--text-muted);
  font-size: .9rem; border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover { color: var(--blue-light); padding-left: .25rem; }
.bonus-highlight { text-align: center; }
.bonus-highlight .bonus-amount {
  font-size: 1.4rem; font-weight: 800; color: var(--blue-light); margin-bottom: .25rem;
}
.bonus-highlight p { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ── Text+Image block ── */
.text-img-section { padding: 2.5rem 0; }
.text-img-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.text-img-grid > * {
  min-width: 0;
}
.text-img-grid img {
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  width: 100%;
  height: auto;
  display: block;
}
.text-img-grid > div:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-nested) 0%, rgba(26,111,212,.15) 100%);
  border: 1px solid var(--border-blue); border-radius: var(--radius-md);
  padding: 2rem; text-align: center; margin: 2rem 0;
}
.cta-banner h3 { color: var(--text-head); margin-bottom: .5rem; margin-top: 0; }
.cta-banner p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ── Feature cards ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 1.5rem; margin: 1.5rem 0;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem; text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.feature-icon { font-size: 2rem; margin-bottom: .5rem; }
.feature-title { font-weight: 700; color: var(--blue-light); margin-bottom: .25rem; }
.feature-desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 0; }

/* ── Tables ── */
.table-responsive {
  width: 100%; max-width: 100%; overflow-x: auto;
  -webkit-overflow-scrolling: touch; border-radius: var(--radius-md);
  border: 1px solid var(--border); margin-bottom: 1.5rem;
}
table { width: 100%; min-width: 480px; border-collapse: collapse; background: var(--bg-card); }
thead { background: var(--bg-nested); border-bottom: 2px solid var(--blue); }
th {
  padding: 1rem; text-align: left; font-weight: 700;
  color: var(--blue-light); font-size: .9rem; text-transform: uppercase;
  letter-spacing: .5px; white-space: nowrap;
}
td { padding: 1rem; border-bottom: 1px solid var(--border); color: var(--text); font-size: .95rem; vertical-align: top; }
tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: rgba(255,255,255,.025); }
tbody tr:hover { background: rgba(26,111,212,.08); }
.table-scroll-hint {
  display: none; font-size: .8rem; color: var(--text-muted);
  text-align: right; margin-bottom: .25rem;
}

/* ── FAQ ── */
.faq-section { background: var(--bg-card); padding: 2.5rem 0; }
.faq-list { list-style: none; padding: 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 1rem; overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--blue); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; cursor: pointer; background: var(--bg-nested);
  font-weight: 600; user-select: none; gap: 1rem; list-style: none;
}
.faq-question::marker, .faq-question::-webkit-details-marker { display: none; }
.faq-question strong { color: var(--text-head); }
.faq-icon { color: var(--blue-light); font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 1rem 1.5rem; color: var(--text);
  background: var(--bg-card); border-top: 1px solid var(--border);
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-footer); border-top: 2px solid var(--border-blue);
  padding: 2.5rem 0 1.5rem;
}
.footer-brand p { font-size: .875rem; color: var(--text-muted); }
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.payment-logos { border-top: 1px solid var(--border); padding-top: 1.5rem; margin: 1.5rem 0; }
.payment-logos h4 {
  color: var(--text-muted); font-size: .85rem; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 1rem;
}
.payment-grid { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.payment-logo {
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 6px 10px;
  display: flex; align-items: center; justify-content: center; height: 36px;
  transition: background var(--transition), border-color var(--transition);
}
.payment-logo:hover { background: rgba(255,255,255,.12); border-color: var(--blue); }
.payment-logo img {
  height: 22px; width: auto;
  filter: brightness(.9) saturate(.8);
  transition: filter var(--transition);
}
.payment-logo:hover img { filter: brightness(1.1) saturate(1); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1rem;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); margin: 0; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal-links a { font-size: .8rem; color: var(--text-muted); }
.footer-legal-links a:hover { color: var(--blue-light); }
.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-size: .75rem;
  font-weight: 700; color: var(--text-muted); flex-shrink: 0;
}
.gambling-warning {
  background: rgba(212,0,0,.08); border-top: 1px solid rgba(212,0,0,.25);
  padding: .5rem 0; text-align: center;
}
.gambling-warning p { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* ── Back-to-top ── */
#back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--blue); color: #fff; border: none; border-radius: 50%;
  width: 46px; height: 46px; font-size: 1.3rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 500; box-shadow: 0 4px 15px rgba(26,111,212,.5);
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); background: var(--blue-light); }

/* ── Mobile nav overlay ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.5); opacity: 0;
  transition: opacity var(--transition); pointer-events: none;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0;
  width: min(300px,85vw); height: 100%;
  background: var(--bg-card); border-left: 2px solid var(--blue);
  padding: max(2.5rem, calc(env(safe-area-inset-top, 0px) + 1.25rem)) max(1.5rem, env(safe-area-inset-right, 0px)) 2.5rem max(1.5rem, env(safe-area-inset-left, 0px));
  transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  background: none; border: none; color: var(--text);
  font-size: 1.5rem; cursor: pointer;
  position: absolute; top: 1rem; right: 1rem;
}
.mobile-nav-links { list-style: none; padding: 0; margin-top: 2.5rem; }
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a {
  display: block; padding: 1rem 0; color: var(--text);
  font-size: 1rem; font-weight: 500;
}
.mobile-nav-links a:hover { color: var(--blue-light); }

/* ── Policy pages ── */
.policy-page { padding: 2.5rem 0 4rem; }
.policy-content h1 {
  border-bottom: 2px solid var(--blue); padding-bottom: 1rem; margin-bottom: 2.5rem;
}
.policy-content h2 {
  color: var(--blue-light); border-left: 4px solid var(--red); padding-left: 1rem;
}
.policy-content section {
  margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.policy-content section:last-child { border-bottom: none; }
.policy-toc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 2.5rem;
}
.policy-toc h3 {
  margin-top: 0; color: var(--blue-light); font-size: .9rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.policy-toc a { color: var(--text-muted); font-size: .9rem; }
.policy-toc a:hover { color: var(--blue-light); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .content-section .container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px));
  }
  .content-sidebar { position: static; order: -1; }
  .content-article { min-width: 0; }
}

@media (max-width: 768px) {
  .site-nav, .btn-header { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav { display: block; }
  .header-inner {
    padding-inline: max(0.75rem, env(safe-area-inset-left, 0px)) max(0.75rem, env(safe-area-inset-right, 0px));
    padding-top: max(0.25rem, env(safe-area-inset-top, 0px));
  }
  .hero-content {
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 1.15rem;
    border-radius: var(--radius-lg);
    background: rgba(11,13,30,.93);
    width: calc(100% - max(2rem, env(safe-area-inset-left, 0px) + env(safe-area-inset-right, 0px)));
    max-width: min(520px, 100% - 1.5rem);
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.65rem;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: none;
    white-space: normal;
    line-height: 1.35;
    padding: 14px 18px;
    box-sizing: border-box;
  }
  .slots-section { padding: 1.75rem 0; }
  .slots-section .container { padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px)); }
  .slots-grid { display: none; }
  .slots-scroll-wrapper { display: block; }
  .table-scroll-hint { display: block; }
  .text-img-section { padding: 1.5rem 0; }
  .text-img-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    align-items: stretch;
  }
  /* Image above copy on small screens — avoids huge table pushing visual far down */
  .text-img-grid > div:last-child {
    order: -1;
    margin-bottom: 0.25rem;
  }
  .text-img-grid img {
    width: 100%;
    max-width: min(420px, 100%);
    margin-inline: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 28px rgba(0,0,0,.45);
  }
  .table-responsive {
    max-width: 100%;
    margin-inline: 0;
    border-radius: var(--radius-sm);
  }
  table { min-width: 520px; }
  body, html { width: 100%; max-width: 100vw; }
  .container { max-width: 100%; padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px)); }
  #back-to-top {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }
  .cta-banner { padding: 1.35rem 1rem; margin: 1.5rem 0; }
  .cta-banner .btn-primary {
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .faq-question { padding: 0.85rem 1rem; font-size: 0.95rem; }
  .faq-answer { padding: 0.85rem 1rem; }
  .faq-answer .btn-primary {
    white-space: normal;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .payment-grid { justify-content: center; gap: 0.4rem; }
  .payment-logo { padding: 5px 8px; height: 34px; }
  .payment-logo img { height: 20px; }
  .site-footer .container { padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px)); }
  .sidebar-card { padding: 1.15rem 1rem; }
  .content-article .btn-primary,
  .content-article .btn-secondary {
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .policy-content .btn-primary,
  .policy-content .btn-secondary {
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .text-img-grid .btn-primary,
  .text-img-grid .btn-secondary {
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .hero-content {
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    padding: 0.85rem 0.9rem;
    background: rgba(11,13,30,.93);
  }
  .content-section { padding: 1.5rem 0; }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; margin-top: 1.75rem; }
  h3 { font-size: 1.05rem; }
  .btn-primary,
  .btn-secondary {
    padding: 13px 18px;
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.35;
  }
  .bonus-highlight .btn-primary {
    font-size: 0.9rem;
    padding: 11px 12px;
  }
  .slots-section .section-title { font-size: 1.25rem; margin-bottom: 1rem; }
  .slots-scroll-inner { gap: 0.5rem; }
  .slots-scroll-inner .slot-card { width: clamp(140px, 44vw, 180px); }
  .text-img-section { padding: 1.25rem 0; }
  .text-img-grid { gap: 1rem; }
  .text-img-grid img {
    max-width: 100%;
    border-radius: var(--radius-sm);
  }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }
  .gambling-warning p { font-size: 0.72rem; padding-inline: 0.5rem; }
}
