/* =============================================
   BETSIXTY CASINO — STYLE v2
   Brand: #28533A green | #E2FF02 lime | #5FEB7E accent | #F0C42B CTA
   Fonts: Outfit (variable, local) + Bebas Neue (local)
   ============================================= */

/* --- Local Fonts --- */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2 supports variations'),
       url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Variables --- */
:root {
  --bg-dark:       #17181A;
  --bg-mid:        #1E422D;
  --bg-sidebar:    #28533A;
  --accent-lime:   #E2FF02;
  --accent-green:  #5FEB7E;
  --accent-gold:   #F0C42B;
  --btn-border:    #669F7C;
  --text-white:    #FFFFFF;
  --text-muted:    #a0c8b0;
  --text-dim:      #669F7C;
  --border-subtle: rgba(255,255,255,0.08);
  --border-green:  rgba(95,235,126,0.2);
  --sidebar-w:     200px;
  --header-h:      64px;
  --radius-sm:     10px;
  --radius-md:     15px;
  --radius-lg:     20px;
  --font-display:  'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:     'Outfit', 'Arial', sans-serif;
  --tr:            0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--bg-sidebar); border-radius: 3px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(23,24,26,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.55); }

.header-inner {
  max-width: 100%;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-logo { flex-shrink: 0; }
.site-logo img { height: 34px; width: auto; transition: opacity var(--tr); }
.site-logo a:hover img { opacity: 0.82; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.header-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: all var(--tr);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--text-white); background: rgba(95,235,126,0.08); }

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

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--tr);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(23,24,26,0.99);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 20px 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity var(--tr), transform var(--tr);
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.mobile-nav ul a {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--tr);
}
.mobile-nav ul a:hover { color: var(--text-white); background: rgba(95,235,126,0.08); }
.mobile-nav-btns { display: flex; gap: 10px; }
.mobile-nav-btns .btn { flex: 1; justify-content: center; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-register {
  background: var(--accent-gold);
  color: #1E482D;
  box-shadow: 0 0 5px 0 rgba(204,171,255,0.3) inset;
}
.btn-register:hover { background: #f5d545; box-shadow: 0 0 14px rgba(240,196,43,0.45); transform: translateY(-1px); }

.btn-login {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--btn-border);
}
.btn-login:hover { background: #6EA985; border-color: #6EA985; }

.btn-green {
  background: var(--accent-green);
  color: #1E482D;
  box-shadow: 0 0 5px 0 rgba(204,171,255,0.3) inset;
}
.btn-green:hover { background: #80ffa8; box-shadow: 0 0 14px rgba(95,235,126,0.35); transform: translateY(-1px); }

.btn-lg { font-size: 14px; padding: 13px 24px; }
.btn-xl { width: 100%; }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: var(--sidebar-w);
  height: calc(100vh - var(--header-h));
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-subtle);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 18px 0 24px;
  scrollbar-width: thin;
}
.sidebar-logo { padding: 0 18px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 6px; }
.sidebar-logo img { width: 140px; height: auto; }

.sidebar-nav { display: flex; flex-direction: column; padding: 0 12px; gap: 2px; flex: 1; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-white);
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--tr);
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.06); color: var(--accent-green); }
.nav-icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }

.sidebar-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 10px 12px; }
.sidebar-btns { padding: 0 12px; display: flex; flex-direction: column; gap: 8px; }

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
  margin-left: var(--sidebar-w);
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  background: var(--bg-mid);
  width: calc(100% - var(--sidebar-w));
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  margin-left: var(--sidebar-w);
  width: calc(100% - var(--sidebar-w));
  background: #0d0f0e;
  border-top: 1px solid var(--border-subtle);
  padding: 40px 40px 24px;
}

/* =============================================
   HERO
   ============================================= */
.hero-section { position: relative; overflow: hidden; }

.hero-slideshow {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1E422D 0%, #17181A 65%);
  padding: 50px 40px 36px;
}

.hero-content { max-width: 520px; position: relative; z-index: 2; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.hero-title span { color: var(--accent-lime); }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.9;
}
.hero-cta-wrap {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Equal-width hero buttons */
.btn-hero {
  flex: 1;
  min-width: 140px;
  font-size: 14px;
  padding: 14px 20px;
  justify-content: center;
  letter-spacing: 1px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-white);
  opacity: 0.75;
}
.hero-trust svg { width: 13px; height: 13px; fill: var(--accent-green); flex-shrink: 0; }

