:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-tertiary: #1f1f1f;

  --text-primary: #ffffff;
  --text-secondary: #bbbbbb;
  --text-muted: #777777;

  --accent-primary: #fff200;
  --accent-secondary: #ffe135;
  --accent-tertiary: #ffeb3b;

  --cta-bg: linear-gradient(135deg, #fff200, #ffe135);
  --cta-hover-bg: linear-gradient(135deg, #fff833, #fff04d);
  --cta-text: #0a0a0a;

  --card-bg: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.01)
  );
  --card-border: rgba(255, 255, 255, 0.07);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

  --btn-bg: var(--cta-bg);
  --btn-hover-bg: var(--cta-hover-bg);
  --btn-text: var(--cta-text);

  --shadow-soft: 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.45);
  --shadow-hard: 0 8px 28px rgba(0, 0, 0, 0.6);

  --gradient-gold: linear-gradient(135deg, #fff04d 0%, #ffeb3b 100%);
  --gradient-blue: linear-gradient(135deg, #6cb9f9 0%, #64a5e7 100%);
  --gradient-dark: linear-gradient(135deg, #161616, #0a0a0a);

  --text-shadow-gold: 0 0 10px var(--accent-primary),
    0 0 20px rgba(255, 255, 0, 0.108);
  --text-shadow-orange: 0 0 10px var(--accent-secondary),
    0 0 22px rgba(255, 255, 100, 0.25);
  --text-shadow-white: 0 0 12px rgba(255, 255, 255, 0.95),
    0 0 24px rgba(255, 255, 255, 0.45);
  --text-shadow-blue: 0 0 20px rgba(0, 102, 204, 0.4);

  --bonus-bg-yellow: linear-gradient(135deg, #fff200, #ffe135);
  --bonus-bg-orange: linear-gradient(135deg, #ffeb3b, #ffd600);
  --bonus-bg-blue: linear-gradient(135deg, #0072ff, #002244);
  --bonus-bg-pink: linear-gradient(135deg, #ff6ec4, #a63df7);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1em;
  color: var(--text-secondary);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

section {
  padding: 80px 0;
}
.site-header {
  background: var(--gradient-dark);
  padding: 12px 24px;
  color: var(--text-primary);
  position: relative;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  padding: 3px;
  border-radius: 18px;
  background: linear-gradient(
    270deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary),
    var(--accent-primary)
  );
  background-size: 600% 600%;
  animation: borderShift 6s ease infinite;
  display: inline-block;
}

@keyframes borderShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.logo-inner {
  background: var(--bg-primary);
  border-radius: 15px;
  padding: 12px 24px;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-primary);
}

.logo-text .blue {
  color: var(--accent-primary);
}

.logo-text .orange {
  color: var(--accent-secondary);
}

.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.btn {
  display: inline-block;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn i {
  margin: 0;
  line-height: 1;
}

.login-btn {
  background: transparent;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.login-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--text-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 999px;
}

.login-btn:hover::before {
  opacity: 1;
}

.login-btn:hover {
  color: var(--bg-primary);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.signup-btn {
  background: var(--cta-bg);
  color: var(--cta-text);
  border: none;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-medium);
  animation: pulse-glow 3s infinite;
}

.signup-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cta-hover-bg);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 999px;
  z-index: -1;
}

.signup-btn:hover::before {
  opacity: 1;
}

.signup-btn:hover {
  color: var(--cta-text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard);
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 15px rgba(255, 214, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 214, 0, 1);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 214, 0, 0.6);
  }
}
.main-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.main-nav a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent-primary);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.burger-menu span {
  width: 24px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.3s ease forwards;
}

.mobile-menu a {
  color: var(--text-primary);
  padding: 12px 0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    display: none;
  }

  .mobile-menu.show {
    display: flex;
  }

  .desktop-menu {
    display: none;
  }

  .burger-menu {
    display: flex;
  }
}
.lang-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 6px 16px;
  display: flex;
  gap: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lang-btn {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .lang-switcher {
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 0.75rem;
  }

  .lang-btn {
    padding: 3px 6px;
  }
}

.hero {
  position: relative;
  padding: 80px 0;
  color: var(--text-primary);
  overflow: hidden;
  text-align: center;
  background: var(--gradient-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero.jpg") center/cover no-repeat;
  z-index: 0;
  filter: blur(1px);
  transform: scale(1.05);
  animation: float 20s infinite linear;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 14, 14, 0.708),
    rgba(224, 220, 10, 0.288)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  flex-direction: column;
}

.btn.btn-primary {
  background: var(--cta-bg);
  color: var(--cta-text);
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 4px 8px rgba(255, 255, 255, 0.3),
    0 8px 20px rgba(255, 217, 0, 0.4), 0 4px 0 rgba(202, 160, 0, 0.5);
  position: relative;
  transition: all 0.3s ease;
  animation: pulse-cta 2.5s infinite ease-in-out;
  display: inline-block;
}

