/* ═══════════════════════════════════════════════════════
   888CASINO — assets/styles.css
   Brand: 888casino | Domain: 888casino.co.it
   Primary: #FCE522 (yellow) | Accent: #49BB21 (green)
   Background: #000000 | Text on btn: #171717
   ═══════════════════════════════════════════════════════ */

/* ── 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: #000000;
  color: #ffffff;
  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 20px;
}

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

/* ══════════════════════════════
   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, #ffe94d 0%, #FCE522 45%, #e6cc00 100%);
  color: #171717;
  box-shadow: 0 4px 16px rgba(252, 229, 34, 0.45), 0 2px 6px rgba(0, 0, 0, 0.4);
  border-color: #49BB21;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(252, 229, 34, 0.6), 0 4px 12px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #fff176 0%, #FCE522 45%, #f5c800 100%);
}
.btn--primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(252, 229, 34, 0.35); }

.btn--ghost {
  background: transparent;
  color: #49BB21;
  border-color: #49BB21;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.btn--ghost:hover {
  background: rgba(73, 187, 33, 0.1);
  border-color: #5cd630;
  color: #5cd630;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(73, 187, 33, 0.25);
}
.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, #0d0d0d 0%, #1a1a1a 100%);
  border-top: 2px solid #49BB21;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
}
.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: #FCE522; border-color: #FCE522; }

/* ══════════════════════════════
   EXIT POPUP
   ══════════════════════════════ */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  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, #1a1a1a 0%, #0d0d0d 100%);
  border: 2px solid #49BB21;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 40px rgba(73, 187, 33, 0.15);
}
.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.6);
  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(73, 187, 33, 0.3); 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: #FCE522;
  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;
  color: #fff;
}
.exit-tc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  line-height: 1.5;
}

/* ══════════════════════════════
   SIDE DRAWER (MOBILE MENU)
   ══════════════════════════════ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1099;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.side-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 1100;
  width: 290px;
  max-width: 85vw;
  background: #111111;
  border-right: 1px solid rgba(73, 187, 33, 0.2);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.7);
}
.side-drawer::-webkit-scrollbar { display: none; }
.side-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #0d0d0d;
}
.drawer-logo-link { display: flex; align-items: center; }
.drawer-logo { height: 36px; width: auto; max-width: 140px; object-fit: contain; }
.drawer-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: color 0.2s, border-color 0.2s;
}
.drawer-close:hover { color: #FCE522; border-color: #FCE522; }

.drawer-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 18px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.drawer-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #222222;
  border: 2px solid #49BB21;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.drawer-login-btn { width: 100%; text-align: center; }

.drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.drawer-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  background: #1a1a1a;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.drawer-action-btn:hover { background: #222; color: #fff; }

.drawer-promo {
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.drawer-promo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #1a1a1a;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}
.drawer-promo-link:hover { background: #222; }
.drawer-promo-icon {
  width: 36px; height: 36px;
  background: #6c3fc5;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 10px 18px 20px;
  gap: 2px;
  flex: 1;
}
.drawer-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s, color 0.2s;
}
.drawer-nav-item:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.drawer-nav-item--active { background: #49BB21 !important; color: #fff !important; }
.drawer-nav-item--active .drawer-nav-icon { color: #fff !important; }

.drawer-nav-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.drawer-nav-icon--home { background: #49BB21; }
.drawer-nav-icon--slot { background: #e91e63; }
.drawer-nav-icon--live { background: #1a73e8; }
.drawer-nav-icon--new { background: #ff9800; }
.drawer-nav-icon--casino { background: #9c27b0; }
.drawer-nav-icon--jackpot { background: #f44336; }
.drawer-nav-icon--exclusive { background: #FCE522; color: #171717; }

/* ══════════════════════════════
   HEADER
   ══════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(73, 187, 33, 0.2);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 60px;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; }
.logo { height: 38px; width: auto; max-width: 160px; object-fit: contain; }

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

.header-brands {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.brand-chip {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
  white-space: nowrap;
}
.brand-chip strong { display: block; }
.brand-chip--poker { color: #FCE522; border: 1px solid rgba(252, 229, 34, 0.3); }
.brand-chip--sport { color: #FCE522; border: 1px solid rgba(252, 229, 34, 0.3); }

.header-search {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, background 0.2s;
}
.header-search:hover { color: #fff; background: rgba(255, 255, 255, 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); }

/* ══════════════════════════════
   CATEGORY NAV
   ══════════════════════════════ */