.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Банер всередині hero-visual */
.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  z-index: 1;
  display: block;
}

/* Градієнт поверх банера */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, #1E422D 0%, transparent 25%),
    radial-gradient(circle at 55% 35%, rgba(95,235,126,0.10) 0%, transparent 55%),
    radial-gradient(circle at 75% 65%, rgba(226,255,2,0.05) 0%, transparent 45%);
}

/* Частинки — поверх всього */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  animation: float-p 6s ease-in-out infinite;
}
.hero-particle:nth-child(1){ width:6px;height:6px;background:var(--accent-lime);top:20%;left:20%;opacity:.6; }
.hero-particle:nth-child(2){ width:4px;height:4px;background:var(--accent-green);top:55%;left:60%;opacity:.5;animation-delay:-2s; }
.hero-particle:nth-child(3){ width:5px;height:5px;background:var(--accent-gold);top:75%;left:30%;opacity:.45;animation-delay:-4s; }
.hero-particle:nth-child(4){ width:3px;height:3px;background:var(--accent-lime);top:35%;left:78%;opacity:.55;animation-delay:-1s; }

/* Мобільний банер — прихований на десктопі */
.hero-mobile-banner { display: none; }

@keyframes float-p {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* =============================================
   SECTION COMMON
   ============================================= */
.content-section  { padding: 24px 40px 28px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-white);
  margin-bottom: 18px;
}
.section-title span { color: var(--accent-lime); }

/* =============================================
   PROVIDERS
   ============================================= */
.providers-section { padding: 24px 40px 20px; text-align: center; }
.providers-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.provider-chip {
  background: rgba(40,83,58,0.45);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 18px -4px rgba(0,0,0,0.35);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all var(--tr);
  cursor: default;
}
.provider-chip:hover { color: var(--accent-green); box-shadow: 0 0 12px rgba(95,235,126,0.15); }

/* =============================================
   GAMES GRID
   ============================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr);
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.45); }

.game-card-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.game-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-card-img img { transform: scale(1.06); }

.game-card-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  z-index: 2;
}
.badge-hot { background: #f44336; color: #fff; }
.badge-new { background: var(--accent-green); color: #1E482D; }
.badge-top { background: var(--accent-gold); color: #1E482D; }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,24,26,0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 10px;
  opacity: 0;
  transition: opacity var(--tr);
  border-radius: var(--radius-md);
}
.game-card:hover .game-card-overlay { opacity: 1; }

.btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--accent-green);
  color: #1E482D;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  transition: background var(--tr);
  cursor: pointer;
}
.btn-play:hover { background: #80ffa8; }

.game-card-name {
  font-weight: 700;
  font-size: 13px;
  margin-top: 7px;
  padding: 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-provider { font-size: 11px; color: var(--text-dim); padding: 0 2px; }

/* =============================================
   BANNER
   ============================================= */
.banner-section { padding: 10px 40px 20px; }
.banner-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--tr);
}
.banner-wrap:hover { box-shadow: 0 8px 28px rgba(95,235,126,0.18); }
.banner-wrap img { width: 100%; height: auto; display: block; }

/* =============================================
   BONUS CARDS
   ============================================= */
.bonus-section { padding: 24px 40px 28px; }
.bonus-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.bonus-card {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  cursor: pointer;
  transition: border-color var(--tr), box-shadow var(--tr);
  background: linear-gradient(135deg, #1a2e22, #17181A);
}
.bonus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  pointer-events: none;
}
.bonus-card:hover { border-color: rgba(95,235,126,0.3); box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.bonus-card-content { position: relative; z-index: 1; }
.bonus-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 10px;
}
.bonus-card-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.65;
  opacity: 0.85;
}

/* =============================================
   SEO / CONTENT SECTION
   ============================================= */
.description-section { padding: 24px 40px 20px; }
.description-section h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-white);
  margin: 28px 0 10px;
}
.description-section h2:first-child { margin-top: 0; }
.description-section h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--accent-lime);
  margin: 22px 0 8px;
}
.description-section p {
  font-size: 15px;
  color: var(--text-white);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 14px;
}
.description-section strong { color: var(--text-white); opacity: 1; font-weight: 700; }
.description-section a { color: var(--accent-green); text-decoration: underline; }
.description-section a:hover { color: var(--accent-lime); }

/* =============================================
   TABLES  (inside .description-section or .seo-content)
   ============================================= */
