/* --- STATS SECTION --- */
.stats-section {
  padding: 60px 24px;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stats-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.stat-card {
  background: linear-gradient(165deg, rgba(42,42,42,0.4) 0%, rgba(26,26,26,0.8) 100%);
  border: 1px solid #252525;
  border-radius: 12px;
  padding: 24px 16px;
  transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: #4ade80;
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.stat-value {
  font: 700 28px/1 'Cinzel', serif;
  color: #e5a530;
  margin-bottom: 8px;
}

.stat-label {
  font: 400 13px/1.4 'Geologica', sans-serif;
  color: #888;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 22px; }
}

/* --- BANKING SECTION --- */
.banking-section {
  padding: 80px 24px;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(26,92,53,0.15) 0%, transparent 60%), #111;
}

.banking-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.banking-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.banking-h2 .brand {
  color: #4ade80;
}

.banking-intro {
  font: 400 16px/1.7 'Geologica', sans-serif;
  color: #a99c92;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.banking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.banking-category {
  background: linear-gradient(165deg, rgba(42,42,42,0.5) 0%, rgba(26,26,26,0.9) 100%);
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.banking-category h3 {
  font: 600 18px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 16px;
}

.banking-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.banking-items span {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
  padding: 6px 12px;
  border-radius: 20px;
  font: 500 12px/1 'Geologica', sans-serif;
}

.banking-time {
  font: 400 12px/1.5 'Geologica', sans-serif;
  color: #666;
}

@media (max-width: 768px) {
  .banking-grid { grid-template-columns: 1fr; }
}

/* --- JOURNEY SECTION --- */
.journey-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #0d0d0d 0%, #151515 50%, #0d0d0d 100%);
}

.journey-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.journey-header {
  margin-bottom: 48px;
}

.journey-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.journey-h2 .gold {
  color: #e5a530;
}

.journey-tagline {
  font: 400 16px/1.6 'Geologica', sans-serif;
  color: #888;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  background: rgba(255,255,255,0.02);
  border: 1px solid #252525;
  border-radius: 12px;
  padding: 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e5a530 0%, #c48820 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 20px/1 'Cinzel', serif;
  color: #000;
  flex-shrink: 0;
}

.step-content h3 {
  font: 600 18px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 8px;
}

.step-content p {
  font: 400 14px/1.7 'Geologica', sans-serif;
  color: #999;
}

.btn-journey-start {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #ffb236 0%, #dc7900 100%);
  color: #000;
  padding: 16px 40px;
  border-radius: 8px;
  font: 700 15px/1 'Geologica', sans-serif;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(255,178,54,0.3);
}

.btn-journey-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255,178,54,0.4);
}

/* --- PROVIDERS SECTION --- */
.providers-section {
  padding: 80px 24px;
  background: #111;
}

.providers-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.providers-header {
  text-align: center;
  margin-bottom: 48px;
}

.providers-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.providers-h2 .brand {
  color: #4ade80;
}

.providers-intro {
  font: 400 16px/1.7 'Geologica', sans-serif;
  color: #a99c92;
  max-width: 700px;
  margin: 0 auto;
}

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

.provider-card {
  background: linear-gradient(165deg, rgba(42,42,42,0.4) 0%, rgba(26,26,26,0.8) 100%);
  border: 1px solid #252525;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.provider-card:hover {
  transform: translateY(-4px);
  border-color: #4ade80;
}

.provider-logo {
  font-size: 36px;
  margin-bottom: 12px;
}

.provider-card h4 {
  font: 600 16px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 8px;
}

.provider-card p {
  font: 400 13px/1.6 'Geologica', sans-serif;
  color: #888;
  margin-bottom: 12px;
}

.provider-games {
  display: inline-block;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 20px;
  font: 500 11px/1 'Geologica', sans-serif;
}

.providers-text {
  font: 400 15px/1.8 'Geologica', sans-serif;
  color: #999;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .providers-grid { grid-template-columns: 1fr; }
}

