/* Mafia Casino */
:root {
  --bg-primary: #1a0e24;
  --bg-secondary: #140c1e;
  --bg-sidebar: #0f0818;
  --bg-card: #2a1a3a;
  --bg-card-hover: #3a2650;
  --accent-magenta: #e81e7a;
  --accent-purple: #8b5a94;
  --accent-gold: #d4b15a;
  --accent-cyan: #ff75c8;
  --text-primary: #f7f2f0;
  --text-secondary: #c4b8d0;
  --text-muted: #8a7a9a;
  --gradient-btn: linear-gradient(135deg, #e81e7a, #9b44c8);
  --shadow-neon: 0 0 20px rgba(232,30,122,0.25), 0 0 60px rgba(139,90,148,0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: .25s ease;
  --sidebar-w: 230px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold); }
ul, ol { list-style: none; }

/* Layout */
.site-layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Sidebar */
.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg-sidebar);
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column;
  z-index: 100;
  overflow-y: auto; overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
  flex-shrink: 0;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.sidebar-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 22px 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.sidebar-logo img { height: 46px; width: auto; }

.sidebar-nav { flex: 1; padding: 10px 0; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 22px;
  color: var(--text-muted);
  font-size: .86rem; font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
  white-space: nowrap;
}
.sidebar-nav a:hover {
  color: var(--text-primary);
  background: rgba(232,30,122,0.06);
}
.sidebar-nav a.active {
  color: var(--text-primary);
  background: rgba(232,30,122,0.1);
  border-left-color: var(--accent-magenta);
}
.sidebar-nav a i { width: 20px; text-align: center; font-size: .95rem; flex-shrink: 0; }

.sidebar-cta { padding: 14px 16px 20px; flex-shrink: 0; }
.sidebar-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--gradient-btn); color: #fff;
  font-weight: 700; font-size: .88rem;
  box-shadow: 0 4px 18px rgba(232,30,122,0.3);
  transition: all var(--transition);
}
.sidebar-cta a:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 6px 28px rgba(232,30,122,0.45);
}

/* Main area */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-width: 0;
  max-width: 100%;
  width: calc(100% - var(--sidebar-w));
}

/* Top bar */
.top-bar {
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  padding: 10px 28px;
  background: rgba(15,8,24,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  min-height: 52px;
  width: 100%;
  max-width: 100%;
}
.top-bar .burger { margin-right: auto; }
.top-bar-logo { display: none; margin-right: auto; }
.top-bar-logo img { height: 32px; width: auto; }
.top-bar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.top-bar-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 22px; border-radius: 50px;
  background: var(--gradient-btn); color: #fff;
  font-weight: 600; font-size: .84rem;
  box-shadow: 0 3px 14px rgba(232,30,122,0.28);
  transition: all var(--transition);
  white-space: nowrap;
}
.top-bar-cta:hover { transform: translateY(-1px); color: #fff; box-shadow: 0 5px 22px rgba(232,30,122,0.42); }
.top-bar-link {
  color: var(--text-muted); font-size: .84rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.top-bar-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }

/* Hero */
/* Desktop: banner bg + centred text */
.hero {
  position: relative; overflow: hidden; width: 100%;
  background: var(--bg-secondary);
}

.hero-banner {
  position: relative; width: 100%;
  aspect-ratio: 3.5/1;
  max-height: 400px;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/hero-banner.jpg') center center / cover no-repeat;
}
.hero-banner-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(15,8,24,0.55) 0%, rgba(15,8,24,0.2) 50%, transparent 80%),
    linear-gradient(to top, var(--bg-primary) 0%, transparent 30%);
}

/* Desktop: text overlay */
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 36px 44px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}
.hero h1 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero h1 em { font-style: normal; color: var(--accent-gold); }
.hero-text {
  font-size: .9rem; color: rgba(255,255,255,0.82);
  line-height: 1.72; margin-bottom: 22px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero .cta-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 34px; border-radius: 50px;
  background: var(--accent-gold); color: #0a0a12;
  font-size: .92rem; font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(212,177,90,0.32);
}
.hero .cta-btn:hover {
  transform: translateY(-2px); color: #0a0a12;
  box-shadow: 0 6px 28px rgba(212,177,90,0.5);
}