.description-section table,
.seo-content table,
.main-content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  margin: 24px 0 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.description-section thead,
.seo-content thead,
.main-content thead {
  background: linear-gradient(135deg, rgba(40,83,58,0.9), rgba(95,235,126,0.08));
}

.description-section thead tr,
.seo-content thead tr,
.main-content thead tr {
  border-bottom: 2px solid var(--accent-lime);
}

.description-section th,
.seo-content th,
.main-content th {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-lime);
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}

.description-section tbody tr,
.seo-content tbody tr,
.main-content tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--tr);
}

.description-section tbody tr:last-child,
.seo-content tbody tr:last-child,
.main-content tbody tr:last-child {
  border-bottom: none;
}

.description-section tbody tr:nth-child(even),
.seo-content tbody tr:nth-child(even),
.main-content tbody tr:nth-child(even) {
  background: rgba(95,235,126,0.03);
}

.description-section tbody tr:hover,
.seo-content tbody tr:hover,
.main-content tbody tr:hover {
  background: rgba(95,235,126,0.07);
}

.description-section td,
.seo-content td,
.main-content td {
  padding: 12px 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
}

.description-section td:first-child,
.seo-content td:first-child,
.main-content td:first-child {
  font-weight: 700;
  color: var(--text-white);
}

/* Responsive table */
@media (max-width: 680px) {
  .description-section table,
  .seo-content table,
  .main-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-radius: var(--radius-sm);
  }
  .description-section th,
  .description-section td,
  .seo-content th,
  .seo-content td,
  .main-content th,
  .main-content td {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* =============================================
   LISTS  (inside .description-section or .seo-content)
   ============================================= */
.description-section ol,
.description-section ul,
.seo-content ol,
.seo-content ul,
.main-content .seo-content ol,
.main-content .seo-content ul {
  padding-left: 1.5em;
  margin: 12px 0 18px;
  box-sizing: border-box;
  max-width: 100%;
}

/* Ordered */
.description-section ol,
.seo-content ol {
  list-style: decimal;
}
.description-section ol li,
.seo-content ol li {
  list-style: decimal;
  padding-left: 0.4em;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-white);
  opacity: 0.85;
  line-height: 1.75;
}
.description-section ol li::marker,
.seo-content ol li::marker {
  color: var(--accent-lime);
  font-weight: 700;
}

/* Unordered */
.description-section ul,
.seo-content ul {
  list-style: disc;
}
.description-section ul li,
.seo-content ul li {
  list-style: disc;
  padding-left: 0.4em;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-white);
  opacity: 0.85;
  line-height: 1.75;
}
.description-section ul li::marker,
.seo-content ul li::marker {
  color: var(--accent-lime);
}

/* Nested */
.description-section ol ol, .description-section ol ul,
.description-section ul ul, .description-section ul ol,
.seo-content ol ol, .seo-content ol ul,
.seo-content ul ul, .seo-content ul ol {
  margin: 6px 0 6px 1em;
}

/* Protect nav/UI lists */
nav ul, nav ol,
.header-nav ul,
.mobile-nav ul,
.sidebar-nav ul,
.footer-links,
.provider-chip,
.providers-grid {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

/* Responsive lists */
@media (max-width: 680px) {
  .description-section ol,
  .description-section ul,
  .seo-content ol,
  .seo-content ul {
    padding-left: 1.25em;
  }
  .description-section ol li,
  .description-section ul li,
  .seo-content ol li,
  .seo-content ul li {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .description-section ol,
  .description-section ul,
  .seo-content ol,
  .seo-content ul {
    padding-left: 1.1em;
  }
  .description-section ol li,
  .description-section ul li,
  .seo-content ol li,
  .seo-content ul li {
    font-size: 13px;
  }
}

/* =============================================
   PAYMENT METHODS
   ============================================= */
.payments-section {
  padding: 24px 40px;
  background: rgba(95,235,126,0.03);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.payments-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.payment-badge {
  background: rgba(40,83,58,0.4);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--tr);
}
.payment-badge:hover { border-color: rgba(95,235,126,0.5); color: var(--accent-green); }

/* =============================================
   FAQ
   ============================================= */
.faq-section { padding: 24px 40px 40px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: rgba(30,66,45,0.3);
  border: 1px solid #464646;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--tr);
}
.faq-item:hover { border-color: rgba(95,235,126,0.3); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  text-align: left;
  gap: 12px;
  transition: color var(--tr);
}
.faq-question:hover { color: var(--accent-green); }

.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(95,235,126,0.1);
  border: 1px solid var(--btn-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 16px;
  transition: all var(--tr);
}
.faq-item.open .faq-icon { background: rgba(95,235,126,0.2); color: var(--accent-green); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-white);
  opacity: 0.85;
  line-height: 1.7;
  border-top: 0 solid #464646;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  border-top-width: 1px;
  padding: 12px 20px 18px;
}
.faq-question {
  cursor: pointer;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 22px;
}
.footer-brand-logo { height: 30px; margin-bottom: 14px; }
.footer-text { font-size: 13px; color: var(--text-dim); line-height: 1.7; margin-bottom: 18px; max-width: 280px; }

.footer-social { display: flex; gap: 8px; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(40,83,58,0.4);
  border: 1px solid var(--border-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--tr);
  user-select: none;
}
.social-icon:hover { background: rgba(95,235,126,0.14); border-color: rgba(95,235,126,0.4); color: var(--accent-green); transform: translateY(-2px); }

.footer-col-title { font-weight: 700; font-size: 14px; color: var(--text-white); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text-dim); transition: color var(--tr); }
.footer-links a:hover { color: var(--accent-green); }

