/* CSS from site configuration */
      /* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== VARIABLES ===== */
:root {
  --yellow: #FFDC00;
  --yellow-hover: #e6c600;
  --dark: #1a1a1a;
  --darker: #111;
  --gray-dark: #2a2a2a;
  --gray-mid: #3a3a3a;
  --gray: #888;
  --gray-light: #ccc;
  --white: #fff;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --max-width: 1380px;
  --nav-height: 56px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 8px;
}
.navbar .logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.navbar .logo a img {
  height: 32px;
  width: auto;
}
.navbar-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.navbar .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  margin-right: 12px;
}
.navbar .hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s;
}
.nav-menu { display: flex; gap: 4px; flex: 1; }
.nav-menu a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: background .2s;
  white-space: nowrap;
}
.nav-menu a:hover { background: var(--gray-dark); }
.nav-mobile-links { display: none; }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.btn-nav {
  height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .1s;
}
.btn-nav:active { transform: scale(.97); }
.btn-login { background: var(--gray-dark); color: var(--white); }
.btn-login:hover { background: var(--gray-mid); }
.btn-register { background: var(--yellow); color: var(--dark); }
.btn-register:hover { background: var(--yellow-hover); }
/* Mobile auth bar - hidden on desktop */
.mobile-auth-bar { display: none; }

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
}
.btn-icon:hover { background: var(--gray-mid); }

/* ===== PAGE TABS ===== */
.page-tabs {
  padding: 16px 20px 8px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 16px;
}
.page-tabs a {
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 0.03em;
}
.page-tabs a.active { color: var(--dark); }

/* ===== BANNER SLIDER ===== */
.banner-slider {
  max-width: var(--max-width);
  margin: 8px auto 0;
  padding: 0 20px;
  position: relative;
}
.banner-slider .slides-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.banner-slider .slides-track {
  display: flex;
  transition: transform .5s ease;
}
.banner-slider .slide {
  min-width: 100%;
  display: flex;
  position: relative;
  background: #5a2d0c;
  min-height: 380px;
  overflow: hidden;
}
.slide-content {
  flex: 0 0 42%;
  padding: 64px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  color: var(--white);
}
.slide-badge {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.slide-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.slide-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
}
.slide-buttons { display: flex; gap: 8px; }
.slide-buttons .btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: background .2s;
}
.slide-buttons .btn:first-child { background: var(--dark); color: var(--white); }
.slide-buttons .btn:first-child:hover { background: #333; }
.slide-buttons .btn:last-child { background: rgba(255,255,255,.15); color: var(--white); }
.slide-buttons .btn:last-child:hover { background: rgba(255,255,255,.25); }
.slide-image {
  flex: 0 0 58%;
  position: relative;
  overflow: hidden;
}
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-legal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  padding: 6px 20px;
  background: rgba(0,0,0,.3);
  z-index: 3;
}
.slider-nav {
  position: absolute;
  top: 16px;
  left: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
.slider-dots { display: flex; gap: 6px; }
.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .2s;
}
.slider-dots .dot.active { background: var(--yellow); }
.slider-arrows { display: flex; gap: 4px; }
.slider-arrows button {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,.5);
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.slider-arrows button:hover { background: rgba(0,0,0,.7); }