.btn.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--cta-hover-bg);
  box-shadow: inset 0 4px 8px rgba(255, 255, 255, 0.4),
    0 10px 30px rgba(255, 217, 0, 0.6), 0 5px 0 rgba(202, 160, 0, 0.6);
}

@keyframes pulse-cta {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: inset 0 4px 8px rgba(255, 255, 255, 0.3),
      0 8px 20px rgba(255, 217, 0, 0.4), 0 4px 0 rgba(202, 160, 0, 0.5);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
    box-shadow: inset 0 5px 10px rgba(255, 255, 255, 0.4),
      0 12px 25px rgba(255, 217, 0, 0.6), 0 5px 0 rgba(202, 160, 0, 0.6);
  }
}

.hero-text-group h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.title-yellow {
  color: var(--cta-text);
  text-shadow: 0 0 8px var(--accent-primary), 0 0 20px rgba(255, 217, 0, 0.252);
  animation: flicker 3s infinite ease-in-out;
}

.title-blue {
  color: var(--accent-secondary);
}

.title-white {
  color: var(--text-primary);
}

@keyframes flicker {
  0%,
  100% {
    text-shadow: 0 0 8px var(--accent-primary);
  }
  50% {
    text-shadow: 0 0 16px var(--accent-primary);
  }
}

.promo-banner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px 40px;
  margin-top: 30px;
  color: var(--text-primary);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  width: 100%;
  background: repeating-linear-gradient(
    45deg,
    var(--accent-primary),
    var(--accent-primary) 10px,
    var(--bg-tertiary) 10px,
    var(--bg-tertiary) 20px
  );
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.promo-header {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.promo-subtext {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.countdown-item {
  background-color: var(--accent-primary);
  color: var(--bg-primary);
  padding: 16px 25px;
  border-radius: 12px;
  min-width: 70px;
  font-weight: 700;
}

.countdown-item > div:first-child {
  font-size: 1.8rem;
  line-height: 1;
}

.countdown-item > div:last-child {
  font-size: 0.8rem;
  margin-top: 4px;
}

.promo-value {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.promo-note {
  color: #cbd5e1;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .countdown {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-features li {
    flex-direction: column;
    text-align: center;
    display: flex;
  }

  .countdown-item {
    min-width: 60px;
    padding: 12px;
  }

  .promo-banner {
    padding: 16px;
  }
}
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-text-group h1 {
    text-align: center;
    font-size: 2.4rem;
  }

  .hero-features {
    text-align: center;
  }

  .promo-banner {
    margin-top: 40px;
  }
}
.hero-features-glass {
  margin-top: 40px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
}

.hero-features li {
  padding: 6px 0;
  text-align: left;
  line-height: 1.4;
}

.highlight-orange {
  font-weight: 700;
  text-shadow: var(--text-shadow-orange);
}

.highlight-green {
  font-weight: 700;
  text-shadow: var(--text-shadow-orange);
}

.highlight-blue {
  font-weight: 700;
  text-shadow: var(--text-shadow-gold);
}

@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
  }

  .hero-features li {
    padding: 8px 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-features {
    font-size: 0.95rem;
  }
  .btn.btn-primary {
    font-size: 13px;
  }
}
.popular-games {
  color: var(--text-primary);
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-primary);
}