.cat-nav {
  background: #0d0d0d;
  border-bottom: 1px solid rgba(73, 187, 33, 0.15);
  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.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  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.7; }
.cat-tab:hover { color: #49BB21; border-bottom-color: rgba(73, 187, 33, 0.45); background: rgba(73, 187, 33, 0.04); }
.cat-tab:hover svg { opacity: 1; }
.cat-tab--active { color: #49BB21 !important; border-bottom-color: #49BB21 !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: 460px;
  object-fit: cover;
  display: block;
  min-height: 200px;
}
.hero-content {
  padding: 44px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #111111 0%, #000000 100%);
  border-bottom: 3px solid #49BB21;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #49BB21;
  margin-bottom: 16px;
}
.hero-bonus {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 28px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
  color: #FCE522;
  letter-spacing: -0.5px;
}
.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.35);
  line-height: 1.5;
}

/* ══════════════════════════════
   SECTION COMMON
   ══════════════════════════════ */
.section-header { text-align: center; margin-bottom: 28px; }
.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.55);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ══════════════════════════════
   LOBBY
   ══════════════════════════════ */
.lobby {
  padding: 48px 0;
  background: #000000;
}

/* ══════════════════════════════
   FILTER TABS
   ══════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  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.12);
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s;
  flex-shrink: 0;
  cursor: pointer;
}
.filter-tab:hover, .filter-tab.active {
  background: #FCE522;
  color: #171717;
  border-color: #FCE522;
  box-shadow: 0 2px 12px rgba(252, 229, 34, 0.4);
}

/* ══════════════════════════════
   JACKPOT BAR
   ══════════════════════════════ */
.jackpot-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, rgba(73, 187, 33, 0.12) 0%, rgba(73, 187, 33, 0.05) 100%);
  border: 1px solid rgba(73, 187, 33, 0.35);
  border-radius: 10px;
  padding: 12px 22px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.jackpot-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.jackpot-amount {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 900;
  color: #FCE522;
  font-variant-numeric: tabular-nums;
  flex: 1;
  min-width: 0;
}
.jackpot-cta {
  font-size: 0.82rem;
  font-weight: 800;
  color: #49BB21;
  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: 24px;
  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.15);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s;
  flex-shrink: 0;
}
.pill:hover, .pill--active {
  background: rgba(73, 187, 33, 0.12);
  border-color: #49BB21;
  color: #49BB21;
}

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

/* ══════════════════════════════
   GAME TILE
   ══════════════════════════════ */
.game-tile {
  position: relative;
  background: #111111;
  border-radius: 12px;
  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.05);
}
.game-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-color: rgba(73, 187, 33, 0.3);
}
.game-tile:hover .tile-overlay { opacity: 1; }
.game-tile--featured { grid-row: span 2; }

.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: #FCE522; color: #171717; }

/* Tile media */
.tile-media {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 120px;
  background: #0a0a0a;
}
.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: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #FCE522;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 8px 8px 4px;
  text-align: center;
}

/* Tile info */
.tile-info {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #111111;
}
.tile-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.tile-provider {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Tile overlay (hover actions) */
.tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 12px;
}
.tile-btn { width: 80%; max-width: 120px; min-height: 36px; padding: 7px 12px; font-size: 0.78rem; }

.load-more-wrap { text-align: center; }

/* ══════════════════════════════
   LIVE SECTION
   ══════════════════════════════ */
.live-section {
  padding: 48px 0;
  background: #0a0a0a;
}
.live-cta-wrap { text-align: center; margin-top: 4px; }

/* ══════════════════════════════
   PROMOTIONS
   ══════════════════════════════ */
