
/* CSS VARIABLES */
:root {
  --bg-dark: #0f0a05;
  --bg-card: #1a1208;
  --bg-elevated: #241a0d;
  --bg-hover: #2e2112;
  --accent-gold: #d4a853;
  --accent-light: #e8c778;
  --accent-dim: #b8923d;
  --text-primary: #f5f0e8;
  --text-secondary: #a89b8a;
  --text-muted: #7a6f62;
  --border-subtle: rgba(212,168,83,0.12);
  --border-accent: rgba(212,168,83,0.25);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --sidebar-w: 220px;
  --header-h: 64px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dim);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15,10,5,0.97) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.menu-toggle:hover {
  background: var(--bg-elevated);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: var(--transition-fast);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.logo-accent {
  color: var(--accent-gold);
  text-shadow: 0 0 20px rgba(212,168,83,0.5);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-wrapper {
  position: relative;
  width: 280px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 14px;
  transition: var(--transition-fast);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
}

.btn-header {
  height: 40px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-header:not(.btn-primary) {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.btn-header:not(.btn-primary):hover {
  background: var(--bg-hover);
  border-color: var(--border-accent);
}

.btn-header.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-dim) 100%);
  color: var(--bg-dark);
}

.btn-header.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,168,83,0.3);
}

/* ============================================
   APP CONTAINER
   ============================================ */
.app-container {
  display: flex;
  padding-top: var(--header-h);
  min-height: 100vh;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: var(--sidebar-w);
  height: calc(100vh - var(--header-h));
  background: var(--bg-card);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  overflow-y: auto;
  z-index: 900;
  transition: transform var(--transition-base);
}

.sidebar-menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.menu-link:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.menu-link.active {
  background: linear-gradient(135deg, rgba(212,168,83,0.15) 0%, rgba(212,168,83,0.05) 100%);
  color: var(--accent-gold);
  border-left: 3px solid var(--accent-gold);
  margin-left: -3px;
}

.menu-icon {
  font-size: 18px;
  filter: grayscale(100%) brightness(1.2);
  transition: filter var(--transition-fast);
}

.menu-link:hover .menu-icon,
.menu-link.active .menu-icon {
  filter: none;
}

.sidebar-bottom {
  padding: 16px 12px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.sidebar-btn:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.flag-icon {
  font-size: 16px;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main {
  flex: 1;
  margin-left: var(--sidebar-w);
  padding: 24px;
  max-width: calc(100% - var(--sidebar-w));
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 28px;
  min-height: 320px;
  border: 1px solid var(--border-subtle);
}

.hero-decor {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-gold);
  opacity: 0.2;
  pointer-events: none;
}

.hero-decor--tl {
  top: 16px;
  left: 16px;
  border-right: none;
  border-bottom: none;
  border-radius: 12px 0 0 0;
}

.hero-decor--tr {
  top: 16px;
  right: 16px;
  border-left: none;
  border-bottom: none;
  border-radius: 0 12px 0 0;
}

.hero-decor--bl {
  bottom: 16px;
  left: 16px;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 12px;
}

.hero-decor--br {
  bottom: 16px;
  right: 16px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 12px 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,83,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-slide {
  display: none;
  padding: 48px 56px;
  min-height: 320px;
  align-items: center;
}

.hero-slide.active {
  display: flex;
}

.hero-text {
  flex: 1;
  max-width: 520px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(212,168,83,0.2) 0%, rgba(212,168,83,0.1) 100%);
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 36px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-dim) 100%);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  color: var(--bg-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
  box-shadow: 0 4px 20px rgba(212,168,83,0.3);
}

.hero-btn:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,83,0.4);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-visual img {
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.5));
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(26,18,8,0.8);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
}

.hero-arrow:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.hero-arrow:hover svg {
  stroke: var(--bg-dark);
}

.hero-arrow--prev {
  left: 20px;
}

.hero-arrow--next {
  right: 20px;
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-dot:hover {
  background: var(--text-secondary);
}

.hero-dot.active {
  background: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
}

/* ============================================
   CATEGORY PILLS
   ============================================ */
.category-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 8px;
  overflow-x: auto;
}

.category-pills::-webkit-scrollbar {
  height: 4px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.pill:hover {
  background: var(--bg-elevated);
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.pill-icon {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  stroke: var(--text-muted);
  stroke-width: 2;
  transition: var(--transition-fast);
}

.pill-icon.highlight {
  fill: var(--accent-gold);
  stroke: var(--accent-gold);
}

.pill:hover .pill-icon {
  fill: var(--accent-gold);
  stroke: var(--accent-gold);
}

/* ============================================
   GAMES BLOCK
   ============================================ */
.games-block {
  margin-bottom: 32px;
}

.block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.block-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

.block-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.view-all {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-gold);
  transition: var(--transition-fast);
}

.view-all:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.carousel-nav {
  display: flex;
  gap: 8px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--bg-elevated);
  border-color: var(--accent-gold);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-btn:hover svg {
  stroke: var(--accent-gold);
}

.games-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* GAME TILE */
.game-tile {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-base);
}

.game-tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(212,168,83,0.2);
}

.game-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}

.thumb-placeholder {
  width: 48px;
  height: 48px;
  fill: var(--text-muted);
  opacity: 0.4;
}

.game-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-dim) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--bg-dark);
}

.game-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-tag.new {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

.game-tag.hot {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
}

.game-tag.jackpot {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--bg-dark);
  font-size: 11px;
}

.game-tag.live {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  animation: pulse-live 2s infinite;
}

.game-tag.exclusive {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
}