/* ===== GAME SECTIONS ===== */
.game-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 0;
}
.game-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 16px;
}
.game-section-title {
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  color: var(--dark);
}
.game-section-desc {
  font-size: 13px;
  color: var(--gray);
  margin-top: 2px;
  max-width: 700px;
}
.game-section-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.btn-view-all {
  padding: 6px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  white-space: nowrap;
}
.btn-view-all:hover { background: #f5f5f5; }
.btn-slide-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 14px;
}
.btn-slide-nav:hover { background: #f5f5f5; }
.games-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.games-row::-webkit-scrollbar { display: none; }
.game-card {
  flex: 0 0 calc(16.6667% - 8.33333px);
  min-width: 160px;
  cursor: pointer;
}
.game-thumb {
  position: relative;
  width: 100%;
  padding-top: 63%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-dark);
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.game-card:hover .game-overlay { opacity: 1; }
.btn-play {
  padding: 8px 24px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-md);
}
.btn-play:hover { background: var(--yellow-hover); }
.game-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== JACKPOT PANELS ===== */
.jackpots-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 0;
}
.jackpots-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.jackpots-row::-webkit-scrollbar { display: none; }
.jackpot-card {
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: 320px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
}
.jackpot-thumb {
  width: 140px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: #333;
}
.jackpot-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  text-transform: uppercase;
}
.jackpot-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 4px;
}
.jackpot-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 4px;
}
.jackpot-game {
  font-size: 11px;
  color: var(--gray);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--darker);
  color: var(--gray);
  margin-top: 40px;
  padding: 40px 20px 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-langs {
  display: flex;
  gap: 8px;
}
.footer-langs .flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.footer-langs .flag.active,
.footer-langs .flag:hover { background: var(--gray-mid); color: var(--white); }
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--gray-mid); color: var(--white); }
.footer-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.footer-menu ul { display: flex; flex-direction: column; gap: 8px; }
.footer-menu a {
  font-size: 13px;
  color: var(--gray);
  transition: color .2s;
}
.footer-menu a:hover { color: var(--white); }
.footer-license {
  font-size: 12px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 24px;
  max-width: 700px;
}
.footer-license .title { font-weight: 700; margin-bottom: 8px; color: var(--gray-light); }
.footer-license a { color: var(--gray-light); text-decoration: underline; }
.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-badges img { height: 40px; opacity: .6; }
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  border-top: 1px solid var(--gray-dark);
}
.footer-payments img { height: 28px; transition: opacity .2s; background-color:white;}
.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  padding-top: 16px;
}

/* ===== MOBILE MENU ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--dark);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform .3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-dark);
}
.mobile-nav-header .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav-header .logo img {
  height: 28px;
  width: auto;
}
.mobile-nav-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  background: var(--gray-dark);
  border-radius: var(--radius-sm);
}
.mobile-nav-body { padding: 16px 20px; flex: 1; }
.mobile-nav-body .btn-full {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.mobile-nav-body .btn-register-m { background: var(--yellow); color: var(--dark); }
.mobile-nav-body .btn-login-m {
  background: transparent;
  border: 1px solid var(--yellow);
  color: var(--yellow);
}
.mobile-accordion { margin-top: 16px; }
.mobile-accordion .acc-item { border-bottom: 1px solid var(--gray-dark); }
.mobile-accordion .acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.mobile-accordion .acc-header .arrow {
  transition: transform .2s;
  font-size: 12px;
}
.mobile-accordion .acc-item.active .acc-header .arrow { transform: rotate(180deg); }
.mobile-accordion .acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.mobile-accordion .acc-item.active .acc-body { max-height: 200px; }
.mobile-accordion .acc-body a {
  display: block;
  padding: 8px 0 8px 16px;
  color: var(--gray);
  font-size: 13px;
}
.mobile-accordion .acc-body a:hover { color: var(--white); }
.mobile-nav-links {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav-links a {
  color: var(--gray);
  font-size: 13px;
  padding: 4px 0;
}
.mobile-nav-links a:hover { color: var(--white); }
.mobile-nav-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--gray-dark);
  font-size: 11px;
  color: var(--gray);
}

/* ===== RESPONSIVE ===== */

/* --- Nav Dropdown (categories / info pages) --- */
.nav-dropdown {
  position: relative;
  display: inline-flex;
}
.nav-dropdown-toggle {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: background .2s;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-toggle:hover { background: var(--gray-dark); }
.nav-arrow {
  font-size: 9px;
  transition: transform .2s;
}
.nav-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius-md);
  padding: 6px 0;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  z-index: 200;
  list-style: none;
  margin: 4px 0 0;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu li a:hover {
  background: var(--gray-dark);
  color: var(--white);
}