.games-title {
  font-size: 32px;
  color: var(--accent-primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.games-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.game-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter {
  background: var(--bg-secondary);
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter.active,
.filter:hover {
  background: var(--accent-primary);
  color: var(--cta-text);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.game-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hard);
}

.game-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.game-icon img {
  width: 42px;
  height: 42px;
}

.game-card h3 {
  margin: 10px 0 5px;
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 600;
}

.game-rating {
  font-size: 14px;
  color: var(--accent-primary);
  margin-bottom: 6px;
}

.game-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.game-btn {
  background: var(--cta-bg);
  color: var(--cta-text);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
}

.game-btn:hover {
  background: var(--cta-hover-bg);
  color: var(--cta-text);
}

.gradient-red {
  background: linear-gradient(135deg, #ff6a5b, #ff3c97);
}

.gradient-blue {
  background: var(--gradient-blue);
}

.gradient-yellow {
  background: var(--gradient-gold);
}

.gradient-purple {
  background: linear-gradient(135deg, #cc33ff, #7f00ff);
}

.game-card:hover .game-icon {
  transform: scale(1.1);
}

.games-footer .games-link {
  display: inline-block;
  background: var(--accent-secondary);
  padding: 12px 30px;
  border-radius: 50px;
  color: var(--cta-text);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.games-footer .games-link:hover {
  background: var(--accent-tertiary);
}
.referral-section {
  padding: 80px 0;
  background: var(--gradient-dark);
  color: var(--text-primary);
}

.referral-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.referral-steps,
.referral-tiers {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  flex: 1 1 400px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--accent-tertiary);
}

.referral-steps h2,
.referral-tiers h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.referral-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.referral-steps li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding-left: 40px;
  color: var(--text-primary);
}

.referral-steps li strong {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--accent-primary);
  color: var(--cta-text);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.referral-steps li span {
  display: block;
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.referral-tiers h2 {
  color: var(--accent-primary);
  margin-bottom: 24px;
}

.referral-tiers {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  color: var(--text-primary);
}

.referral-tiers h2 {
  font-size: 24px;
  color: var(--accent-primary);
  margin-bottom: 28px;
  text-align: center;
  text-shadow: var(--text-shadow-gold);
}

.tier {
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #222;
}

.tier p {
  font-size: 15px;
  color: var(--cta-text);
  margin: 0;
}

.money {
  font-size: 24px;
  font-weight: 800;
  color: rgb(200, 82, 255);
  text-shadow: 2px 2px 1px #62626267;
}

.tier-gold {
  background: var(--gradient-gold);
  color: var(--cta-text);
  animation: glowGold 2s infinite alternate;
}

.tier-default {
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  color: var(--cta-text);
}

.tier-bonus {
  background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
  color: var(--cta-text);
}

@keyframes glowGold {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

@media (max-width: 768px) {
  .referral-tiers h2 {
    font-size: 22px;
  }

  .tier h3 {
    font-size: 18px;
  }

  .money {
    font-size: 22px;
  }

  .tier p {
    font-size: 14px;
  }
}

.referral-header {
  margin-bottom: 50px;
  text-align: center;
  color: var(--text-primary);
}

.referral-tagline {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.ref-link {
  display: inline-block;
  background: var(--bg-tertiary);
  padding: 12px 24px;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: monospace;
  font-size: 16px;
  margin: 16px 0;
  box-shadow: inset 0 0 6px var(--accent-tertiary);
}

.referral-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}

.btn-ref {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease;
  color: var(--cta-text);
}

.btn-ref:hover {
  transform: scale(1.05);
}

.btn-ref.orange {
  background: linear-gradient(
    to right,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
}

.btn-ref.green {
  background: linear-gradient(
    to right,
    var(--accent-tertiary),
    var(--accent-secondary)
  );
}
.stats-bar-section {
  background: var(--bg-primary);
  padding: 80px 20px;
  color: var(--text-primary);
  text-align: center;
}

.stats-bar-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-shadow: var(--text-shadow-gold);
  margin-bottom: 48px;
  text-transform: uppercase;
}

.stats-bar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-medium);
}

.stat-unit {
  flex: 1 1 200px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-divider {
  width: 1px;
  background: var(--card-border);
  opacity: 0.5;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-primary);
  text-shadow: var(--text-shadow-gold);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .stats-bar {
    flex-direction: column;
  }

  .stat-divider {
    height: 1px;
    width: 100%;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stats-bar-title {
    font-size: 2rem;
  }
}

.bonus-section {
  background: var(--bg-secondary);
  padding: 100px 20px;
  color: var(--text-primary);
}

.bonus-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: var(--text-shadow-gold);
}

.bonus-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  min-height: 330px;
}

.bonus-card:nth-child(1) {
  background: var(--bonus-bg-yellow);
}

.bonus-card:nth-child(2) {
  background: var(--bonus-bg-pink);
}

.bonus-card:nth-child(3) {
  background: var(--bonus-bg-orange);
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.bonus-heading {
  color: var(--cta-text);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.bonus-text {
  color: var(--btn-text);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.btn-bonus {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--cta-text);
  color: var(--cta-text);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-bonus:hover {
  background: var(--cta-hover-bg);
  color: var(--cta-text);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .bonus-card {
    max-width: 100%;
  }
  .bonus-heading {
    font-size: 22px;
  }
}

footer {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 60px 0 30px;
  font-size: 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-section h3 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
  display: block;
  margin-bottom: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-primary);
}

footer .container > div:last-child {
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
}

footer .container > div:last-child p:first-child {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

footer .container > div:last-child p:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .footer-content {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    width: 100%;
  }

  footer {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 40px 0 20px;
    font-size: 0.9rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }
}
.earnings {
  padding: 80px 0;
  background: radial-gradient(
    circle at center,
    #0a0a0a,
    var(--bg-tertiary) 70%
  );
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.earnings-card {
  background: var(--gradient-gold);
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  border: 3px solid var(--accent-primary);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  color: var(--cta-text);
}

.earnings-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 94, 0, 0.2),
    transparent
  );
  animation: slide 3s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.highlight-box {
  text-align: center;
  margin-top: 40px;
}

.deposit-amount {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.earn-amount {
  font-size: 48px;
  color: var(--cta-text);
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 1px 0 var(--accent-tertiary), 0 2px 2px rgba(255, 60, 0, 0.3),
    0 0 10px var(--accent-primary), 0 0 14px rgba(255, 94, 0, 0.8);
  animation: earn-pulse 1.8s infinite ease-in-out;
  transform-origin: center;
}

@keyframes earn-pulse {
  0% {
    transform: scale(1);
    text-shadow: 0 1px 0 var(--accent-tertiary), 0 2px 2px rgba(255, 60, 0, 0.3),
      0 0 10px var(--accent-primary), 0 0 14px rgba(255, 94, 0, 0.8);
  }
  50% {
    transform: scale(1.08);
    text-shadow: 0 2px 2px var(--accent-tertiary),
      0 4px 4px rgba(255, 60, 0, 0.4), 0 0 18px var(--accent-primary),
      0 0 28px rgba(255, 94, 0, 1);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 1px 0 var(--accent-tertiary), 0 2px 2px rgba(255, 60, 0, 0.3),
      0 0 10px var(--accent-primary), 0 0 14px rgba(255, 94, 0, 0.8);
  }
}

.win-counter {
  background: var(--gradient-dark);
  color: var(--text-primary);
  padding: 20px;
  border-radius: 16px;
  margin: 30px 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  animation: glow 2s infinite alternate;
  box-shadow: 0 0 20px rgba(255, 60, 0, 0.4);
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(255, 60, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 40px rgba(255, 60, 0, 0.8);
  }
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--accent-primary);
}
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}
.earn-desc {
  color: var(--cta-text);
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}

.payment-method {
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-primary);
  transition: transform 0.3s ease;
}

.payment-method:hover {
  transform: translateY(-5px);
}

.payment-method img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  margin-bottom: 10px;
  display: block;
}