.game-tag.bonus-buy {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: #fff;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.game-hover {
  position: absolute;
  inset: 0;
  background: rgba(15,10,5,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.game-tile:hover .game-hover {
  opacity: 1;
}

.game-action {
  width: 80%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.game-action.play {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-dim) 100%);
  color: var(--bg-dark);
}

.game-action.play:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-gold) 100%);
}

.game-action.demo {
  background: transparent;
  border: 1px solid var(--text-secondary);
  color: var(--text-secondary);
}

.game-action.demo:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

/* ============================================
   CONTENT AREA
   ============================================ */
.content-area {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.content-intro {
  text-align: center;
  margin-bottom: 36px;
}

.intro-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(212,168,83,0.15) 0%, rgba(212,168,83,0.05) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.intro-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.intro-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* INFO CARD */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(212,168,83,0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-dim) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--bg-dark);
}

.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.card-body {
  padding: 28px;
}

.card-body p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.card-body h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 16px;
}

.card-body h4:first-child {
  margin-top: 0;
}

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.stat-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FEATURE LIST */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-gold);
}

.feature-icon {
  font-size: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-content {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-content strong {
  color: var(--text-primary);
}

/* DATA GRID (TABLE) */
.data-grid {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.data-grid th,
.data-grid td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.data-grid th {
  background: var(--bg-elevated);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-grid td {
  color: var(--text-secondary);
}

.data-grid tbody tr:hover {
  background: rgba(212,168,83,0.05);
}

.win-amount {
  color: var(--accent-gold);
  font-weight: 700;
}

/* HIGHLIGHT PANEL */
.highlight-panel {
  background: linear-gradient(135deg, rgba(212,168,83,0.12) 0%, rgba(212,168,83,0.05) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.panel-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.panel-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,168,83,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
}

.cta-subtext {
  font-size: 18px;
  color: var(--accent-gold);
  margin-bottom: 28px;
  position: relative;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 48px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-dim) 100%);
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-base);
  box-shadow: 0 4px 24px rgba(212,168,83,0.4);
  position: relative;
}

.cta-btn:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(212,168,83,0.5);
}

/* ============================================
   FAQ
   ============================================ */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-elevated);
}

.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

.faq-toggle::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-a-content {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.faq-a-content ul {
  margin: 12px 0 0 20px;
  list-style: disc;
}

.faq-a-content li {
  margin-bottom: 8px;
}

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */
.responsible-block {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.responsible-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-fast);
}

.responsible-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.responsible-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212,168,83,0.15) 0%, rgba(212,168,83,0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.responsible-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-gold);
}

.responsible-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.responsible-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
  margin-left: var(--sidebar-w);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-main {
  display: flex;
  gap: 64px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.footer-about {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  gap: 56px;
  flex: 1;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-payments {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
  margin-bottom: 24px;
}

.footer-payments h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-item {
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
  stroke: var(--text-secondary);
  stroke-width: 1.5;
  transition: var(--transition-fast);
}

.social-icon:hover svg {
  fill: var(--bg-dark);
  stroke: var(--bg-dark);
}

.footer-disclaimer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1280px) {
  .games-row {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .responsible-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .main {
    margin-left: 0;
    max-width: 100%;
  }
  
  .footer {
    margin-left: 0;
  }
  
  .games-row {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-slide {
    flex-direction: column;
    text-align: center;
    padding: 36px 32px;
  }
  
  .hero-text {
    max-width: 100%;
    margin-bottom: 24px;
  }
  
  .hero-headline {
    font-size: 32px;
  }
  
  .footer-main {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 56px;
  }
  
  .header {
    padding: 0 16px;
  }
  
  .search-wrapper {
    display: none;
  }
  
  .logo-text {
    font-size: 22px;
  }
  
  .btn-header {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }
  
  .main {
    padding: 16px;
  }
  
  .games-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .category-pills {
    gap: 8px;
  }
  
  .pill {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .hero {
    min-height: auto;
    border-radius: var(--radius-lg);
  }
  
  .hero-slide {
    padding: 28px 20px;
  }
  
  .hero-headline {
    font-size: 26px;
  }
  
  .hero-btn {
    height: 46px;
    padding: 0 28px;
    font-size: 14px;
  }
  
  .hero-arrow {
    width: 36px;
    height: 36px;
  }
  
  .hero-arrow--prev {
    left: 10px;
  }
  
  .hero-arrow--next {
    right: 10px;
  }
  
  .intro-title {
    font-size: 28px;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .cta-banner {
    padding: 32px 20px;
  }
  
  .cta-headline {
    font-size: 24px;
  }
  
  .cta-subtext {
    font-size: 15px;
  }
  
  .cta-btn {
    height: 48px;
    padding: 0 32px;
    font-size: 15px;
  }
  
  .footer-inner {
    padding: 0 16px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .games-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .block-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .block-title {
    font-size: 18px;
  }
  
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-number {
    font-size: 22px;
  }
  
  .responsible-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .responsible-card {
    padding: 20px 16px;
  }
  
  .data-grid th,
  .data-grid td {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 28px;
  }
}

/* UTILITY CLASSES */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.4s ease forwards;
}
.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.game-tile:hover .game-thumb img {
  transform: scale(1.05);
}

.game-thumb img.loaded {
  animation: fadeIn 0.3s ease;
}

.game-thumb img[loading="lazy"] {
  background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}

.game-tile {
  position: relative;
  aspect-ratio: 3 / 4; 
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-base);
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.game-tile:hover .game-thumb img {
  transform: scale(1.05);
}