:root {
  --bg-primary: #0D1D23;
  --bg-secondary: #12282A;
  --bg-tertiary: #1A3338;
  --bg-card: #162D32;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted: rgba(255,255,255,0.5);
  --accent-green: #0CAD77;
  --accent-mint: #4EFFC3;
  --accent-gold: #E5A235;
  --gradient-mint: linear-gradient(135deg, #4EFFC3, #25CE76);
  --btn-primary-bg: #E5A235;
  --btn-primary-text: #12282A;
  --btn-secondary-bg: #0CAD77;
  --btn-secondary-text: #FFFFFF;
  --sidebar-width: 240px;
  --sidebar-collapsed: 64px;
  --header-height: 56px;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Oswald', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  font-size: 14px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; color: inherit; font-family: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13.6px 12px;
  border-radius: 84px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
  text-decoration: none;
  transition: background-color 250ms cubic-bezier(0.4,0,0.2,1),
              box-shadow 250ms cubic-bezier(0.4,0,0.2,1),
              transform 0.15s;
  white-space: nowrap;
  border: 0;
}
.btn:hover { transform: scale(1.02); }
.btn-primary {
  background: linear-gradient(rgb(255,199,2) 0%, rgb(255,139,32) 100%);
  color: rgba(0,0,0,0.87);
  box-shadow: rgba(0,0,0,0.1) 0px 10px 26px 0px,
              rgba(0,0,0,0.25) 0px -4px 0px 0px inset;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 3px solid rgb(12,173,119);
  padding: 10.8px 12px;
  box-shadow: rgba(0,0,0,0.1) 0px 10px 26px 0px;
}

/* === SIDEBAR (Desktop) === */
.sidebar {
  position: fixed;
  left: 0; top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: linear-gradient(rgb(41, 38, 58) 0%, rgb(37, 85, 98) 100%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease;
  overflow: visible;
}
.sidebar-content, .sidebar-collapsed { overflow: hidden; }
.sidebar.collapsed { width: var(--sidebar-collapsed); }
.sidebar.collapsed .sidebar-content { opacity: 0; pointer-events: none; }
.sidebar.collapsed .sidebar-collapsed { opacity: 1; pointer-events: auto; }

.sidebar-toggle {
  position: absolute;
  right: -14px; top: 24px;
  width: 28px; height: 28px;
  background: #1A3C3E;
  border: 2px solid #2A5558;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 101;
  transition: transform 0.3s;
  color: var(--accent-mint);
}
.sidebar-toggle:hover { background: #2A5558; }
.sidebar-toggle svg { width: 14px; height: 14px; }
.sidebar.collapsed .sidebar-toggle { transform: rotate(180deg); }

.sidebar-content {
  display: flex;
  flex-direction: column;
  padding: 16px;
  height: 100%;
  transition: opacity 0.2s;
}

.sidebar-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  padding: 12px 0;
  display: block;
  letter-spacing: 1px;
}
.sidebar-logo-mini {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.sidebar-collapsed {
  position: absolute;
  top: 0; left: 0;
  width: var(--sidebar-collapsed);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.sidebar-signup { width: 100%; margin: 12px 0; text-align: center; }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  overflow-y: auto;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}
.nav-item:hover { background: var(--bg-tertiary); }
.nav-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav-icon svg { width: 100%; height: 100%; display: block; }

/* === MOBILE HEADER === */
.mobile-header {
  display: none;
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: var(--bg-secondary);
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  z-index: 90;
}
.burger-btn {
  position: absolute;
  left: 16px;
  width: 28px; height: 22px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.burger-btn span {
  display: block;
  height: 3px;
  background: var(--accent-mint);
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  left: -280px; top: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(rgb(41, 38, 58) 0%, rgb(37, 85, 98) 100%);
  z-index: 200;
  transition: left 0.3s ease;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
}
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu.open { left: 0; }
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-menu-header {
  display: flex;
  justify-content: flex-start;
  padding: 16px;
}
.close-btn {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}
.close-btn:hover { color: #fff; }
.close-btn svg { width: 100%; height: 100%; }
.mobile-menu-content { padding: 0 16px 24px; flex: 1; }
.mobile-menu-buttons { display: flex; gap: 8px; margin-bottom: 16px; }
.mobile-menu-buttons .btn { flex: 1; }
.mobile-nav { display: flex; flex-direction: column; gap: 2px; }

/* === TOP BAR (Desktop) === */
.top-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: var(--sidebar-width);
  height: var(--header-height);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  z-index: 80;
  transition: left 0.3s ease;
  pointer-events: none;
}
.top-bar-actions { pointer-events: auto; display: flex; gap: 8px; }
.sidebar.collapsed ~ .top-bar { left: var(--sidebar-collapsed); }

/* === MAIN CONTENT === */
.main-content {
  margin-left: var(--sidebar-width);
  padding-top: 0;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}
.sidebar.collapsed ~ .main-content,
.sidebar.collapsed ~ .top-bar ~ .main-content { margin-left: var(--sidebar-collapsed); }

/* === HERO === */
.hero-section { position: relative; margin-bottom: 24px; }
.hero-carousel { position: relative; overflow: hidden; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.hero-track { display: flex; transition: transform 0.5s ease; }
.hero-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/6;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-content {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  padding: 60px 48px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-slide-content.hero-slide-content-top {
  top: 10px;
  left: 57px;
  bottom: auto;
  padding: 18px 48px 72px;
  background: none;
}
.hero-slide-content h2,
.hero-slide-content h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}
.hero-slide-content .hero-h1 {
  font-size: 36px;
}
.hero-slide-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: var(--text-secondary);
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13.6px 30.4px;
  background: linear-gradient(rgb(78,255,195) 0%, rgb(37,206,118) 100%);
  color: rgba(0,0,0,0.87);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  border-radius: 84px;
  width: fit-content;
  margin-top: 8px;
  text-transform: none;
  box-shadow: rgba(0,0,0,0.1) 0px 10px 26px 0px,
              rgba(0,0,0,0.25) 0px -4px 0px 0px inset;
  transition: transform 0.15s, box-shadow 0.2s;
}
.hero-btn:hover { transform: scale(1.03); box-shadow: 0 4px 20px rgba(78,255,195,0.3); }

.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
  color: rgb(143,154,161);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
}
.hero-arrow:hover { background: rgba(0,0,0,0.95); color: #fff; }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }

.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.hero-dot.active { background: var(--accent-mint); width: 20px; border-radius: 4px; }

.hero-nav-buttons {
  display: none;
  gap: 4px;
  padding: 16px;
}
.hero-nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(25, 51, 61);
  border-radius: 3996px;
  height: 54px;
  padding: 0 16px;
}
.hero-nav-btn:active { opacity: 0.9; }
.hero-nav-btn-left {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}
.hero-nav-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  flex: 0 0 auto;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-nav-text {
  font-family: var(--font-primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-nav-chevron {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  margin-left: 4px;
}

/* === CAROUSEL SECTIONS === */
.carousel-section {
  padding: 0 24px;
  margin-bottom: 30px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-icon { width: 32px; height: 32px; align-self: center; }
.section-title-wrap h2 {
  font-family: var(--font-secondary);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.167;
}
.view-all-link {
  color: var(--accent-mint);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  text-transform: none;
}
.view-all-link:hover { text-decoration: underline; }

.carousel-wrapper { position: relative; }

.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.8);
  border-radius: 50%;
  color: rgb(143,154,161);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  opacity: 0;
}
.carousel-wrapper:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: rgba(0,0,0,0.95); color: #fff; }
.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }

/* === GAME CARDS === */
.game-card {
  flex-shrink: 0;
  width: 213px;
  scroll-snap-align: start;
}
.game-card-link { display: block; }
.game-card-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 7/5;
  background: var(--bg-card);
}
.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.game-card-link:hover .game-card-image img { transform: scale(1.05); }

.game-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.game-card-link:hover .game-card-overlay { opacity: 1; }
.play-btn {
  width: 48px; height: 48px;
  background: var(--btn-primary-bg);
  border-radius: 50%;
  position: relative;
}
.play-btn::after {
  content: '';
  position: absolute;
  left: 52%; top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--bg-primary);
}

.game-card-title {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.game-card-link:hover .game-card-title { color: var(--text-primary); }

/* === LIVE CASINO 2-ROW CAROUSEL === */
.lc-track {
  display: flex;
  gap: 12px;
}
.lc-column {
  flex-shrink: 0;
  width: 213px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
}
.lc-card {
  background-color: rgb(20, 55, 60);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.lc-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.lc-card-image {
  position: relative;
  aspect-ratio: 213 / 152;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-card);
}
.lc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-out;
}
.lc-card-link:hover .lc-card-image img { transform: scale(1.05); }
.lc-card-image .game-card-overlay {
  border-radius: 8px;
}
.lc-card-link:hover .game-card-overlay { opacity: 1; }
.lc-card-info {
  padding: 10px 8px 12px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.lc-game-name {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lc-provider {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: rgb(112, 255, 207);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === DRAG SCROLL === */
.drag-scroll .carousel-track { cursor: grab; scroll-snap-type: none; }
.drag-scroll .carousel-track.dragging { cursor: grabbing; scroll-behavior: auto; }

/* === TOP WINNERS CARDS === */
.tw-track {
  gap: 10px;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.tw-card {
  flex-shrink: 0;
  width: 216px;
  display: flex;
  align-items: center;
  padding: 9px 4px;
  background-color: rgb(20, 55, 60);
  border-radius: 12px;
  cursor: pointer;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}
.tw-thumb {
  width: 55px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(0,0,0,0.55) -3.55px -3.55px 10.66px inset,
              rgba(0,0,0,0.55) 3.55px 3.55px 10.66px inset;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-card);
}
.tw-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4px;
  flex: 1;
  min-width: 0;
}
.tw-game {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-primary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tw-user {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: rgb(143, 154, 161);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tw-amount {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  background: linear-gradient(rgb(255, 184, 77) 0%, rgb(255, 139, 32) 100%) text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === SPORT LINK GRID === */
.sl-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.sl-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(20, 55, 60);
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background-color 0.2s;
}
.sl-card:hover { background-color: rgb(25, 65, 72); }
.sl-left {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.sl-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.sl-title {
  margin-left: 16px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sl-chevron {
  flex-shrink: 0;
  margin-left: 8px;
}

/* === GAME PROVIDERS FEATURED BANNER === */
.gp-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  height: 300px;
  margin-bottom: 16px;
}
.gp-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 24px 32px;
}
.gp-banner-logo-row {
  display: flex;
  align-items: center;
}
.gp-banner-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.gp-banner-name {
  margin: 0;
  color: white;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1;
}
.gp-banner-desc {
  margin: 0 0 24px;
  font-family: var(--font-primary);
  line-height: 1.5;
  color: white;
  font-weight: 400;
  font-size: 14px;
}
.gp-banner-btn-wrap {
  display: flex;
}
.gp-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 84px;
  padding: 13.6px 30.4px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
  color: rgba(0,0,0,0.87);
  background: linear-gradient(rgb(78,255,195) 0%, rgb(37,206,118) 100%);
  box-shadow: rgba(0,0,0,0.1) 0px 10px 26px 0px,
              rgba(0,0,0,0.25) 0px -4px 0px 0px inset;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}
.gp-banner-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(78,255,195,0.3);
}

/* === GAME PROVIDERS CHIP SLIDER === */
.gp-slider-wrapper {
  position: relative;
}
.gp-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gp-track::-webkit-scrollbar { display: none; }
.gp-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 8px;
  gap: 4px;
  background-color: rgb(20, 55, 60);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s;
}
.gp-chip:hover { background-color: rgb(25, 65, 72); }
.gp-chip img {
  object-fit: contain;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.gp-chip-name {
  margin: 0;
  font-family: var(--font-primary);
  line-height: 1.5;
  color: white;
  font-weight: 700;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* === ALL GAMES 2-ROW CAROUSEL === */
.ag-track {
  display: flex;
  gap: 12px;
}
.ag-column {
  flex-shrink: 0;
  width: 213px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
}
.ag-column .game-card {
  width: auto;
}
.ag-column .game-card-image {
  aspect-ratio: 7 / 5;
  border-radius: 12px;
  background-color: rgb(25, 51, 61);
}

/* === FOOTER === */
.site-footer {
  margin-left: var(--sidebar-width);
  padding: 40px 24px 24px;
  background: var(--bg-secondary);
  margin-top: 40px;
  transition: margin-left 0.3s ease;
}
.sidebar.collapsed ~ .main-content ~ .site-footer,
.sidebar.collapsed ~ .site-footer { margin-left: var(--sidebar-collapsed); }

.footer-links {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-column { flex: 1; }
.footer-column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.footer-column-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-green);
}
.footer-column-header .chevron {
  width: 20px; height: 21px;
  display: none;
}
.footer-list li { margin-bottom: 8px; }
.footer-list a {
  color: var(--accent-green);
  font-size: 13px;
  transition: opacity 0.2s;
}
.footer-list a:hover { opacity: 0.8; text-decoration: underline; }

.footer-license {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.license-seal img {
  width: 80px;
  height: auto;
}

.footer-legal {
  text-align: center;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-legal strong { color: var(--accent-green); }

.footer-responsible {
  text-align: center;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--text-secondary);
}
.footer-responsible p { margin-bottom: 12px; }
.responsible-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.responsible-links div { display: flex; gap: 8px; align-items: center; }
.responsible-links strong { color: var(--text-primary); }
.responsible-links a { color: var(--accent-green); }
.responsible-links a:hover { text-decoration: underline; }

.footer-badge {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}
.age-badge { opacity: 0.8; }

.mobile-only { display: none; }

/* === LOGIN CHECK MODAL === */
.login-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1300;
  background-color: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
}
.login-modal-overlay.active {
  display: flex;
}
.login-modal {
  position: relative;
  background-image: linear-gradient(rgb(41,38,58) 0%, rgb(20,74,79) 100%);
  min-width: 375px;
  max-width: 375px;
  border-radius: 12px;
  text-align: center;
  padding: 40px 16px 24px;
}
.login-modal-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 16px;
  cursor: pointer;
  z-index: 1;
}
.login-modal-close:hover svg { opacity: 0.8; }
.login-modal-title {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.167;
  margin: -16px 0 0;
  color: #fff;
}
.login-modal-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-radius: 84px;
  padding: 13.6px 30.4px;
  font-family: Montserrat, Oswald, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
  text-decoration: none;
  text-align: center;
  color: rgba(0,0,0,0.87);
  cursor: pointer;
  box-shadow: rgba(0,0,0,0.1) 0px 10px 26px 0px, rgba(0,0,0,0.25) 0px -4px 0px 0px inset;
  transition: opacity 0.2s;
}
.login-modal-btn:hover { opacity: 0.9; }
.login-modal-btn-green {
  background: linear-gradient(rgb(78,255,195) 0%, rgb(37,206,118) 100%);
  margin: 24px 0 16px;
}
.login-modal-btn-yellow {
  background: linear-gradient(rgb(255,199,2) 0%, rgb(255,139,32) 100%);
  margin: 0;
}
.login-modal-text {
  margin: 0 0 12px;
  font-size: 14px;
  color: #fff;
  font-family: Montserrat, sans-serif;
}