/* --- LIVE CASINO SECTION --- */
.live-casino-section {
  padding: 80px 24px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(139,69,19,0.15) 0%, transparent 60%), #0d0d0d;
}

.live-casino-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.live-casino-header {
  text-align: center;
  margin-bottom: 48px;
}

.live-casino-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.live-casino-h2 .brand {
  color: #4ade80;
}

.live-casino-intro {
  font: 400 16px/1.7 'Geologica', sans-serif;
  color: #a99c92;
  max-width: 700px;
  margin: 0 auto;
}

.live-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.live-game-card {
  background: linear-gradient(165deg, rgba(42,42,42,0.5) 0%, rgba(26,26,26,0.9) 100%);
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.live-game-card:hover {
  transform: translateY(-4px);
  border-color: #e5a530;
}

.live-game-card.featured {
  border-color: #e5a530;
  background: linear-gradient(165deg, rgba(229,165,48,0.1) 0%, rgba(26,26,26,0.9) 100%);
}

.live-game-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: linear-gradient(135deg, #e5a530 0%, #c48820 100%);
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font: 600 11px/1 'Geologica', sans-serif;
}

.live-game-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.live-game-card h3 {
  font: 600 18px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 10px;
}

.live-game-card p {
  font: 400 13px/1.6 'Geologica', sans-serif;
  color: #888;
  margin-bottom: 16px;
}

.btn-live-play {
  display: inline-block;
  background: linear-gradient(180deg, #2d9e2d 0%, #1a7a1a 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font: 600 13px/1 'Geologica', sans-serif;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-live-play:hover {
  transform: scale(1.05);
}

.live-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.live-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 400 14px/1 'Geologica', sans-serif;
  color: #888;
}

.live-feature-icon {
  font-size: 20px;
}

@media (max-width: 900px) {
  .live-games-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .live-games-grid { grid-template-columns: 1fr; }
  .live-features { gap: 20px; }
}

/* --- SECURITY SECTION --- */
.security-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.security-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.security-header {
  text-align: center;
  margin-bottom: 48px;
}

.security-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.security-h2 .brand {
  color: #4ade80;
}

.security-intro {
  font: 400 16px/1.7 'Geologica', sans-serif;
  color: #a99c92;
  max-width: 700px;
  margin: 0 auto;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.security-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid #252525;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.3s;
}

.security-card:hover {
  border-color: #4ade80;
}

.security-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.security-card h3 {
  font: 600 16px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 10px;
}

.security-card p {
  font: 400 13px/1.7 'Geologica', sans-serif;
  color: #888;
}

@media (max-width: 900px) {
  .security-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .security-grid { grid-template-columns: 1fr; }
}

/* --- MOBILE SECTION --- */
.mobile-section {
  padding: 80px 24px;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(26,92,53,0.12) 0%, transparent 60%), #111;
}

.mobile-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
}

.mobile-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.mobile-h2 .brand {
  color: #4ade80;
}

.mobile-intro {
  font: 400 16px/1.7 'Geologica', sans-serif;
  color: #a99c92;
  margin-bottom: 24px;
}

.mobile-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.mobile-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 400 14px/1.6 'Geologica', sans-serif;
  color: #ccc;
  margin-bottom: 10px;
}

.mobile-features .check {
  color: #4ade80;
  font-weight: 700;
}

.mobile-text {
  font: 400 14px/1.8 'Geologica', sans-serif;
  color: #888;
  margin-bottom: 24px;
}

.btn-mobile-play {
  display: inline-block;
  background: linear-gradient(180deg, #ffb236 0%, #dc7900 100%);
  color: #000;
  padding: 14px 32px;
  border-radius: 8px;
  font: 600 14px/1 'Geologica', sans-serif;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn-mobile-play:hover {
  transform: translateY(-2px);
}

.mobile-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 3px solid #333;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 3px;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.phone-dragon {
  font-size: 48px;
}

.phone-text {
  font: 700 18px/1 'Cinzel', serif;
  color: #4ade80;
}

@media (max-width: 900px) {
  .mobile-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mobile-features {
    display: inline-block;
    text-align: left;
  }
  .mobile-visual {
    order: -1;
  }
  .phone-mockup {
    width: 160px;
    height: 320px;
  }
}

/* --- CRYPTO SECTION --- */
.crypto-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}