/* Sections */
.section {
  padding: 56px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.section:last-of-type { border-bottom: none; }

.section-header { text-align: center; margin-bottom: 36px; }
.section-header h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700; margin-bottom: 10px;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.section-header h2 span { color: var(--accent-magenta); }
.section-header p {
  color: var(--text-secondary); max-width: 580px;
  margin: 0 auto; font-size: .92rem; line-height: 1.65;
}

.section-body {
  max-width: 1060px; margin: 0 auto;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.content-text {
  color: var(--text-secondary); font-size: .93rem;
  max-width: 840px; margin: 0 auto 26px;
  line-height: 1.78; text-align: justify;
  hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.content-text strong { color: var(--text-primary); font-weight: 600; }

/* Features */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin: 26px 0;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-card); padding: 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.04);
  min-width: 0;
}
.feature-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232,30,122,0.12);
  transform: translateY(-2px);
}
.feature-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gradient-btn);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: #fff;
}
.feature-item > div:last-child { min-width: 0; flex: 1; }
.feature-item h3 {
  font-size: .92rem; font-weight: 600; margin-bottom: 4px;
  word-wrap: break-word; overflow-wrap: break-word;
}
.feature-item p {
  font-size: .83rem; color: var(--text-muted); line-height: 1.6;
  word-wrap: break-word; overflow-wrap: break-word;
}

/* Tables */
.info-table-wrap {
  overflow-x: auto; margin: 26px 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.info-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.info-table thead { background: var(--bg-card); }
.info-table th {
  padding: 12px 16px; text-align: left;
  font-weight: 600; color: var(--accent-gold);
  white-space: nowrap; font-size: .84rem;
}
.info-table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.info-table tbody tr:hover { background: rgba(232,30,122,0.03); }
.info-table tbody tr:last-child td { border-bottom: none; }

/* Tabs */
.cat-tabs {
  display: flex; gap: 7px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 22px;
}
.cat-tab {
  padding: 7px 16px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent; color: var(--text-secondary);
  font-size: .8rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}
.cat-tab:hover, .cat-tab.active {
  background: var(--gradient-btn); color: #fff;
  border-color: transparent;
}

/* Bonus cards */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 26px 0;
}
.bonus-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 24px 22px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  position: relative; overflow: hidden;
  min-width: 0;
}
.bonus-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gradient-btn);
}
.bonus-card:hover {
  border-color: rgba(232,30,122,0.18);
  transform: translateY(-2px);
}
.bonus-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.bonus-card .bonus-value {
  font-size: 1.4rem; font-weight: 800;
  color: var(--accent-gold); margin-bottom: 10px;
  word-wrap: break-word; overflow-wrap: break-word;
}
.bonus-card p {
  font-size: .83rem; color: var(--text-muted); line-height: 1.7;
  word-wrap: break-word; overflow-wrap: break-word;
}
.bonus-card .bonus-btn {
  display: inline-block; margin-top: 14px;
  padding: 9px 24px; border-radius: 50px;
  background: var(--gradient-btn); color: #fff;
  font-weight: 600; font-size: .83rem;
  transition: all var(--transition);
}
.bonus-card .bonus-btn:hover {
  box-shadow: 0 4px 18px rgba(232,30,122,0.35);
  color: #fff;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 26px 0;
}
.step-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 24px 18px; text-align: center;
  counter-increment: step;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
  min-width: 0;
}
.step-card:hover {
  border-color: rgba(139,90,148,0.18);
  transform: translateY(-2px);
}
.step-card::before {
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gradient-btn);
  font-size: 1.1rem; font-weight: 800; color: #fff;
}
.step-card h3 { font-size: .92rem; font-weight: 600; margin-bottom: 6px; }
.step-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

.steps-grid { counter-reset: step; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; width: 100%; }
.faq-item {
  background: var(--bg-card); border-radius: var(--radius);
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; cursor: pointer;
  font-weight: 600; font-size: .9rem;
  transition: background var(--transition);
  gap: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.faq-q:hover { background: var(--bg-card-hover); }
.faq-q::after {
  content: '+'; font-size: 1.2rem; color: var(--accent-magenta);
  flex-shrink: 0; transition: transform var(--transition);
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
  color: var(--text-secondary); font-size: .86rem; line-height: 1.75;
  word-wrap: break-word; overflow-wrap: break-word;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 20px 16px; }

/* Loyalty tiers */
.loyalty-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px; margin: 26px 0;
}
.tier-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 20px 14px; text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
  min-width: 0;
}
.tier-card:hover {
  border-color: rgba(212,177,90,0.18);
  transform: translateY(-2px);
}
.tier-icon { font-size: 1.7rem; margin-bottom: 10px; }
.tier-card h3 {
  font-size: .88rem; font-weight: 700;
  margin-bottom: 6px; color: var(--accent-gold);
}
.tier-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.55; }

