:root {
  --bg-darkest: #1A0F15;
  --bg-dark: #20141D;
  --bg-medium: #2B1C24;
  --bg-light: #3D2A34;
  --bg-sidebar: #1B1318;
  --bg-card: #23161C;
  --bg-card-hover: #2C1D23;
  --border-color: #4A3A40;
  --border-light: #5A4A50;
  --text-primary: #F1E6CF;
  --text-secondary: #C8AF7E;
  --text-muted: #8A7A72;
  --gold: #D8A22E;
  --gold-light: #F0B93A;
  --gold-bright: #FFD65A;
  --gold-dark: #B37415;
  --purple: #7B2E8E;
  --purple-light: #A23CAF;
  --cyan: #4DA7D9;
  --red: #D44B2A;
  --red-light: #F15D42;
  --green: #2ECC71;
  --gradient-gold: linear-gradient(135deg, #FFD65A 0%, #E4A120 50%, #B37415 100%);
  --gradient-dark: linear-gradient(135deg, #2B1C24 0%, #1D1017 50%, #371D35 100%);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(216,162,46,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --sidebar-width: 240px;
  --topbar-height: 64px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-bright); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Inter', serif;
  color: var(--text-primary);
  line-height: 1.3;
}

h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 1.2rem; }
h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; margin-top: 2rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; margin-top: 1.5rem; }
h2:first-child, h1:first-child { margin-top: 0; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow-y: auto;
  transition: transform var(--transition);
}

.sidebar-logo {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.logo-img {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(232,93,117,0.4));
}

.sidebar-nav {
  flex: 1;
  padding: 12px 0;
}

.sidebar-nav ul li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 24px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.sidebar-nav ul li a:hover,
.sidebar-nav ul li.active a {
  color: var(--gold-light);
  background: rgba(216,162,46,0.08);
  border-left-color: var(--gold);
}

.sidebar-nav ul li a i {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
}