@media (max-width: 1024px) {
  .game-card { flex: 0 0 calc((100% - 36px) / 4); min-width: 150px; }
  .jackpot-card { flex: 0 0 calc((100% - 12px) / 2); min-width: 280px; }
  .slide-title { font-size: 22px; }
  .slide-description { font-size: 13px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 50px; }

  .navbar .hamburger { display: flex; }
  .nav-menu { display: none; }
  .nav-actions .btn-icon:not(.btn-search) { display: none; }
  .navbar .logo a { width: 100px; }
  .btn-login, .btn-register { display: none; }

  .mobile-auth-bar {
    display: flex;
    position: sticky;
    top: var(--nav-height);
    z-index: 99;
    background: var(--dark);
  }
  .mobile-auth-bar .auth-btn {
    flex: 1;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .mobile-auth-bar .auth-login {
    background: var(--gray-dark);
    color: var(--white);
  }
  .mobile-auth-bar .auth-register {
    background: var(--yellow);
    color: var(--dark);
  }

  .navbar-inner {
    justify-content: space-between;
  }
  .navbar .nav-mobile-links {
    display: flex;
    gap: 4px;
    margin-left: auto;
  }
  .navbar .nav-mobile-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    padding: 6px 10px;
  }

  .page-tabs { padding: 12px 16px 6px; }

  .banner-slider { padding: 0 12px; }
  .banner-slider .slide {
    min-height: 280px;
  }
  .slide-content {
    flex: 0 0 45%;
    padding: 48px 12px 40px;
    overflow: hidden;
  }
  .slide-image { flex: 0 0 55%; }
  .slide-title { font-size: 16px; margin-bottom: 6px; }
  .slide-description { font-size: 11px; line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .slide-buttons .btn { padding: 7px 12px; font-size: 11px; }
  .slide-legal { font-size: 9px; padding: 4px 12px; }
  .slider-nav { top: 8px; left: 12px; }
  .slider-dots .dot { width: 7px; height: 7px; }
  .slider-nav .arrow { width: 24px; height: 24px; font-size: 12px; }

  .game-section { padding: 16px 16px 0; }
  .game-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .game-section-title { font-size: 16px; }
  .game-section-desc { font-size: 12px; }
  .game-card { flex: 0 0 calc((100% - 12px) / 2.5); min-width: 130px; }

  .jackpots-section { padding: 16px 16px 0; }
  .jackpot-card { flex: 0 0 85%; min-width: 260px; }
  .jackpot-amount { font-size: 18px; }

  .footer-menu { grid-template-columns: 1fr 1fr; }
  .footer-license { font-size: 11px; }
}

@media (max-width: 480px) {
  .game-card { flex: 0 0 42%; }
  .slide-title { font-size: 16px; }
  .footer-menu { grid-template-columns: 1fr; }
}

/* ===== UTILITY ===== */
body.menu-open { overflow: hidden; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch.open > div:last-child { display: block !important; }
.lang-switch > div:last-child a:hover { color: #fff; background: var(--gray-dark); }

/* ===== LOGO TEXT ===== */
.logo-text-link { color: var(--white); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.navbar-logo-text { font-size: 15px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; }

/* ===== MOBILE FIXED ACTIONS ===== */
.mobile-fixed-actions { display: none; }
@media (max-width: 768px) {
  .mobile-fixed-actions {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background: var(--dark);
    border-top: 1px solid var(--gray-dark);
  }
  .mobile-fixed-actions a {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
  }
  .mobile-fixed-login { background: var(--gray-dark); color: var(--white); }
  .mobile-fixed-register { background: var(--yellow); color: var(--dark); }
  .site-footer { padding-bottom: 60px; }
}

/* ===== CONTENT SECTION ===== */
.content-section { color: var(--dark); line-height: 1.7; }
.content-section h1, .content-section h2, .content-section h3 { margin: 16px 0 8px; }
.content-section p { margin: 8px 0; }
.content-section a { color: #0066cc; }
.content-section ul, .content-section ol { margin: 8px 0; padding-left: 24px; list-style: revert; }

/* ===== PAGE H1 SECTION ===== */
.page-h1-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 20px 0;
}
.page-h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .page-h1-section { padding: 16px 16px 0; }
  .page-h1 { font-size: 22px; }
}

/* ===== STATIC / CATEGORY PAGE ===== */
.static-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px 40px;
}
.static-page .container { max-width: 900px; margin: 0 auto; }
.static-page .row { display: block; }
.static-page .col-12 { display: block; }

.static-page .page-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--yellow);
}