.promo-section {
  padding: 48px 0;
  background: #000000;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.promo-card {
  background: #111111;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  border-color: rgba(73, 187, 33, 0.3);
}
.promo-card--featured {
  border-color: #49BB21;
  box-shadow: 0 0 20px rgba(73, 187, 33, 0.15);
}
.promo-media { display: block; overflow: hidden; }
.promo-media img { width: 100%; max-height: 180px; object-fit: cover; display: block; transition: transform 0.3s; }
.promo-card:hover .promo-media img { transform: scale(1.04); }
.promo-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.promo-tag {
  display: inline-block;
  background: #49BB21;
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 4px;
  align-self: flex-start;
}
.promo-title {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
  color: #FCE522;
}
.promo-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  flex: 1;
}
.promo-tc {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

/* VIP TEASER */
.vip-teaser {
  background: linear-gradient(135deg, #111111 0%, #0d1f0d 100%);
  border: 1px solid rgba(73, 187, 33, 0.35);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.vip-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.vip-title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 900; line-height: 1.2; }
.vip-desc { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); line-height: 1.6; }
.vip-tiers {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.vip-tier {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
.vip-tier--top { background: #FCE522; color: #171717; border-color: #FCE522; }
.vip-arrow { color: #49BB21; font-size: 1.2rem; font-weight: 900; }
.vip-media {
  display: block;
  overflow: hidden;
  min-height: 260px;
}
.vip-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════
   PROVIDERS + SEO
   ══════════════════════════════ */
.seo-section {
  padding: 48px 0;
  background: #0a0a0a;
}
.providers-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 36px;
}
.providers-strip::-webkit-scrollbar { display: none; }
.provider-logo {
  flex-shrink: 0;
  padding: 12px 24px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.provider-logo:hover {
  border-color: #49BB21;
  color: #49BB21;
  background: rgba(73, 187, 33, 0.07);
}

.seo-banner {
  margin-bottom: 36px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(73, 187, 33, 0.2);
}
.seo-banner img { width: 100%; max-height: 200px; object-fit: cover; display: block; }

.seo-content { margin-top: 20px; }
.seo-visible p, .seo-hidden p, .seo-hidden h3 {
  margin-bottom: 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.seo-hidden h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-top: 8px;
}
.seo-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.seo-hidden.open { max-height: 2000px; }
.seo-toggle-wrap { text-align: center; margin-top: 20px; }

/* ══════════════════════════════
   FAQ
   ══════════════════════════════ */
.faq-section {
  padding: 48px 0;
  background: #000000;
}
.faq-list { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; }
.faq-item {
  background: #111111;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover, .faq-item.open { border-color: rgba(73, 187, 33, 0.3); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #49BB21;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-item.open .faq-q { color: #FCE522; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 22px 20px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}
.faq-item.open .faq-a { max-height: 400px; }

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer { background: #0a0a0a; }

/* CTA strip */
.footer-cta-strip {
  background: #111111;
  border-top: 1px solid rgba(73, 187, 33, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-cta-text { min-width: 0; }
.footer-cta-pre {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-cta-main {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: #49BB21;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.footer-cta-info {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-cta-info:hover { color: #fff; }

/* Footer main columns */
.footer-main { padding: 40px 0 32px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px 16px;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  line-height: 1.3;
}
.footer-col ul li a:hover { color: #49BB21; }

.footer-brands { display: flex; flex-direction: column; gap: 10px; }
.footer-brand-chip {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: opacity 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-chip:hover { opacity: 0.8; }
.footer-brand-chip--casino { color: #49BB21; }
.footer-brand-chip--poker { color: #FCE522; }
.footer-brand-chip--sport { color: #FCE522; }
.footer-brand-chip strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }

/* EGR Awards */
.footer-awards {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.awards-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 0;
}
.award-logo {
  font-size: 0.85rem;
  font-weight: 900;
  color: #49BB21;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}
.award-logo small { font-size: 0.65rem; font-weight: 600; color: rgba(255, 255, 255, 0.5); }
.award-text {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.award-text span { color: rgba(255, 255, 255, 0.35); }
.award-text strong { color: #fff; display: block; font-weight: 900; margin-top: 2px; }

/* Payment & Regulatory */
.footer-payments {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.payment-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.payment-item {
  padding: 8px 18px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}
.regulatory-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.reg-badge {
  padding: 6px 14px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  line-height: 1.3;
}
.reg-badge--adm { border-color: #49BB21; color: #49BB21; }
.reg-badge--18 { border-color: #FCE522; color: #FCE522; }

/* Made to play safely */
.footer-safe {
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0;
}
.footer-safe-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.safe-logo { flex-shrink: 0; }
.safe-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.safe-text strong {
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
}
.safe-text span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); }
.safe-badges { display: flex; gap: 8px; flex-shrink: 0; }
.safe-badge {
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer legal */
.footer-legal { padding: 28px 0 24px; }
.footer-logo-link { display: inline-flex; margin-bottom: 16px; }
.footer-logo { height: 38px; width: auto; max-width: 150px; object-fit: contain; }
.footer-legal-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 900px;
}
.footer-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(252, 229, 34, 0.6);
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 12px;
}
.footer-nav a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #49BB21; }
.footer-copyright {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ══════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════ */

/* ── 1024px: laptop/tablet ── */
@media (max-width: 1024px) {
  .game-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .live-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vip-teaser { grid-template-columns: 1fr; }
  .vip-media { min-height: 200px; }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .header-brands { display: none; }
  .header-nav { display: none; }
  .burger { display: flex; }
  .header-search { display: none; }
}

/* ── 768px: tablet ── */
@media (max-width: 768px) {
  body { padding-bottom: 74px; }
  .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
  .live-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .game-tile--featured { grid-row: span 1; }
  .game-tile--featured .tile-media { min-height: 120px; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .awards-grid { gap: 10px; }
  .award-badge { padding: 10px 12px; }
  .promo-grid { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-cta-actions { width: 100%; }
  .btn--xl { min-height: 48px; padding: 12px 24px; }
  .lobby { padding: 36px 0; }
  .live-section { padding: 36px 0; }
  .promo-section { padding: 36px 0; }
  .seo-section { padding: 36px 0; }
  .faq-section { padding: 36px 0; }
}

/* ── 480px: mobile ── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-content { padding: 32px 0 44px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .filter-tab { padding: 7px 14px; font-size: 0.78rem; }
  .jackpot-bar { padding: 10px 14px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 14px 12px; }
  .awards-grid { flex-direction: column; align-items: stretch; }
  .award-badge { width: 100%; }
  .payment-row, .regulatory-row { gap: 8px; }
  .footer-cta-main { font-size: 1rem; }
  .vip-content { padding: 24px 20px; }
  .vip-tiers { gap: 4px; }
  .section-header { margin-bottom: 20px; }
  .promo-body { padding: 16px; }
  .footer-brands { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .footer-brand-chip { flex: 1; min-width: 0; }
  .footer-safe-inner { gap: 10px; }
  .safe-text strong { font-size: 0.82rem; }
}

/* ── 360px: very small phones ── */
@media (max-width: 360px) {
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-inner { gap: 8px; }
  .header-cta .btn--sm { padding: 7px 10px; font-size: 0.72rem; }
  .footer-cols { grid-template-columns: 1fr; }
  .cat-tab { padding: 8px 12px; min-width: 50px; }
}

/* ── CTA sections: full-width buttons on mobile ── */
@media (max-width: 600px) {
  .hero-cta .btn,
  .live-cta-wrap .btn,
  .load-more-wrap .btn {
    width: 100%;
    max-width: 360px;
  }
}
.ottocas-deepdive {
--oc-bg: #050505;
--oc-bg-2: #0d0d0d;
--oc-surface: #131313;
--oc-surface-2: #1a1a1a;
--oc-border: rgba(255, 255, 255, 0.08);
--oc-border-strong: rgba(73, 187, 33, 0.32);
--oc-text: #f4f4f4;
--oc-muted: rgba(244, 244, 244, 0.7);
--oc-soft: rgba(244, 244, 244, 0.45);
--oc-yellow: #fce522;
--oc-yellow-deep: #e6cc00;
--oc-green: #49bb21;
--oc-green-soft: rgba(73, 187, 33, 0.12);
--oc-radius: 14px;
--oc-radius-lg: 20px;
position: relative;
padding: 4rem 0 4.5rem;
background:
radial-gradient(ellipse at top left, rgba(73, 187, 33, 0.07), transparent 55%),
radial-gradient(ellipse at bottom right, rgba(252, 229, 34, 0.05), transparent 60%),
linear-gradient(180deg, var(--oc-bg) 0%, var(--oc-bg-2) 100%);
color: var(--oc-text);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
overflow: hidden;
}
.ottocas-deepdive::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent 0%, var(--oc-green) 30%, var(--oc-yellow) 70%, transparent 100%);
opacity: 0.6;
}
.ottocas-deepdive *,
.ottocas-deepdive *::before,
.ottocas-deepdive *::after {
box-sizing: border-box;
}
.ottocas-shell {
width: 100%;
max-width: 76rem;
margin: 0 auto;
padding: 0 1.25rem;
position: relative;
z-index: 1;
}
.ottocas-intro {
text-align: center;
max-width: 50rem;
margin: 0 auto 3rem;
}
.ottocas-eyebrow {
display: inline-block;
padding: 0.4rem 0.95rem;
margin-bottom: 1.1rem;
background: var(--oc-green-soft);
border: 1px solid var(--oc-border-strong);
border-radius: 4px;
color: var(--oc-green);
font-size: 0.7rem;
font-weight: 900;
letter-spacing: 0.22em;
text-transform: uppercase;
}
.ottocas-headline {
font-size: clamp(1.75rem, 4.5vw, 2.65rem);
font-weight: 900;
line-height: 1.18;
margin: 0 0 1rem;
color: var(--oc-text);
letter-spacing: -0.015em;
}
.ottocas-headline em {
font-style: normal;
position: relative;
color: var(--oc-yellow);
padding: 0 0.1em;
}
.ottocas-headline em::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0.05em;
height: 0.3em;
background: rgba(252, 229, 34, 0.18);
z-index: -1;
}
.ottocas-deck {
font-size: 1rem;
line-height: 1.7;
color: var(--oc-muted);
margin: 0 auto;
max-width: 44rem;
}
.ottocas-card {
position: relative;
background: var(--oc-surface);
border: 1px solid var(--oc-border);
border-radius: var(--oc-radius-lg);
padding: 2rem 1.5rem 2rem 1.5rem;
margin-bottom: 1.5rem;
transition: border-color 0.25s ease, transform 0.25s ease;
}
.ottocas-card:hover {
border-color: var(--oc-border-strong);
transform: translateY(-2px);
}
.ottocas-card-mark {
position: absolute;
top: 1.5rem;
right: 1.5rem;
font-size: 2.75rem;
font-weight: 900;
line-height: 1;
background: linear-gradient(135deg, var(--oc-yellow) 0%, var(--oc-yellow-deep) 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
opacity: 0.55;
letter-spacing: -0.05em;
pointer-events: none;
}
.ottocas-card--operator { border-left: 3px solid var(--oc-green); }
.ottocas-card--licence { border-left: 3px solid var(--oc-yellow); }
.ottocas-card--bonus { border-left: 3px solid var(--oc-green); }
.ottocas-card--lobby { border-left: 3px solid var(--oc-yellow); }
.ottocas-card--live { border-left: 3px solid #c62828; }
.ottocas-card--payments { border-left: 3px solid var(--oc-green); }
.ottocas-card--responsible { border-left: 3px solid var(--oc-yellow); }
.ottocas-card--position { border-left: 3px solid var(--oc-green); }
.ottocas-h3 {
font-size: clamp(1.15rem, 2.4vw, 1.4rem);
font-weight: 900;
line-height: 1.3;
margin: 0 0 1rem;
color: var(--oc-text);
padding-right: 3rem;
letter-spacing: -0.01em;
}
.ottocas-h3--alt {
color: var(--oc-yellow);
padding-right: 0;
}
.ottocas-card p {
font-size: 0.94rem;
line-height: 1.72;
color: var(--oc-muted);
margin: 0 0 1rem;
}
.ottocas-card p:last-child {
margin-bottom: 0;
}
.ottocas-card strong {
color: var(--oc-text);
font-weight: 700;
}
.ottocas-card em {
color: var(--oc-green);
font-style: normal;
font-weight: 600;
}
.ottocas-list {
margin: 0.5rem 0 1rem;
padding: 0;
list-style: none;
}
.ottocas-list li {
position: relative;
padding-left: 2rem;
margin-bottom: 0.7rem;
font-size: 0.92rem;
line-height: 1.65;
color: var(--oc-muted);
}
.ottocas-list--check li::before {
content: '';
position: absolute;
left: 0;
top: 0.4em;
width: 1.1rem;
height: 1.1rem;
background: var(--oc-green-soft);
border: 1.5px solid var(--oc-green);
border-radius: 4px;
}
.ottocas-list--check li::after {
content: '';
position: absolute;
left: 0.32rem;
top: 0.65em;
width: 0.4rem;
height: 0.65rem;
border-right: 2px solid var(--oc-green);
border-bottom: 2px solid var(--oc-green);
transform: rotate(45deg);
}
.ottocas-list--dot li::before {
content: '';
position: absolute;
left: 0.4rem;
top: 0.7em;
width: 0.45rem;
height: 0.45rem;
background: var(--oc-yellow);
border-radius: 50%;
box-shadow: 0 0 0 3px rgba(252, 229, 34, 0.18);
}
.ottocas-table-frame {
margin: 1.4rem 0;
background: var(--oc-bg);
border: 1px solid var(--oc-border);
border-radius: var(--oc-radius);
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: var(--oc-green) var(--oc-bg);
}
.ottocas-table-frame::-webkit-scrollbar {
height: 6px;
}
.ottocas-table-frame::-webkit-scrollbar-track {
background: var(--oc-bg);
}
.ottocas-table-frame::-webkit-scrollbar-thumb {
background: var(--oc-green);
border-radius: 3px;
}
.ottocas-table {
width: 100%;
min-width: 36rem;
border-collapse: collapse;
font-size: 0.88rem;
}
.ottocas-table thead th {
padding: 0.9rem 1rem;
background: rgba(73, 187, 33, 0.08);
color: var(--oc-yellow);
font-weight: 800;
font-size: 0.74rem;
letter-spacing: 0.1em;
text-transform: uppercase;
text-align: left;
border-bottom: 1px solid var(--oc-border-strong);
white-space: nowrap;
}
.ottocas-table tbody td {
padding: 0.85rem 1rem;
color: var(--oc-muted);
border-bottom: 1px solid var(--oc-border);
vertical-align: top;
line-height: 1.55;
}
.ottocas-table tbody tr:last-child td {
border-bottom: 0;
}
.ottocas-table tbody tr:nth-child(odd) td {
background: rgba(255, 255, 255, 0.018);
}
.ottocas-table tbody tr:hover td {
background: rgba(73, 187, 33, 0.04);
color: var(--oc-text);
}
.ottocas-table tbody td:first-child {
color: var(--oc-text);
font-weight: 700;
white-space: nowrap;
}
.ottocas-table tbody td strong {
color: var(--oc-yellow);
}
.ottocas-final {
margin-top: 2.5rem;
background:
linear-gradient(135deg, rgba(73, 187, 33, 0.1) 0%, rgba(252, 229, 34, 0.06) 100%),
var(--oc-surface-2);
border: 1px solid var(--oc-border-strong);
border-radius: var(--oc-radius-lg);
padding: 2rem 1.5rem;
position: relative;
overflow: hidden;
}
.ottocas-final::before {
content: '18+';
position: absolute;
top: -1.2rem;
right: -1.2rem;
width: 6rem;
height: 6rem;
background: var(--oc-yellow);
color: #171717;
font-weight: 900;
font-size: 1.05rem;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
letter-spacing: 0.05em;
box-shadow: 0 6px 20px rgba(252, 229, 34, 0.35);
transform: rotate(-8deg);
padding-bottom: 0.6rem;
padding-right: 0.6rem;
}
.ottocas-final-content {
position: relative;
z-index: 1;
padding-right: 4rem;
}
.ottocas-final-tag {
display: inline-block;
font-size: 0.68rem;
font-weight: 900;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--oc-green);
margin-bottom: 0.7rem;
}
.ottocas-final p {
font-size: 0.92rem;
line-height: 1.7;
color: var(--oc-muted);
margin: 0;
}
.ottocas-final p strong {
color: var(--oc-yellow);
display: inline-block;
margin-top: 0.3rem;
}
@media (min-width: 48rem) {
.ottocas-deepdive {
padding: 5.5rem 0 6rem;
}
.ottocas-shell {
padding: 0 2rem;
}
.ottocas-card {
padding: 2.5rem 2.25rem;
margin-bottom: 1.75rem;
}
.ottocas-card-mark {
top: 1.8rem;
right: 2rem;
font-size: 3.5rem;
}
.ottocas-h3 {
padding-right: 4rem;
}
.ottocas-final {
padding: 2.4rem 2.4rem;
}
.ottocas-final-content {
padding-right: 6rem;
}
}
@media (min-width: 64rem) {
.ottocas-deepdive {
padding: 6.5rem 0 7rem;
}
.ottocas-card {
padding: 2.75rem 2.75rem;
}
.ottocas-card p {
font-size: 0.97rem;
}
.ottocas-table {
font-size: 0.92rem;
}
.ottocas-table thead th,
.ottocas-table tbody td {
padding: 1rem 1.2rem;
}
}
@media (prefers-reduced-motion: reduce) {
.ottocas-card,
.ottocas-table tbody tr:hover td {
transition: none;
transform: none;
}
}