.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom-left { display: flex; align-items: flex-start; gap: 10px; }
.age-badge {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(95,235,126,0.08);
  border: 1.5px solid var(--btn-border);
  color: var(--accent-green);
  font-weight: 900;
  font-size: 11px;
  margin-top: 2px;
}
.footer-disclaimer { font-size: 12px; color: var(--text-dim); line-height: 1.65; max-width: 580px; }
.footer-copy { font-size: 12px; color: var(--text-dim); white-space: nowrap; align-self: flex-end; }

/* =============================================
   FADE-IN
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 0.1s; }
.fd2 { transition-delay: 0.2s; }
.fd3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE — ≤ 1024px (no sidebar)
   ============================================= */
@media (max-width: 1024px) {
  .header-nav  { display: none; }
  .header-btns { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav  { display: block; }
  .sidebar     { display: none; }

  .main-content { margin-left: 0; width: 100%; }
  .site-footer  { margin-left: 0; width: 100%; padding: 32px 24px 20px; }

  .content-section,
  .providers-section,
  .bonus-section,
  .description-section,
  .faq-section { padding-left: 20px; padding-right: 20px; }

  .banner-section   { padding: 10px 20px 16px; }
  .payments-section { padding: 20px; }

  .hero-slideshow { padding: 36px 24px 30px; min-height: 340px; }
  .hero-visual    { display: none; }
  .hero-mobile-banner {
  display: block;
  width: 100%;
  margin-top: 32px;
  opacity: 1;
}

.hero-cta-wrap {
  margin-bottom: 24px;
}

.hero-mobile-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
  .hero-content   { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* =============================================
   RESPONSIVE — ≤ 767px (mobile)
   ============================================= */
@media (max-width: 767px) {
  :root { --header-h: 58px; }
  .mobile-nav { top: 58px; }
  .header-inner { padding: 0 16px; }
  .site-logo img { height: 28px; }

  .hero-slideshow { padding: 28px 16px 24px; min-height: auto; }
  .hero-title  { font-size: 32px; }
  .hero-cta-wrap { flex-direction: column; align-items: stretch; }
  .hero-cta-wrap .btn { width: 100%; }

  .content-section,
  .providers-section,
  .bonus-section,
  .description-section,
  .faq-section { padding-left: 16px; padding-right: 16px; }
  .banner-section   { padding: 8px 16px 14px; }
  .payments-section { padding: 18px 16px; }

  .section-title { font-size: 26px; margin-bottom: 14px; }

  .providers-grid { gap: 6px; }
  .provider-chip { padding: 8px 12px; font-size: 11px; }

  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .bonus-cards  { grid-template-columns: 1fr; }
  .bonus-card   { min-height: 160px; padding: 24px 20px; }
  .bonus-card-title { font-size: 20px; }

  .description-section p    { font-size: 14px; }
  .description-section h2   { font-size: 22px; }
  .description-section h3   { font-size: 18px; }

  .faq-question { font-size: 14px; padding: 14px 16px; }
  .faq-item.open .faq-answer { padding: 10px 16px 16px; }

  .footer-grid   { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .footer-copy   { align-self: flex-start; }
}

@media (max-width: 420px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .hero-title { font-size: 28px; }
}