.crypto-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.crypto-header {
  text-align: center;
  margin-bottom: 48px;
}

.crypto-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.crypto-h2 .brand {
  color: #e5a530;
}

.crypto-intro {
  font: 400 16px/1.7 'Geologica', sans-serif;
  color: #a99c92;
  max-width: 700px;
  margin: 0 auto;
}

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

.crypto-card {
  background: linear-gradient(165deg, rgba(42,42,42,0.5) 0%, rgba(26,26,26,0.9) 100%);
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.crypto-card:hover {
  transform: translateY(-4px);
  border-color: #e5a530;
}

.crypto-icon {
  font-size: 36px;
  font-weight: 700;
  color: #e5a530;
  margin-bottom: 12px;
}

.crypto-card h3 {
  font: 600 16px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 8px;
}

.crypto-card p {
  font: 400 13px/1.6 'Geologica', sans-serif;
  color: #888;
  margin-bottom: 16px;
}

.crypto-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.crypto-stats span {
  font: 400 11px/1.4 'Geologica', sans-serif;
  color: #4ade80;
}

.crypto-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.crypto-benefit {
  text-align: center;
}

.benefit-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 12px;
}

.crypto-benefit h4 {
  font: 600 14px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 8px;
}

.crypto-benefit p {
  font: 400 12px/1.6 'Geologica', sans-serif;
  color: #888;
}

@media (max-width: 1024px) {
  .crypto-grid { grid-template-columns: repeat(2, 1fr); }
  .crypto-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .crypto-grid { grid-template-columns: 1fr; }
  .crypto-benefits { grid-template-columns: 1fr; }
}

/* --- CATEGORIES SECTION --- */
.categories-section {
  padding: 80px 24px;
  background: #111;
}

.categories-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.categories-header {
  text-align: center;
  margin-bottom: 48px;
}

.categories-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.categories-h2 .brand {
  color: #4ade80;
}

.categories-intro {
  font: 400 16px/1.7 'Geologica', sans-serif;
  color: #a99c92;
  max-width: 700px;
  margin: 0 auto;
}

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

.category-card {
  background: linear-gradient(165deg, rgba(42,42,42,0.4) 0%, rgba(26,26,26,0.8) 100%);
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s, border-color 0.3s;
  display: block;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: #4ade80;
}

.category-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.category-card h3 {
  font: 600 18px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 10px;
}

.category-card p {
  font: 400 13px/1.6 'Geologica', sans-serif;
  color: #888;
  margin-bottom: 16px;
}

.category-count {
  display: inline-block;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
  padding: 6px 14px;
  border-radius: 20px;
  font: 600 12px/1 'Geologica', sans-serif;
}

@media (max-width: 900px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .categories-grid { grid-template-columns: 1fr; }
}

/* --- RESPONSIBLE GAMING SECTION --- */
.responsible-section {
  padding: 80px 24px;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(200,50,50,0.08) 0%, transparent 60%), #0d0d0d;
}

.responsible-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.responsible-header {
  text-align: center;
  margin-bottom: 48px;
}

.responsible-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.responsible-h2 .brand {
  color: #4ade80;
}

.responsible-intro {
  font: 400 16px/1.7 'Geologica', sans-serif;
  color: #a99c92;
  max-width: 700px;
  margin: 0 auto;
}

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

.tool-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid #252525;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.tool-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.tool-card h3 {
  font: 600 15px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 8px;
}

.tool-card p {
  font: 400 12px/1.6 'Geologica', sans-serif;
  color: #888;
}