/* Payments */
.payment-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin: 26px 0;
}
.payment-badge {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg-card); padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: .83rem; font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  white-space: nowrap;
}
.payment-badge:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,117,200,0.15);
}
.payment-badge i { color: var(--accent-cyan); font-size: .95rem; }

/* Footer */
.site-footer {
  background: var(--bg-sidebar);
  padding: 44px 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px; max-width: 1060px;
  margin: 0 auto; padding-bottom: 26px;
}
.footer-col { min-width: 0; }
.footer-col h4 {
  font-size: .88rem; font-weight: 700;
  margin-bottom: 14px; color: var(--accent-gold);
}
.footer-col a {
  display: block; padding: 3px 0;
  font-size: .82rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-primary); }
.footer-col p {
  font-size: .8rem; color: var(--text-muted); line-height: 1.7;
  word-wrap: break-word; overflow-wrap: break-word;
}
.footer-bottom {
  text-align: center; padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  max-width: 1060px; margin: 0 auto;
}
.footer-bottom p {
  font-size: .76rem; color: var(--text-muted); line-height: 1.6;
  word-wrap: break-word; overflow-wrap: break-word;
}
.footer-badges {
  display: flex; gap: 10px; justify-content: center;
  margin-bottom: 14px; flex-wrap: wrap;
}
.footer-badges span {
  padding: 5px 12px; border-radius: 50px;
  font-size: .7rem; font-weight: 600;
  background: var(--bg-card); color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh; height: 100dvh;
  background: var(--bg-sidebar);
  z-index: 300;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: flex; }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.mobile-nav-header img { height: 36px; width: auto; }
.mobile-close {
  background: none; border: none;
  color: var(--text-muted); font-size: 1.6rem;
  cursor: pointer; padding: 6px;
  transition: color var(--transition);
}
.mobile-close:hover { color: var(--text-primary); }

.mobile-nav-links {
  flex: 1; display: flex; flex-direction: column;
  padding: 12px 0;
}
.mobile-nav-links a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px;
  font-size: .95rem; font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.mobile-nav-links a:hover {
  color: var(--text-primary);
  background: rgba(232,30,122,0.06);
  border-left-color: var(--accent-magenta);
}
.mobile-nav-links a i { width: 20px; text-align: center; font-size: .95rem; flex-shrink: 0; }

.mobile-nav-footer {
  padding: 16px 20px; flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-footer a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--gradient-btn); color: #fff;
  font-weight: 700; font-size: .92rem;
  box-shadow: 0 4px 18px rgba(232,30,122,0.3);
  transition: all var(--transition);
}
.mobile-nav-footer a:hover {
  transform: translateY(-1px); color: #fff;
  box-shadow: 0 6px 26px rgba(232,30,122,0.45);
}