.static-page .page-content {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}
.static-page .page-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.static-page .page-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}
.static-page .page-content p {
  margin: 12px 0;
}
.static-page .page-content a {
  color: #d4a017;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.static-page .page-content a:hover {
  color: var(--yellow);
}
.static-page .page-content strong {
  font-weight: 700;
  color: var(--dark);
}
.static-page .page-content ul,
.static-page .page-content ol {
  margin: 12px 0;
  padding-left: 28px;
  list-style: revert;
}
.static-page .page-content li {
  margin: 6px 0;
  list-style: revert;
}
.static-page .page-content ol li {
  list-style-type: decimal;
}

/* Tables */
.static-page .page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.static-page .page-content thead th {
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.static-page .page-content tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.static-page .page-content tbody tr:last-child td {
  border-bottom: none;
}
.static-page .page-content tbody tr:nth-child(even) {
  background: #f8f8f8;
}

/* FAQ / Definition lists */
.static-page .page-content dl {
  margin: 20px 0;
}
.static-page .page-content dt {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
  margin-top: 20px;
  padding: 10px 14px;
  background: #f5f5f5;
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.static-page .page-content dd {
  margin: 8px 0 0 0;
  padding: 0 14px 16px;
  color: #555;
  line-height: 1.7;
  border-bottom: 1px solid #eee;
}

/* Blockquotes */
.static-page .page-content blockquote {
  border-left: 4px solid var(--yellow);
  margin: 16px 0;
  padding: 12px 20px;
  background: #fafafa;
  color: #555;
  font-style: italic;
}

@media (max-width: 768px) {
  .static-page {
    padding: 20px 16px 32px;
  }
  .static-page .page-title {
    font-size: 24px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .static-page .page-content h2 {
    font-size: 19px;
    margin-top: 24px;
  }
  .static-page .page-content h3 {
    font-size: 16px;
  }
  .static-page .page-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ===== BONUS POPUP ===== */
.bonus-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 16px;
}
.bonus-popup-overlay.active {
  display: flex;
  opacity: 1;
}
.bonus-popup-overlay.fade-in {
  opacity: 1;
}
.bonus-popup {
  position: relative;
  background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 50%, #111 100%);
  border: 1px solid rgba(255, 220, 0, 0.15);
  border-radius: 16px;
  padding: 32px 28px 24px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 0 60px rgba(255, 220, 0, 0.08),
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.bonus-popup-overlay.fade-in .bonus-popup {
  transform: translateY(0) scale(1);
}
.bonus-popup__glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 220, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.bonus-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #888;
  font-size: 20px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}
.bonus-popup__close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.bonus-popup__header {
  margin-bottom: 20px;
}
.bonus-popup__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.bonus-popup__bonus {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255, 220, 0, 0.08) 0%, rgba(255, 220, 0, 0.02) 100%);
  border: 1px solid rgba(255, 220, 0, 0.12);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.bonus-popup__gift {
  flex-shrink: 0;
  animation: popup-gift-pulse 2s ease-in-out infinite;
}
@keyframes popup-gift-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.bonus-popup__bonus-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}
.bonus-popup__bonus-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FFDC00;
}
.bonus-popup__bonus-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.bonus-popup__bonus-sub {
  font-size: 14px;
  font-weight: 600;
  color: #888;
}
.bonus-popup__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
  padding: 12px 0;
}
.bonus-popup__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.bonus-popup__stat-num {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.bonus-popup__stat-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bonus-popup__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}
.bonus-popup__text {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  margin: 0 0 20px;
}
.bonus-popup__text strong {
  color: #fff;
}
.bonus-popup__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #FFDC00 0%, #FFE84D 100%);
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: popup-cta-glow 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(255, 220, 0, 0.3);
}
.bonus-popup__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 220, 0, 0.4);
  background: linear-gradient(135deg, #FFE84D 0%, #FFDC00 100%);
}
@keyframes popup-cta-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 220, 0, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(255, 220, 0, 0.5); }
}
.bonus-popup__cta-text {
  color: #1a1a1a;
}
.bonus-popup__terms {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: #666;
}
@media (max-width: 480px) {
  .bonus-popup {
    padding: 24px 20px 20px;
    border-radius: 12px;
  }
  .bonus-popup__bonus {
    padding: 12px 14px;
    gap: 12px;
  }
  .bonus-popup__bonus-title {
    font-size: 18px;
  }
  .bonus-popup__gift svg {
    width: 36px;
    height: 36px;
  }
}
/* ===== SEO CONTENT ===== */
.content-section { padding: 24px 20px; }
.seo-content { max-width: 860px; width: 100%; margin: 0 auto; color: var(--dark); line-height: 1.7; font-size: 15px; }
.seo-content h2 { font-size: 20px; font-weight: 800; color: var(--dark); margin: 24px 0 10px; border-bottom: 1px solid #eee; padding-bottom: 6px; }
.seo-content h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 16px 0 6px; padding: 12px 0; border-bottom: 1px solid #eee; cursor: pointer; transition: color 0.2s; }
.seo-content h3.faq-open { color: var(--yellow); }
.seo-content h3 + p { display: none; padding: 8px 0 4px; color: #555; line-height: 1.7; }
.seo-content h3.faq-open + p { display: block; }
.seo-content p { margin: 8px 0; color: #333; }
.seo-content a { color: #0066cc; text-decoration: underline; }
.seo-content ul, .seo-content ol { margin: 8px 0 8px 24px !important; padding-left: 0 !important; }
.seo-content ul li, .seo-content ol li { list-style: disc !important; margin: 4px 0 !important; padding-left: 4px !important; }
.seo-content ol li { list-style-type: decimal !important; }
.seo-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; background: var(--white) !important; border: 1px solid #e0e0e0; }
.seo-content th { background: rgba(0,0,0,0.08) !important; color: var(--dark); padding: 10px 16px; text-align: left; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
.seo-content td { background: var(--white) !important; padding: 10px 16px; border-bottom: 1px solid #eee; vertical-align: top; }
.seo-content tr:nth-child(even) td { background: #f8f8f8 !important; }

/* ===== LANG SELECT ===== */
.lang-select { position: relative; }
.lang-select__btn { display: flex; align-items: center; gap: 4px; padding: 4px 8px; border-radius: var(--radius-md); background: var(--gray-dark); color: var(--white); font-size: 12px; font-weight: 700; cursor: pointer; border: none; }
.lang-select__btn:hover { background: var(--gray-mid); }
.lang-select__globe { flex-shrink: 0; }
.lang-select__label { white-space: nowrap; }
.lang-select__arrow { flex-shrink: 0; transition: transform 0.2s; }
.lang-select.open .lang-select__arrow { transform: rotate(180deg); }
.lang-select__dropdown { display: none; position: absolute; top: calc(100% + 4px); right: 0; background: var(--dark); border: 1px solid var(--gray-dark); border-radius: var(--radius-md); padding: 6px 0; min-width: 140px; box-shadow: 0 8px 24px rgba(0,0,0,.4); z-index: 300; list-style: none; }
.lang-select.open .lang-select__dropdown { display: block; }
.lang-select__option { padding: 8px 14px; color: #ccc; font-size: 13px; cursor: pointer; white-space: nowrap; transition: background .15s, color .15s; }
.lang-select__option:hover, .lang-select__option--active { background: var(--gray-dark); color: var(--white); }
@media (max-width: 768px) {
  .lang-select__label { display: none; }
}

/* hide lang switcher */
.lang-select { display: none !important; }
#mobileLangSelect { display: none !important; }
