/* ==============================================
   APHRODITE CASINO — Main Stylesheet
   Palette: Navy #0a0b17 / Gold #f2c200 / Blue #2fb3ff
   ============================================== */

:root {
  --bg-deep:      #0a0b17;
  --bg-dark:      #0f1020;
  --bg-panel:     #13152a;
  --bg-card:      #1b2035;
  --bg-hover:     #222640;
  --gold-start:   #f7c948;
  --gold-end:     #c98b00;
  --gold-text:    #f2c200;
  --accent-blue:  #2fb3ff;
  --accent-cyan:  #5cc7ff;
  --accent-red:   #ff4b2b;
  --accent-orange:#ff8c00;
  --text-white:   #ffffff;
  --text-light:   #d0d3e8;
  --text-muted:   #7f8497;
  --border-gold:  rgba(242,194,0,0.25);
  --border-panel: rgba(255,255,255,0.07);
  --sidebar-w:    260px;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --transition:   0.22s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Focus visible — keyboard accessibility */
:focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-end); border-radius: 3px; }

/* ==============================================
   LAYOUT
   ============================================== */
.site-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ==============================================
   SIDEBAR
   ============================================== */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--bg-panel);
  border-right: 1px solid var(--border-panel);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform var(--transition);
}
.sidebar::-webkit-scrollbar { width: 3px; }

/* Logo area */
.sidebar-logo {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border-panel);
}
.sidebar-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* SVG logo */
.sidebar-logo-img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
  overflow: visible;
  transition: filter var(--transition), transform var(--transition);
  filter: drop-shadow(0 0 8px rgba(200,100,180,0.4));
}
.sidebar-logo-img:hover {
  filter: drop-shadow(0 0 18px rgba(247,201,72,0.7));
  transform: scale(1.03);
}

/* Logo text (footer / fallback) */
.logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 8px rgba(247,201,72,0.4));
}

/* Sidebar Hero Banner */
.sidebar-hero {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-panel);
}
.sidebar-hero a {
  display: block;
  position: relative;
}
.sidebar-hero-img {
  width: 100%;
  height: 110px;
  background-size: cover;
  background-position: center 20%;
  transition: transform 0.4s ease;
}
.sidebar-hero a:hover .sidebar-hero-img {
  transform: scale(1.04);
}
.sidebar-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,11,23,0.05) 0%, rgba(10,11,23,0.55) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}
.sidebar-hero a:hover .sidebar-hero-overlay {
  opacity: 1;
}
.sidebar-hero-btn {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--bg-deep);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Welcome Pack Badge */
.sidebar-promo-badge {
  margin: 14px 14px 10px;
  background: linear-gradient(135deg, #0d2a55 0%, #0a1f3d 100%);
  border: 1px solid var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  position: relative;
  box-shadow: 0 0 18px rgba(47,179,255,0.2);
}
.sidebar-promo-badge .badge-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sidebar-promo-badge .badge-sub {
  font-size: 0.7rem;
  color: var(--accent-blue);
  margin-top: 2px;
}
.badge-glow {
  position: absolute;
  top: -6px; right: -6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue);
  animation: pulse-blue 2s infinite;
}
@keyframes pulse-blue {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* Nav */
.sidebar-nav {
  padding: 8px 10px;
  flex: 1;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: background var(--transition), color var(--transition);
  margin-bottom: 3px;
  cursor: pointer;
  position: relative;
}
.nav-item:hover {
  background: var(--bg-hover);
  color: var(--text-white);
}
.nav-item.active {
  background: linear-gradient(90deg, rgba(242,194,0,0.12) 0%, rgba(242,194,0,0.04) 100%);
  border: 1px solid var(--border-gold);
  color: var(--gold-text);
  font-weight: 600;
}
.nav-item.active .nav-icon { color: var(--gold-text); }
.nav-icon {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.nav-badge {
  margin-left: auto;
  font-size: 0.65rem;
  background: var(--accent-red);
  color: #fff;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 700;
}

/* Popular Games in Sidebar */
.sidebar-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 14px 14px 6px;
}
.sidebar-games-list { padding: 0 0 4px; }
.sidebar-game-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  margin-bottom: 2px;
  cursor: pointer;
}
.sidebar-game-item:hover { background: var(--bg-hover); }
.sidebar-game-thumb {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  overflow: hidden;
}
.sidebar-game-info { flex: 1; min-width: 0; }
.sidebar-game-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-game-provider {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
}
.sidebar-play-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sidebar-play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 12px rgba(242,194,0,0.5);
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 12px 14px;
  border-top: 1px solid var(--border-panel);
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-light);
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.lang-selector:hover { border-color: var(--border-gold); }
.sidebar-footer-icons {
  margin-left: auto;
  display: flex;
  gap: 8px;
}
.footer-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition);
  cursor: pointer;
}
.footer-icon:hover { color: var(--gold-text); border-color: var(--border-gold); }