.responsible-help {
  background: linear-gradient(165deg, rgba(200,50,50,0.1) 0%, rgba(26,26,26,0.8) 100%);
  border: 1px solid rgba(200,50,50,0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.responsible-help h3 {
  font: 600 20px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 12px;
}

.responsible-help p {
  font: 400 14px/1.7 'Geologica', sans-serif;
  color: #999;
  margin-bottom: 20px;
}

.help-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.help-links a {
  color: #4ade80;
  font: 500 14px/1 'Geologica', sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}

.help-links a:hover {
  color: #6ee7a0;
}

.help-phone {
  font: 600 14px/1 'Geologica', sans-serif;
  color: #e5a530;
}

@media (max-width: 900px) {
  .responsible-tools { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .responsible-tools { grid-template-columns: 1fr; }
  .help-links { flex-direction: column; gap: 12px; }
}

/* --- BONUSES OVERVIEW SECTION --- */
.bonuses-overview-section {
  padding: 80px 24px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(26,92,53,0.15) 0%, transparent 60%), #111;
}

.bonuses-overview-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bonuses-header {
  text-align: center;
  margin-bottom: 48px;
}

.bonuses-h2 {
  font: 700 32px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.bonuses-h2 .brand {
  color: #4ade80;
}

.bonuses-intro {
  font: 400 16px/1.7 'Geologica', sans-serif;
  color: #a99c92;
  max-width: 700px;
  margin: 0 auto;
}

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

.bonus-card-large {
  background: linear-gradient(165deg, rgba(42,42,42,0.5) 0%, rgba(26,26,26,0.9) 100%);
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.bonus-card-large:hover {
  transform: translateY(-4px);
  border-color: #e5a530;
}

.bonus-badge {
  display: inline-block;
  background: rgba(74,222,128,0.15);
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 20px;
  font: 500 11px/1 'Geologica', sans-serif;
  margin-bottom: 16px;
}

.bonus-card-large h3 {
  font: 600 16px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 12px;
}

.bonus-value {
  font: 700 24px/1 'Cinzel', serif;
  color: #e5a530;
  margin-bottom: 12px;
}

.bonus-card-large p {
  font: 400 12px/1.6 'Geologica', sans-serif;
  color: #888;
  margin-bottom: 16px;
}

.btn-bonus-claim {
  display: inline-block;
  background: linear-gradient(180deg, #2d9e2d 0%, #1a7a1a 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font: 600 12px/1 'Geologica', sans-serif;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-bonus-claim:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .bonuses-grid { grid-template-columns: 1fr; }
}

/* --- LANGUAGE SWITCHER (from Part 1) --- */
.lang-switcher-toggle {
  cursor: pointer;
  position: relative;
}

.lang-switcher-toggle .lang-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform 0.2s;
}

.lang-switcher-toggle.open .lang-arrow {
  transform: rotate(180deg);
}

body.sidebar-collapsed .lang-switcher-toggle .lang-arrow {
  display: none;
}

.lang-dropdown {
  display: none;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  margin: 4px 12px 8px;
  overflow: hidden;
}

.lang-dropdown.show {
  display: block;
}

body.sidebar-collapsed .lang-dropdown {
  position: absolute;
  left: 70px;
  bottom: 10px;
  margin: 0;
  min-width: 180px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}

.lang-option:hover {
  background: #252525;
  color: #fff;
}

.lang-option.active {
  color: #4ade80;
  background: rgba(74,222,128,0.08);
}

.lang-option svg:first-child {
  width: 24px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 2px;
}

.lang-option .check-icon {
  width: 16px;
  height: 16px;
  margin-left: auto;
  color: #4ade80;
}

.lang-option:not(.active) .check-icon {
  display: none;
}

.bonus-terms {
  background: linear-gradient(165deg, rgba(42,42,42,0.4) 0%, rgba(26,26,26,0.8) 100%);
  border: 1px solid #252525;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}

.bonus-terms h4 {
  font: 600 16px/1.3 'Geologica', sans-serif;
  color: #e5a530;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
}

.bonus-terms ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bonus-terms li {
  font: 400 14px/1.6 'Geologica', sans-serif;
  color: #a99c92;
  padding-left: 20px;
  position: relative;
}

.bonus-terms li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.bonus-terms li strong {
  color: #fff;
}

@media (max-width: 600px) {
  .bonus-terms ul {
    grid-template-columns: 1fr;
  }
}

/* --- WELCOME CTA (Activar Paquete Completo) --- */
.welcome-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-welcome-claim {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #ffb236 0%, #dc7900 100%);
  color: #000;
  padding: 18px 48px;
  border-radius: 8px;
  font: 700 16px/1 'Geologica', sans-serif;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(255,178,54,0.3);
}

.btn-welcome-claim:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255,178,54,0.45);
}

.btn-welcome-claim svg {
  width: 20px;
  height: 20px;
}

/* --- PROMO SLIDER --- */
.promo-section {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
    margin-top: 40px;
}

.promo-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
  width: 100%;
}

.promo-slider::-webkit-scrollbar {
  display: none;
}

.promo-card {
  min-width: 370px;
  max-width: 370px;
  height: 210px;
  background: linear-gradient(165deg, #1a6b45 0%, #14553a 40%, #0e4530 70%, #0a3525 100%);
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promo-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

.promo-text {
  width: 190px;
  min-width: 190px;
  z-index: 1;
}

.promo-label {
  font: 500 11px/1.3 'Geologica', sans-serif;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.promo-title {
  font: 500 15px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 2px;
}

.promo-subtitle {
  font: 700 26px/1.2 'Cinzel', serif;
  color: #fff;
  margin-bottom: 16px;
}

.btn-promo {
  display: inline-block;
  background: linear-gradient(180deg, #ffb236 0%, #dc7900 100%);
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font: 600 12px/1 'Geologica', sans-serif;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-promo:hover {
  transform: scale(1.05);
}

.promo-image {
  width: 140px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-left: auto;
}

.promo-image img {

  object-fit: contain;
}

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.dot.active,
.dot:hover {
  background: #4ade80;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .promo-card {
    min-width: 280px;
    max-width: 280px;
    height: 180px;
    padding: 16px;
  }
  .promo-text { width: 160px; min-width: 160px; }
  .promo-title { font-size: 13px; }
  .promo-subtitle { font-size: 20px; margin-bottom: 12px; }
  .promo-image { width: 100px; }
}

/* --- GAMES SECTION (Biblioteca de Juegos) --- */
.games-section {
  padding: 60px 24px;
  background: #111;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  font: 700 28px/1.2 'Cinzel', serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-arrows {
  display: flex;
  gap: 8px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.arrow-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: #4ade80;
}

.arrow-btn svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.btn-view-all {
  background: transparent;
  border: 1px solid #4ade80;
  color: #4ade80;
  padding: 10px 20px;
  border-radius: 6px;
  font: 500 13px/1 'Geologica', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-view-all:hover {
  background: rgba(74,222,128,0.1);
}

.games-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.games-slider::-webkit-scrollbar {
  display: none;
}

.game-card {
  min-width: 180px;
  max-width: 180px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
  display: block;
}

.game-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: #1a1a1a;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 16px;
}

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

.game-name {
  font: 600 14px/1.3 'Geologica', sans-serif;
  color: #fff;
  text-align: center;
}

.game-provider {
  font: 400 11px/1 'Geologica', sans-serif;
  color: #888;
  margin-bottom: 8px;
}

.btn-play {
  background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font: 600 12px/1 'Geologica', sans-serif;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-play:hover {
  transform: scale(1.05);
}

.btn-demo {
  background: transparent;
  color: #888;
  border: 1px solid #444;
  padding: 8px 16px;
  border-radius: 6px;
  font: 400 11px/1 'Geologica', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-demo:hover {
  color: #fff;
  border-color: #666;
}

.game-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}

.game-fav:hover {
  color: #e5a530;
  background: rgba(0,0,0,0.8);
}

.provider-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  color: #888;
  padding: 4px 8px;
  border-radius: 4px;
  font: 400 10px/1 'Geologica', sans-serif;
  z-index: 2;
}

@media (max-width: 768px) {
  .section-title { font-size: 22px; }
  .game-card {
    min-width: 140px;
    max-width: 140px;
  }
}

.vip-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-vip-join {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #ffb236 0%, #dc7900 100%);
  color: #000;
  padding: 18px 48px;
  border-radius: 8px;
  font: 700 16px/1 'Geologica', sans-serif;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(255,178,54,0.3);
}

.btn-vip-join:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255,178,54,0.45);
}

.btn-vip-join svg {
  width: 20px;
  height: 20px;
}

/* --- TOP 10 SECTION --- */
.top10-section {
  padding: 60px 24px;
  background: linear-gradient(180deg, #0d0d0d 0%, #111 100%);
}

.top10-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.top10-slider::-webkit-scrollbar {
  display: none;
}

.top10-card {
  min-width: 140px;
  max-width: 140px;
  flex-shrink: 0;
  text-decoration: none;
  display: block;
}

.top10-wrapper {
  position: relative;
  margin-bottom: 8px;
}

.top10-number {
  position: absolute;
  bottom: -10px;
  left: -8px;
  font: 800 60px/1 'Cinzel', serif;
  color: #1a1a1a;
  text-shadow: 
    -1px -1px 0 #4ade80,
    1px -1px 0 #4ade80,
    -1px 1px 0 #4ade80,
    1px 1px 0 #4ade80;
  z-index: 2;
}

.top10-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
}

.top10-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.top10-card:hover .top10-image img {
  transform: scale(1.1);
}

.top10-provider {
  font: 400 11px/1 'Geologica', sans-serif;
  color: #666;
  text-align: center;
  display: block;
}

/* --- WINS SECTION --- */
.wins-section {
  padding: 60px 24px;
  background: #0d0d0d;
}

.wins-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.wins-slider::-webkit-scrollbar {
  display: none;
}

.win-card {
  min-width: 160px;
  max-width: 160px;
  background: linear-gradient(165deg, rgba(42,42,42,0.5) 0%, rgba(26,26,26,0.9) 100%);
  border: 1px solid #252525;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, border-color 0.2s;
}

.win-card:hover {
  transform: translateY(-4px);
  border-color: #4ade80;
}

.win-game-image {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #1a6b45 0%, #0e4530 100%);
}

.win-game-image.style-1 { background: linear-gradient(135deg, #6b1a1a 0%, #450e0e 100%); }
.win-game-image.style-2 { background: linear-gradient(135deg, #1a3d6b 0%, #0e2545 100%); }
.win-game-image.style-3 { background: linear-gradient(135deg, #6b5a1a 0%, #45390e 100%); }
.win-game-image.style-4 { background: linear-gradient(135deg, #4a1a6b 0%, #2d0e45 100%); }
.win-game-image.style-5 { background: linear-gradient(135deg, #1a6b5a 0%, #0e4539 100%); }
.win-game-image.style-6 { background: linear-gradient(135deg, #6b1a4a 0%, #450e2d 100%); }
.win-game-image.style-7 { background: linear-gradient(135deg, #3d6b1a 0%, #25450e 100%); }
.win-game-image.style-8 { background: linear-gradient(135deg, #1a5a6b 0%, #0e3945 100%); }

.win-info {
  padding: 12px;
}

.win-user {
  font: 500 12px/1.3 'Geologica', sans-serif;
  color: #fff;
  margin-bottom: 4px;
}

.win-game-name {
  font: 400 11px/1.3 'Geologica', sans-serif;
  color: #888;
  margin-bottom: 8px;
}

.win-amount {
  font: 400 11px/1 'Geologica', sans-serif;
  color: #888;
}

.win-amount span {
  color: #4ade80;
  font-weight: 600;
}