.payment-method p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
#paymentText {
  text-align: center;
}
.seo-section {
  background: var(--bg-secondary);
  padding: 100px 20px;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.seo-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.highlight {
  color: var(--accent-primary);
  text-shadow: 0 0 12px rgba(255, 60, 0, 0.6);
}

.seo-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}

.seo-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.seo-btn:hover {
  background: var(--cta-hover-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hard);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .seo-title {
    font-size: 1.8rem;
  }

  .seo-paragraph {
    font-size: 1rem;
  }

  .seo-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}
.vip-program-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.vip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.vip-intro {
  flex: 1;
  min-width: 300px;
}

.vip-heading {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 10px;
}

.vip-subheading {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--accent-secondary);
  margin-bottom: 25px;
}

.vip-bonus {
  background: var(--gradient-gold);
  border-radius: 16px;
  padding: 20px 30px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.6);
  margin-bottom: 20px;
  display: inline-block;
}

.vip-bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cta-text);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 0 12px var(--accent-primary);
}

.vip-bonus-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cta-text);
  margin-top: 8px;
}

.vip-description {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 15px;
}

.vip-steps {
  flex: 1;
  min-width: 300px;
  background: var(--card-bg);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--accent-primary);
  box-shadow: 0 0 20px rgba(255, 60, 0, 0.3);
}

.vip-steps-heading {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--accent-secondary);
  margin-bottom: 20px;
  text-align: center;
}

.vip-step-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.vip-step-list li {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: var(--text-primary);
  text-align: left;
}

.vip-step-list li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
}

.vip-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-weight: bold;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(255, 60, 0, 0.4);
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
}

.vip-cta-btn:hover {
  transform: scale(1.05);
  background: var(--cta-hover-bg);
  box-shadow: 0 0 30px rgba(255, 94, 0, 0.6);
}

@media (max-width: 768px) {
  .vip-container {
    flex-direction: column;
    text-align: center;
  }

  .vip-steps {
    width: 100%;
  }

  .vip-cta-btn {
    width: auto;
    padding: 12px 24px;
  }

  .vip-steps-heading {
    font-size: 1.3rem;
  }

  .vip-heading {
    font-size: 2rem;
  }
}
.reviews-section {
  padding: 100px 20px;
  color: var(--text-primary);
  text-align: center;
}

.reviews-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.reviews-title .highlight {
  color: var(--accent-primary);
}

.reviews-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hard);
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text::before,
.review-text::after {
  content: "“";
  font-size: 2rem;
  color: var(--accent-tertiary);
  position: absolute;
  top: -10px;
  left: -15px;
}

.review-text::after {
  content: "”";
  right: -15px;
  left: auto;
  top: auto;
  bottom: -10px;
}

.review-user {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}
