/* ═══════════════════════════════════════════════════════
   ADMIRALBET — assets/styles.css
   Brand: AdmiralBet | Domain: admiralbet-app.co.it
   Primary: #FFCD00 | BG: #001338 | Header: #002454
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #001338;
  color: #fff;
  min-height: 100vh;
  overflow-wrap: anywhere;
  word-break: break-word;
  padding-bottom: 80px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HIGHLIGHT ── */
.highlight { color: #FFCD00; }

/* ══════════════════════════════
   BUTTONS
   ══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.875rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  min-width: 0;
  line-height: 1.2;
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, #FFE140 0%, #FFCD00 45%, #FFA800 100%);
  color: #001338;
  box-shadow: 0 4px 16px rgba(255, 205, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(255, 205, 0, 0.55), 0 4px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #FFE966 0%, #FFCD00 45%, #FFB300 100%);
}
.btn--primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(255, 205, 0, 0.35); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn--ghost:hover {
  border-color: #FFCD00;
  color: #FFCD00;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.btn--ghost:active { transform: translateY(0); }

.btn--xl { min-height: 52px; padding: 14px 36px; font-size: 1rem; }
.btn--sm { min-height: 36px; padding: 8px 16px; font-size: 0.8rem; }
.btn--wide { min-width: 200px; }

/* ══════════════════════════════
   CATFISH
   ══════════════════════════════ */
.catfish {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: linear-gradient(90deg, #001e4a 0%, #002454 100%);
  border-top: 2px solid #FFCD00;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}
.catfish-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
}
.catfish-text {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  min-width: 0;
}
.catfish-btn { flex-shrink: 0; padding: 7px 16px; min-height: 36px; font-size: 0.78rem; }
.catfish-close {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.2s, border-color 0.2s;
  line-height: 1;
}
.catfish-close:hover { color: #fff; border-color: #FFCD00; }

/* ══════════════════════════════
   EXIT POPUP
   ══════════════════════════════ */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 15, 45, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.exit-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup {
  position: relative;
  background: linear-gradient(160deg, #002870 0%, #001338 100%);
  border: 2px solid #FFCD00;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
}
.exit-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.exit-close:hover { background: rgba(255, 205, 0, 0.25); transform: scale(1.1); }
.exit-media { display: block; width: 100%; overflow: hidden; }
.exit-media img { width: 100%; max-height: 230px; object-fit: cover; display: block; }
.exit-content { padding: 24px 28px; text-align: center; }
.exit-eyebrow {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #FFCD00;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.exit-bonus {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 22px;
}
.exit-tc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  line-height: 1.5;
}

/* ══════════════════════════════
   HEADER
   ══════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #002454;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo { height: 40px; width: auto; max-width: 170px; object-fit: contain; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.nav-link {
  padding: 7px 13px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: #FFCD00; background: rgba(255, 205, 0, 0.08); }

.header-cta { display: flex; gap: 8px; flex-shrink: 0; align-items: center; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  flex-shrink: 0;
  border-radius: 4px;
  transition: background 0.2s;
}
.burger:hover { background: rgba(255, 255, 255, 0.08); }
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #001c3e;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 20px 20px;
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 11px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.mobile-nav-link:hover { color: #FFCD00; background: rgba(255, 205, 0, 0.07); }
.mobile-cta { margin-top: 10px; display: flex; justify-content: center; }

/* ══════════════════════════════
   CATEGORY NAV
   ══════════════════════════════ */
.cat-nav {
  background: #002454;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner {
  display: flex;
  align-items: stretch;
  min-width: max-content;
  padding: 0 8px;
}
.cat-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  min-width: 60px;
  letter-spacing: 0.3px;
}
.cat-tab svg { transition: opacity 0.2s; opacity: 0.75; }
.cat-tab:hover { color: #FFCD00; border-bottom-color: rgba(255, 205, 0, 0.45); background: rgba(255, 205, 0, 0.04); }
.cat-tab:hover svg { opacity: 1; }
.cat-tab--active { color: #FFCD00 !important; border-bottom-color: #FFCD00 !important; }
.cat-tab--active svg { opacity: 1 !important; }

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero { position: relative; overflow: hidden; }
.hero-media {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
  min-height: 200px;
}
.hero-content {
  padding: 40px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, #002454 0%, #001338 100%);
  border-bottom: 3px solid #FFCD00;
}
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #FFCD00;
  margin-bottom: 14px;
}
.hero-bonus {
  font-size: clamp(1.9rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 30px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-tc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

/* ══════════════════════════════
   SECTION COMMON
   ══════════════════════════════ */
.section-header { text-align: center; margin-bottom: 26px; }
.section-title {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.2;
}
.section-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ══════════════════════════════
   FILTER TABS
   ══════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  padding: 8px 20px;
  border-radius: 22px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  border: 2px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
  flex-shrink: 0;
  cursor: pointer;
}
.filter-tab:hover, .filter-tab.active {
  background: #FFCD00;
  color: #001338;
  border-color: #FFCD00;
  box-shadow: 0 2px 12px rgba(255, 205, 0, 0.35);
}

/* ══════════════════════════════
   JACKPOT BAR
   ══════════════════════════════ */
.jackpot-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, rgba(0, 36, 84, 0.85) 0%, rgba(0, 19, 56, 0.85) 100%);
  border: 1px solid rgba(255, 205, 0, 0.35);
  border-radius: 10px;
  padding: 12px 22px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.jackpot-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}
.jackpot-amount {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 900;
  color: #FFCD00;
  font-variant-numeric: tabular-nums;
  flex: 1;
  min-width: 0;
}
.jackpot-cta {
  font-size: 0.82rem;
  font-weight: 800;
  color: #FFCD00;
  text-decoration: underline;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.jackpot-cta:hover { opacity: 0.8; }

/* ══════════════════════════════
   FILTER PILLS
   ══════════════════════════════ */
.filter-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.filter-pills::-webkit-scrollbar { display: none; }
.pill {
  padding: 7px 22px;
  border-radius: 22px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
  flex-shrink: 0;
}
.pill:hover, .pill--active {
  background: rgba(255, 205, 0, 0.12);
  border-color: #FFCD00;
  color: #FFCD00;
}

/* ══════════════════════════════
   GAME GRID
   ══════════════════════════════ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

/* ══════════════════════════════
   GAME TILE
   ══════════════════════════════ */
.game-tile {
  position: relative;
  background: #002454;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.game-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}
.game-tile:hover .tile-overlay { opacity: 1; }
.game-tile--featured { grid-row: span 2; }

/* Tile inner (anchor wrapper) */
.tile-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  min-width: 0;
}

/* Badges */
.tile-badge {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 3;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  line-height: 1.4;
}
.tile-badge--new { background: #c62828; color: #fff; }
.tile-badge--promo { background: #1565c0; color: #fff; }
.tile-badge--hot { background: #e65100; color: #fff; }
.tile-badge--jackpot { background: #FFCD00; color: #001338; }

/* Tile media */
.tile-media {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 120px;
  background: #001338;
}
.game-tile--featured .tile-media { min-height: 260px; }
.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  max-width: 100%;
  max-height: 100%;
}
.game-tile:hover .tile-media img { transform: scale(1.05); }
.tile-media--live { position: relative; }

/* Live badge */
.live-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(198, 40, 40, 0.92);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 2px 9px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 3;
}

/* Jackpot overlay on tile */
.tile-jackpot-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.78);
  color: #FFCD00;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  padding: 4px 8px;
  letter-spacing: 0.3px;
}

/* Tile info bar */
.tile-info {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #002454;
  flex-shrink: 0;
}
.tile-name {
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.tile-provider {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.48);
}

/* Tile hover overlay */
.tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 58, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
  flex-wrap: wrap;
  padding: 10px;
  z-index: 5;
}
.tile-btn {
  font-size: 0.7rem;
  padding: 7px 14px;
  min-height: 34px;
}

/* ══════════════════════════════
   LOAD MORE / LIVE CTA
   ══════════════════════════════ */
.load-more-wrap, .live-cta-wrap { text-align: center; margin-top: 4px; }

/* ══════════════════════════════
   SECTIONS
   ══════════════════════════════ */
.lobby { padding: 52px 0 44px; }
.live-section {
  padding: 52px 0 44px;
  background: linear-gradient(180deg, rgba(0, 30, 70, 0.5) 0%, rgba(0, 19, 56, 0) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ══════════════════════════════
   SEO SECTION
   ══════════════════════════════ */
.seo-section {
  padding: 52px 0;
  background: rgba(0, 20, 54, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.seo-banner {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.seo-banner img { width: 100%; max-height: 280px; object-fit: cover; display: block; }
.seo-section .section-title { text-align: left; margin-bottom: 22px; }
.seo-content { margin-top: 0; }
.seo-visible p,
.seo-hidden p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 16px;
}
.seo-hidden h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 24px 0 10px;
  color: #FFCD00;
}
.seo-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease;
}
.seo-hidden.expanded { max-height: 3000px; }
.seo-toggle-wrap { margin-top: 20px; }
.seo-toggle { min-width: 160px; }

/* ══════════════════════════════
   FAQ
   ══════════════════════════════ */
.faq-section {
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-section .section-title { text-align: center; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
  overflow: hidden;
  background: rgba(0, 36, 84, 0.45);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(255, 205, 0, 0.25); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  min-height: 56px;
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFCD00;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-q.open::after { transform: rotate(45deg); }
.faq-q.open { color: #FFCD00; background: rgba(255, 205, 0, 0.04); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-a.open { max-height: 400px; }
.faq-a p {
  padding: 0 22px 18px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  background: #001338;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-divider { height: 1px; background: rgba(255, 255, 255, 0.07); }

/* Footer info strip */
.footer-info {
  background: #002454;
  padding: 36px 0;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  transition: opacity 0.2s;
}
.info-card:hover { opacity: 0.88; }
.info-icon { flex-shrink: 0; margin-top: 2px; }
.info-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.info-text p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.62); line-height: 1.6; }

/* Footer main */
.footer-main { padding: 44px 0; }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 44px;
  min-width: 0;
}
.footer-col { min-width: 0; }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-chat-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 13px 16px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  min-width: 0;
}
.footer-contact-item svg { flex-shrink: 0; opacity: 0.65; }
.footer-hours {
  margin-top: 14px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}
.footer-hours-note {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.32) !important;
}

/* Payment grid */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.payment-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  min-width: 0;
  transition: border-color 0.2s, background 0.2s;
}
.payment-item:hover { border-color: rgba(255, 205, 0, 0.3); background: rgba(255, 205, 0, 0.05); }

/* App buttons */
.app-buttons { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  padding: 11px 18px;
  font-size: 0.78rem;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
  min-width: 0;
}
.app-btn:hover { border-color: #FFCD00; background: rgba(255, 205, 0, 0.07); }
.app-btn small { display: block; font-size: 0.65rem; color: rgba(255, 255, 255, 0.55); margin-bottom: 1px; }
.app-btn strong { display: block; font-size: 0.88rem; font-weight: 900; }
.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
}

/* Legal section */
.footer-legal { padding: 26px 0 30px; }
.legal-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: flex-end;
}
.legal-badge {
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  font-size: 0.66rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.legal-badge--18 {
  border-color: rgba(255, 205, 0, 0.4);
  color: #FFCD00;
}
.footer-bottom {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-logo-link { flex-shrink: 0; }
.footer-logo { height: 34px; width: auto; max-width: 150px; object-fit: contain; }
.footer-legal-text {
  flex: 1;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.7;
  min-width: 200px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 14px;
}
.footer-nav a {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #FFCD00; }
.footer-copyright {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ══════════════════════════════
   RESPONSIVE — 1200px
   ══════════════════════════════ */
@media (max-width: 1200px) {
  .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .game-tile--featured { grid-row: span 1; }
  .game-tile--featured .tile-media { min-height: 140px; }
  .footer-cols { gap: 28px; }
}

/* ══════════════════════════════
   RESPONSIVE — 1024px
   ══════════════════════════════ */
@media (max-width: 1024px) {
  .info-grid { gap: 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--mobile { grid-column: 1 / -1; }
  .app-buttons { flex-direction: row; }
}

/* ══════════════════════════════
   RESPONSIVE — 768px (tablet)
   ══════════════════════════════ */
@media (max-width: 768px) {
  .header-nav, .header-cta { display: none; }
  .burger { display: flex; }

  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .game-tile--featured { grid-row: span 1; }
  .game-tile--featured .tile-media { min-height: 120px; }
  .tile-media { min-height: 100px; }

  .info-grid { grid-template-columns: 1fr; gap: 20px; }

  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-col--mobile { grid-column: 1; }
  .legal-logos { justify-content: flex-start; }

  .hero-img { max-height: 280px; }
  .hero-content { padding: 28px 0 44px; }

  .footer-bottom { flex-direction: column; gap: 14px; }

  .container { padding: 0 16px; }
}

/* ══════════════════════════════
   RESPONSIVE — 480px (mobile)
   ══════════════════════════════ */
@media (max-width: 480px) {
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }

  .hero-bonus { font-size: 1.75rem; }
  .hero-sub { font-size: 0.92rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .cat-tab { padding: 9px 12px; font-size: 0.65rem; min-width: 52px; }

  .jackpot-bar { padding: 10px 14px; gap: 8px; }
  .jackpot-label { font-size: 0.76rem; }
  .jackpot-amount { font-size: 1rem; }

  .catfish-text { font-size: 0.72rem; }

  .payment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .section-title { font-size: 1.35rem; }

  .exit-popup { border-radius: 12px; }
  .exit-content { padding: 18px 20px; }
  .exit-bonus { font-size: 1.25rem; }

  .faq-q { font-size: 0.84rem; padding: 14px 16px; }
  .faq-a p { padding: 0 16px 14px; padding-top: 12px; }

  .app-buttons { flex-direction: column; }
}

/* ══════════════════════════════
   RESPONSIVE — 360px (small)
   ══════════════════════════════ */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .game-grid { gap: 6px; }
  .tile-badge { font-size: 0.52rem; padding: 2px 6px; }
  .hero-bonus { font-size: 1.5rem; }
  .filter-tab { padding: 7px 14px; font-size: 0.76rem; }
}