.sidebar-nav ul li:nth-child(1) a i { color: #F0B93A; }
.sidebar-nav ul li:nth-child(2) a i { color: #E85D75; }
.sidebar-nav ul li:nth-child(3) a i { color: #4DA7D9; }
.sidebar-nav ul li:nth-child(4) a i { color: #2ECC71; }
.sidebar-nav ul li:nth-child(5) a i { color: #F15D42; }
.sidebar-nav ul li:nth-child(6) a i { color: #A23CAF; }
.sidebar-nav ul li:nth-child(7) a i { color: #4DA7D9; }
.sidebar-nav ul li:nth-child(8) a i { color: #FFD65A; }
.sidebar-nav ul li.active a i { color: var(--gold-bright); }

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sidebar-lang img {
  border-radius: 2px;
}

.sidebar-help {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
}

.sidebar-help i { color: #63C6F1; }

.sidebar-help:hover {
  color: var(--gold-light);
}

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg-sidebar);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-logo { height: 32px; width: auto; }

.btn-cta-mobile {
  background: var(--gradient-gold);
  color: #1A0F15;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 19, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  gap: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 10px 20px;
  flex: 1;
  max-width: 440px;
  transition: border-color var(--transition);
}

.search-box:focus-within {
  border-color: var(--gold);
}

.search-box i { color: var(--gold-light); font-size: 0.9rem; }

.search-box input {
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  width: 100%;
  font-family: inherit;
}

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

.top-bar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-login {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.btn-login:hover {
  background: rgba(216,162,46,0.1);
  color: var(--gold-bright);
}

.btn-register {
  padding: 10px 22px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  color: #1A0F15;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(216,162,46,0.3);
}

.btn-register:hover {
  box-shadow: 0 4px 20px rgba(216,162,46,0.5);
  transform: translateY(-1px);
  color: #1A0F15;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.slider-container {
  position: relative;
  height: 420px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  pointer-events: all;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26,15,21,0.92) 0%, rgba(26,15,21,0.75) 40%, rgba(26,15,21,0.15) 70%, transparent 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 48px 56px;
  max-width: 620px;
}

.slide-badge {
  display: inline-block;
  background: rgba(216,162,46,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(240,185,58,0.3);
}

.slide:nth-child(2) .slide-badge { background: rgba(46,204,113,0.15); border-color: #2ECC71; color: #2ECC71; }
.slide:nth-child(3) .slide-badge { background: rgba(77,167,217,0.15); border-color: #63C6F1; color: #63C6F1; }
.slide:nth-child(4) .slide-badge { background: rgba(241,93,66,0.15); border-color: #F15D42; color: #F15D42; }

.slide-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.slide-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 480px;
}

.btn-slide {
  display: inline-block;
  background: var(--gradient-gold);
  color: #1A0F15;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(216,162,46,0.35);
  transition: all var(--transition);
}

.btn-slide:hover {
  box-shadow: 0 6px 30px rgba(216,162,46,0.55);
  transform: translateY(-2px);
  color: #1A0F15;
}

.slide.active .slide-bg img {
  animation: slowZoom 8s ease-out forwards;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(27,19,24,0.8);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-arrow:hover {
  background: rgba(216,162,46,0.2);
  border-color: var(--gold);
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dots .dot.active {
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(216,162,46,0.5);
  width: 28px;
  border-radius: 5px;
}

.category-tabs {
  display: flex;
  gap: 4px;
  padding: 14px 24px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition);
}

.cat-tab:hover {
  background: rgba(216,162,46,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.cat-tab i { font-size: 0.85rem; }

.cat-tab:nth-child(1) i { color: #FFD65A; }
.cat-tab:nth-child(2) i { color: #F15D42; }
.cat-tab:nth-child(3) i { color: #63C6F1; }
.cat-tab:nth-child(4) i { color: #C86FDB; }
.cat-tab:nth-child(5) i { color: #2ECC71; }
.cat-tab:nth-child(6) i { color: #E85D75; }
.cat-tab:nth-child(7) i { color: #F0B93A; }
.cat-tab:nth-child(8) i { color: #F15D42; }
.cat-tab:hover i { color: var(--gold-bright); }

.content-section {
  padding: 64px 0;
}

.content-section.section-alt {
  background: var(--bg-dark);
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.feature-card:nth-child(1) .feature-icon {
  background: rgba(162,60,175,0.15);
  color: #C86FDB;
}
.feature-card:nth-child(2) .feature-icon {
  background: rgba(77,167,217,0.15);
  color: #63C6F1;
}
.feature-card:nth-child(3) .feature-icon {
  background: rgba(46,204,113,0.15);
  color: #2ECC71;
}
.feature-card:nth-child(4) .feature-icon {
  background: rgba(241,93,66,0.15);
  color: #F15D42;
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}

.feature-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.check-list {
  margin: 1.5rem 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(74,58,64,0.4);
}

.check-list li:last-child { border-bottom: none; }

.check-list li i {
  color: var(--green);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(46,204,113,0.4));
}

.info-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-table caption {
  padding: 16px 20px;
  background: var(--bg-card);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-light);
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.info-table th,
.info-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(74,58,64,0.3);
}

.info-table th {
  background: rgba(35,22,28,0.6);
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
  min-width: 160px;
}

.info-table td {
  color: var(--text-secondary);
}

.info-table thead th {
  background: var(--bg-card);
  color: var(--gold-light);
  font-weight: 700;
}

.info-table tbody tr:hover {
  background: rgba(216,162,46,0.03);
}

.info-table tbody tr:last-child th,
.info-table tbody tr:last-child td {
  border-bottom: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #1A0F15;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(216,162,46,0.35);
}

.step-card:nth-child(1) .step-number { background: linear-gradient(135deg, #FFD65A, #E4A120); }
.step-card:nth-child(2) .step-number { background: linear-gradient(135deg, #63C6F1, #4DA7D9); }
.step-card:nth-child(3) .step-number { background: linear-gradient(135deg, #C86FDB, #A23CAF); }
.step-card:nth-child(4) .step-number { background: linear-gradient(135deg, #2ECC71, #1FA85A); }

.step-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.highlight-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(216,162,46,0.06);
  border: 1px solid rgba(216,162,46,0.2);
  border-radius: var(--radius);
  padding: 28px;
  margin: 2rem 0;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(241,93,66,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #F15D42;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(241,93,66,0.3));
}

.highlight-text h3 { margin-top: 0; color: var(--gold-light); }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.bonus-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.bonus-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bonus-card-header i {
  font-size: 1.3rem;
}

.bonus-card:nth-child(1) .bonus-card-header i { color: #FFD65A; }
.bonus-card:nth-child(2) .bonus-card-header i { color: #2ECC71; }
.bonus-card:nth-child(3) .bonus-card-header i { color: #63C6F1; }
.bonus-card:nth-child(4) .bonus-card-header i { color: #C86FDB; }

.bonus-card-header h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.bonus-amount {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.bonus-card:nth-child(1) .bonus-amount { color: #FFD65A; text-shadow: 0 0 20px rgba(255,214,90,0.3); }
.bonus-card:nth-child(2) .bonus-amount { color: #2ECC71; text-shadow: 0 0 20px rgba(46,204,113,0.3); }
.bonus-card:nth-child(3) .bonus-amount { color: #63C6F1; text-shadow: 0 0 20px rgba(99,198,241,0.3); }
.bonus-card:nth-child(4) .bonus-amount { color: #C86FDB; text-shadow: 0 0 20px rgba(200,111,219,0.3); }

.bonus-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.games-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

.game-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.game-cat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}

.game-cat-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.game-cat-card h3 {
  font-family: 'Inter', sans-serif;
  margin-top: 0;
}

.game-cat-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0;
}

.provider-badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.provider-badge:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(216,162,46,0.08);
}

.provider-badge:nth-child(odd):hover { border-color: #C86FDB; color: #C86FDB; background: rgba(162,60,175,0.08); }
.provider-badge:nth-child(3n):hover { border-color: #63C6F1; color: #63C6F1; background: rgba(77,167,217,0.08); }

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 2rem 0;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.payment-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}

.payment-card h3 {
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.payment-card h3 i {
  font-size: 1.2rem;
}

.payment-card:nth-child(1) h3 i { color: #F15D42; }
.payment-card:nth-child(2) h3 i { color: #2ECC71; }
.payment-card:nth-child(3) h3 i { color: #4DA7D9; }
.payment-card:nth-child(4) h3 i { color: #C86FDB; }

.payment-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.faq-list {
  margin: 2rem 0;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: var(--border-light); }
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all var(--transition);
}

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

.faq-question i {
  font-size: 0.8rem;
  color: var(--gold);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--gold-light); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cta-section {
  background: var(--gradient-dark);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 40px;
  text-align: center;
}

.cta-inner h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-cta-big {
  display: inline-block;
  background: var(--gradient-gold);
  color: #1A0F15;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 48px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 30px rgba(216,162,46,0.35);
  transition: all var(--transition);
}

.btn-cta-big:hover {
  box-shadow: 0 8px 40px rgba(216,162,46,0.55);
  transform: translateY(-3px);
  color: #1A0F15;
}

.site-footer {
  background: var(--bg-sidebar);
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(232,93,117,0.3));
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red-light);
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 10px;
  box-shadow: 0 0 12px rgba(212,75,42,0.3);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 40px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .features-grid,
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .slider-container { height: 380px; }
  .slide-title { font-size: 1.6rem; }
  .slide-content { padding: 40px; }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: 280px;
  }

  .sidebar.open { transform: translateX(0); }

  .mobile-header { display: flex; }

  .main-content {
    margin-left: 0;
    padding-top: 60px;
  }

  .top-bar { display: none; }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }

  .section-inner { padding: 0 20px; }
  .content-section { padding: 48px 0; }

  .slider-container { height: 340px; }
  .slide-content { padding: 28px 24px; }
  .slide-title { font-size: 1.35rem; }
  .slide-text { font-size: 0.9rem; }

  .slide-overlay {
    background: linear-gradient(to right, rgba(26,15,21,0.95) 0%, rgba(26,15,21,0.8) 50%, rgba(26,15,21,0.4) 100%);
  }

  .features-grid,
  .steps-grid { grid-template-columns: 1fr; }

  .bonus-grid,
  .games-categories,
  .payment-methods { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px;
  }

  .highlight-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-inner { padding: 48px 20px; }
  .cta-inner h2 { font-size: 1.5rem; }
  .btn-cta-big { padding: 16px 32px; font-size: 1rem; }

  .info-table th,
  .info-table td { padding: 10px 14px; font-size: 0.82rem; }

  .info-table th { min-width: 120px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.2rem; }

  .slider-container { height: 300px;
  }

  .slide-overlay {
    background: linear-gradient(to bottom, rgba(26,15,21,0.85) 0%, rgba(26,15,21,0.6) 60%, rgba(26,15,21,0.3) 100%);
  }

  .slide-bg img {
    object-position: center center;
  }
  .slide-content { padding: 20px 18px; }
  .slide-title { font-size: 1.2rem; }
  .slide-badge { font-size: 0.65rem; padding: 4px 12px; }
  .btn-slide { padding: 12px 28px; font-size: 0.85rem; }

  .slider-arrow { width: 36px; height: 36px; font-size: 0.85rem; }

  .category-tabs { padding: 10px 14px; }

  .feature-card, .step-card, .bonus-card, .game-cat-card, .payment-card {
    padding: 20px 16px;
  }

  .bonus-amount { font-size: 1.3rem; }

  .info-table th { min-width: 100px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-section .section-inner {
  animation: fadeInUp 0.6s ease-out;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

::selection {
  background: rgba(216,162,46,0.3);
  color: var(--text-primary);
}