/* Tablet */
@media (max-width: 1024px) {
  :root { --sidebar-w: 200px; }
  .main-content { width: calc(100% - var(--sidebar-w)); }

  .section { padding: 48px 24px; }
  .hero-content { padding: 32px 28px 36px; }
  .feature-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .loyalty-tiers { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Hide sidebar, full width content */
  .sidebar { display: none; }
  .main-content {
    margin-left: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .site-layout {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .burger { display: flex; }

  /* Top bar — burger + logo + CTA */
  .top-bar {
    justify-content: flex-start;
    padding: 10px 16px;
    gap: 8px;
    min-height: 50px;
    max-width: 100%;
  }
  .top-bar-logo { display: flex; }
  .top-bar-link { display: none; }
  .top-bar-right { margin-left: auto; }

  /* Hero stacked */
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-banner {
    aspect-ratio: 21/9;
    max-height: 220px;
    flex-shrink: 0;
  }
  .hero-bg-wrap {
    background-position: center center;
  }
  .hero-banner-overlay {
    background:
      linear-gradient(to top, var(--bg-primary) 0%, rgba(26,14,36,0.5) 30%, transparent 60%);
  }
  .hero-content {
    position: relative;
    inset: unset;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    max-width: 100%;
    width: 100%;
    padding: 24px 20px 28px;
    text-align: center;
    background: var(--bg-primary);
    margin: -20px 0 0 0;
    z-index: 3;
  }
  .hero h1 { font-size: 1.2rem; line-height: 1.35; margin-bottom: 10px; }
  .hero-text { font-size: .86rem; margin-bottom: 18px; color: var(--text-secondary); }
  .hero .cta-btn { padding: 12px 28px; font-size: .86rem; }

  /* Sections */
  .section {
    padding: 36px 16px;
    overflow: hidden;
    max-width: 100%;
  }
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: 1.15rem; line-height: 1.35; }
  .section-header p { font-size: .84rem; }
  .section-body { max-width: 100%; padding: 0; }
  .content-text {
    font-size: .86rem; text-align: left; margin-bottom: 20px;
    max-width: 100%;
    hyphens: auto;
  }

  /* Grids */
  .feature-list { grid-template-columns: 1fr; gap: 10px; }
  .feature-item { padding: 14px; }
  .feature-icon { width: 38px; height: 38px; font-size: .95rem; }
  .feature-item h3 { font-size: .88rem; }
  .feature-item p { font-size: .8rem; }

  .bonus-grid { grid-template-columns: 1fr; gap: 12px; }
  .bonus-card { padding: 20px 16px; }
  .bonus-card .bonus-value { font-size: 1.25rem; }

  .steps-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .step-card { padding: 18px 14px; }

  .loyalty-tiers { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tier-card { padding: 16px 10px; }
  .tier-icon { font-size: 1.4rem; }

  .cat-tabs { gap: 6px; }
  .cat-tab { padding: 6px 12px; font-size: .76rem; }

  /* Tables */
  .info-table-wrap {
    margin: 20px 0;
    border-radius: var(--radius-sm);
    max-width: 100%;
    overflow-x: auto;
  }
  .info-table { font-size: .75rem; min-width: 420px; }
  .info-table th { padding: 10px 10px; font-size: .73rem; }
  .info-table td { padding: 8px 10px; font-size: .75rem; }

  /* Payment */
  .payment-grid { gap: 6px; }
  .payment-badge { padding: 7px 10px; font-size: .78rem; }

  /* FAQ */
  .faq-q { padding: 13px 16px; font-size: .86rem; }
  .faq-a { padding: 0 16px; font-size: .82rem; }
  .faq-item.open .faq-a { padding: 0 16px 14px; }

  /* Footer */
  .site-footer { padding: 28px 16px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-col h4 { font-size: .84rem; margin-bottom: 10px; }
  .footer-col a { font-size: .78rem; }
  .footer-col p { font-size: .76rem; }
  .footer-badges { gap: 6px; }
  .footer-badges span { font-size: .66rem; padding: 4px 8px; }
  .footer-bottom p { font-size: .7rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-banner { aspect-ratio: 21/9; max-height: 180px; }
  .hero-content { padding: 20px 16px 24px; margin-top: -16px; }
  .hero h1 { font-size: 1.08rem; }
  .hero-text { font-size: .82rem; }
  .hero .cta-btn { padding: 10px 24px; font-size: .82rem; }

  .section { padding: 28px 12px; }
  .section-header h2 { font-size: 1.05rem; }
  .section-header p { font-size: .8rem; }

  .steps-grid { grid-template-columns: 1fr; }
  .loyalty-tiers { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }

  .bonus-card { padding: 16px 12px; }
  .feature-item { padding: 12px; gap: 10px; }
  .feature-icon { width: 34px; height: 34px; border-radius: 8px; font-size: .88rem; }

  .info-table { min-width: 360px; }
  .info-table th { padding: 8px 8px; }
  .info-table td { padding: 7px 8px; }

  .top-bar { padding: 8px 12px; }
  .top-bar-cta { padding: 7px 16px; font-size: .78rem; }

  .faq-q { padding: 12px 14px; font-size: .84rem; }
  .faq-a { font-size: .8rem; }
  .faq-item.open .faq-a { padding: 0 14px 12px; }
}

/* XS */
@media (max-width: 360px) {
  .hero-banner { aspect-ratio: 2/1; max-height: 160px; }
  .hero-content { padding: 16px 14px 20px; margin-top: -12px; }
  .hero h1 { font-size: .98rem; }

  .section { padding: 24px 10px; }
  .section-header h2 { font-size: .98rem; }

  .bonus-card .bonus-value { font-size: 1.1rem; }
  .top-bar-cta { padding: 6px 12px; font-size: .74rem; gap: 4px; }
}

/* Reveal */
.section.visible { opacity: 1 !important; transform: translateY(0) !important; }