/* ==============================================
   MAIN CONTENT
   ============================================== */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Top Header */
.top-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,11,23,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-panel);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-search {
  flex: 1;
  max-width: 360px;
  position: relative;
}
.header-search input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: 50px;
  padding: 9px 16px 9px 40px;
  font-size: 0.85rem;
  color: var(--text-light);
  outline: none;
  transition: border-color var(--transition);
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search input:focus { border-color: var(--border-gold); }
.header-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
}
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.btn-register {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(242,194,0,0.4);
}
.btn-login {
  background: var(--bg-card);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--border-panel);
  transition: border-color var(--transition), background var(--transition);
  text-transform: uppercase;
}
.btn-login:hover { border-color: var(--border-gold); background: var(--bg-hover); }

/* Mobile Burger */
.burger-btn {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger-btn span {
  display: block;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==============================================
   HERO SLIDER
   ============================================== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.slide {
  min-width: 100%;
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,11,23,0.88) 0%, rgba(10,11,23,0.55) 55%, rgba(10,11,23,0.15) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  padding: 40px 60px;
  max-width: 620px;
}
.slide-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-text);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.slide-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.slide-title .highlight {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.slide-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 480px;
}
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.slide-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.slide-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(242,194,0,0.45); }
.slide-cta:hover::before { opacity: 1; }
.slide-badge {
  position: absolute;
  top: 28px;
  right: 60px;
  background: linear-gradient(135deg, #1a1f40, #0f1228);
  border: 2px solid var(--gold-text);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(242,194,0,0.3);
  text-align: center;
  z-index: 2;
}
.slide-badge .badge-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-text);
  line-height: 1;
}
.slide-badge .badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}

/* Slider Nav */
.slider-nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}
.slider-dot.active {
  background: var(--gold-text);
  width: 28px;
  border-radius: 4px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,11,23,0.7);
  border: 1px solid var(--border-gold);
  color: var(--gold-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.slider-arrow:hover { background: rgba(242,194,0,0.15); box-shadow: 0 0 16px rgba(242,194,0,0.3); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ==============================================
   FEATURE STRIP
   ============================================== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-panel);
  border-top: 1px solid var(--border-panel);
  border-bottom: 1px solid var(--border-panel);
}
.feature-item {
  background: var(--bg-panel);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.feature-item:hover { background: var(--bg-hover); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(242,194,0,0.12), rgba(242,194,0,0.04));
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--gold-text);
}
.feature-text h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}
.feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==============================================
   PAGE SECTIONS
   ============================================== */
.page-content { padding: 40px 32px 60px; }

.section { margin-bottom: 56px; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .icon { color: var(--gold-text); }
.section-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-text);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: 50px;
  transition: background var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-link:hover { background: rgba(242,194,0,0.1); box-shadow: 0 0 12px rgba(242,194,0,0.2); }

/* ==============================================
   GAME CARDS
   ============================================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.game-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.game-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-thumb-img { transform: scale(1.08); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,11,23,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-play-btn {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-info {
  padding: 10px 12px;
}
.game-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.game-provider {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==============================================
   HORIZONTAL GAME SCROLL
   ============================================== */
.games-scroll-wrap {
  position: relative;
}
.games-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.games-scroll::-webkit-scrollbar { display: none; }
.games-scroll .game-card {
  min-width: 180px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10,11,23,0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 0.85rem;
}
.scroll-btn:hover { background: rgba(242,194,0,0.15); }
.scroll-btn.left { left: -18px; }
.scroll-btn.right { right: -18px; }

/* ==============================================
   SEO TEXT SECTIONS
   ============================================== */
.seo-section {
  background: var(--bg-panel);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 28px;
  transition: border-color var(--transition);
}
.seo-section:hover { border-color: var(--border-gold); }
.seo-section h1 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.25;
}
.seo-section h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.3;
  position: relative;
  padding-bottom: 14px;
}
.seo-section h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  border-radius: 2px;
}
.seo-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-text);
  margin: 20px 0 10px;
}
.seo-section p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}
.seo-section p:last-child { margin-bottom: 0; }

/* SEO list */
.seo-list {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.seo-list li::before {
  content: '✦';
  color: var(--gold-text);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* SEO Table */
.seo-table-wrap { overflow-x: auto; margin: 20px 0; }
.seo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.seo-table th {
  background: linear-gradient(135deg, rgba(242,194,0,0.14), rgba(242,194,0,0.06));
  color: var(--gold-text);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-gold);
}
.seo-table td {
  padding: 11px 16px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-panel);
  vertical-align: top;
  line-height: 1.55;
}
.seo-table tr:last-child td { border-bottom: none; }
.seo-table tr:hover td { background: var(--bg-hover); }
.td-label {
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
}
.td-gold { color: var(--gold-text); font-weight: 700; }

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 16px 0;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* ==============================================
   BONUS TIMELINE
   ============================================== */
.bonus-timeline {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.bonus-timeline::-webkit-scrollbar { display: none; }
.bonus-step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: border-color var(--transition), transform var(--transition);
  min-width: 130px;
}
.bonus-step:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.bonus-step--total {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, rgba(242,194,0,0.1), rgba(242,194,0,0.03));
}
.bonus-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--bg-deep);
  font-size: 0.9rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bonus-step-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 2px;
}
.bonus-step-val {
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.bonus-step-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.bonus-step-arrow {
  color: var(--text-muted);
  font-size: 0.75rem;
  flex-shrink: 0;
  padding: 0 2px;
}

/* Promo Feature Blocks */
.promo-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.promo-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.promo-feature-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.promo-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.promo-feature-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.promo-feature-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .promo-features { grid-template-columns: 1fr; }
  .bonus-step { min-width: 110px; padding: 12px; }
  .bonus-step-val { font-size: 1.05rem; }
}

/* ==============================================
   PROMOTIONS CARDS (fr-fr page)
   ============================================== */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.promo-img {
  width: 100%;
  height: 160px;
  background: var(--bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
  position: relative;
}
.promo-img img { width: 100%; height: 100%; object-fit: cover; }
.promo-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}
.promo-tag.bonus    { background: var(--gold-text); color: var(--bg-deep); }
.promo-tag.cashback { background: #10c98c; color: #fff; }
.promo-tag.tournament { background: #a855f7; color: #fff; }
.promo-tag.vip      { background: var(--accent-red); color: #fff; }
.promo-body { padding: 18px 20px; }
.promo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.promo-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.promo-value {
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.promo-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity var(--transition);
}
.promo-cta:hover { opacity: 0.88; }

/* ==============================================
   PAYMENT METHODS
   ============================================== */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  transition: border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.payment-item:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.payment-icon { font-size: 1.4rem; }

/* ==============================================
   STATS GRID
   ============================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.stat-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.stat-value {
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* ==============================================
   FAQ ACCORDION
   ============================================== */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-gold); }
.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--gold-text); }
.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(242,194,0,0.15);
  color: var(--gold-text);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-panel);
  padding: 48px 40px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand .logo-text { font-size: 1.3rem; }
.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 12px;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--gold-text); }
.footer-bottom {
  border-top: 1px solid var(--border-panel);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-licenses {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.license-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}
.footer-18 {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

/* ==============================================
   LIVE BADGE
   ============================================== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10c98c;
  background: rgba(16,201,140,0.12);
  border: 1px solid rgba(16,201,140,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  margin-left: 10px;
  vertical-align: middle;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10c98c;
  animation: pulse-green 1.5s infinite;
}
@keyframes pulse-green {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

/* ==============================================
   PROVIDERS STRIP
   ============================================== */
.providers-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.provider-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}
.provider-chip:hover { border-color: var(--border-gold); color: var(--gold-text); transform: translateY(-2px); }

/* ==============================================
   RESPONSIBLE GAMING BANNER
   ============================================== */
.resp-banner {
  background: linear-gradient(135deg, rgba(255,75,43,0.08), rgba(255,75,43,0.03));
  border: 1px solid rgba(255,75,43,0.2);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.resp-banner .resp-icon { font-size: 1.6rem; flex-shrink: 0; }
.resp-banner p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.resp-banner strong { color: var(--text-light); }

/* ==============================================
   MOBILE SIDEBAR OVERLAY
   ============================================== */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 150;
  backdrop-filter: blur(3px);
}
.sidebar-overlay.active { display: block; }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 40px rgba(0,0,0,0.5);
  }
  .main-content { margin-left: 0; }
  .burger-btn { display: flex; }
  .feature-strip { grid-template-columns: 1fr; }
  .slide { height: 340px; }
  .slide-content { padding: 24px 24px; }
  .slide-title { font-size: 1.9rem; }
  .slide-badge { display: none; }
  .page-content { padding: 24px 16px 48px; }
  .seo-section { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .slide { height: 280px; }
  .slide-title { font-size: 1.5rem; }
  .slide-desc { font-size: 0.85rem; display: none; }
  .slide-cta { font-size: 0.82rem; padding: 12px 24px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .top-header { padding: 0 14px; gap: 10px; }
  .header-search { max-width: 200px; }
  .btn-register, .btn-login { padding: 9px 14px; font-size: 0.78rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .promos-grid { grid-template-columns: 1fr; }
  .seo-section h2 { font-size: 1.2rem; }
}

/* ==============================================
   UTILITY
   ============================================== */
.gold-text   { color: var(--gold-text); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--text-white); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.hidden { display: none !important; }

/* Scroll reveal */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
