* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
.section-title,
h1,
h2,
h3,
.bonus-card h3,
.about-subtitle,
.timer-title,
.hero-title,
.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

:root {
  --background: #0a0a0a;
  --foreground: #ffffff;
  --primary: #d41c1c;
  --primary-hover: #f53636;
  --text-muted: #e8d7b9;
  --button-bg: #b81414;
  --button-text: #ffffff;
  --button-bg-hover: #e62a2a;
  --card-bg: #1a0f0a;
  --card-border: #d4af37;
  --link: #f5b642;
  --accent: #ffcc33;

  --gradient-gold-glow: linear-gradient(
    90deg,
    #f8d14e 0%,
    #fcab1f 50%,
    #dc3425 100%
  );
  --gradient-dark-gold: linear-gradient(135deg, #1a1a1a 0%, #d4af37 100%);
  --gradient-sparkle: radial-gradient(
    circle,
    #ffcc33 0%,
    #e63946 40%,
    #0a0a0a 100%
  );
  --gradient-glow-border: linear-gradient(120deg, #d4af37, #e63946, #ffcc33);
  --gradient-rich-glow: linear-gradient(
    90deg,
    #ff9633 0%,
    #e63946 50%,
    #d41c1c 100%
  );
}
body {
  font-family: "Roboto", sans-serif;
  background-color: var(--background);
  font-weight: 400;
  color: var(--foreground);
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background-color: var(--background);
  color: var(--foreground);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  font-size: 1.7rem;
}

.logo-part {
  background: var(--gradient-gold-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gacor {
  font-size: 1.7rem;
  font-weight: 800;
}

.max {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bet {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 2px;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 8px rgba(255, 200, 80, 0.6), 0 0 14px rgba(220, 50, 30, 0.45);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--gradient-gold-glow);
  transition: width 0.35s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--primary-hover);
  text-shadow: 0 0 6px rgba(255, 180, 80, 0.6), 0 0 12px rgba(220, 50, 30, 0.45);
}

.nav-links a:hover::after {
  width: 100%;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
}

.lang-btn:hover {
  background-color: var(--primary);
  color: var(--button-text);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--foreground);
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--background);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1rem;
    display: none;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .language-switcher {
    margin-top: 1rem;
  }

  .burger {
    display: flex;
  }
  .gacor {
    font-size: 1.4rem;
  }

  .max {
    font-size: 1.3rem;
  }

  .bet {
    font-size: 0.7rem;
  }
}
/* Контейнер героя */
.hero-partner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--background);
  color: var(--foreground);
  padding: clamp(48px, 6vw, 84px) 16px;
}

/* Фоновые слои */
.hero-partner__bg {
  position: absolute;
  inset: -10% -10% -20% -10%;
  background: radial-gradient(
      45% 35% at 20% 20%,
      rgba(255, 204, 51, 0.25) 0%,
      rgba(255, 204, 51, 0) 65%
    ),
    radial-gradient(
      60% 45% at 85% 25%,
      rgba(214, 175, 55, 0.18) 0%,
      rgba(214, 175, 55, 0) 65%
    ),
    radial-gradient(
      40% 35% at 70% 80%,
      rgba(212, 28, 28, 0.22) 0%,
      rgba(212, 28, 28, 0) 60%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #140e0c 100%);
  filter: saturate(110%);
  z-index: -2;
}
.hero-partner__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.35) 0%,
      rgba(12, 10, 9, 0.55) 60%,
      rgba(20, 12, 10, 0.65) 100%
    ),
    radial-gradient(
      60% 45% at 50% 30%,
      rgba(212, 175, 55, 0.1) 0%,
      rgba(212, 175, 55, 0) 70%
    );
  z-index: -1;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}

/* Внутренняя сетка */
.hero-partner__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Копирайт блок */
.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
}

.hero-title {
  font-weight: 900;
  line-height: 1.1;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  margin: 0 0 0.6rem;
  text-shadow: 1px 1px 0 #000, 2px 2px 0 var(--card-border),
    3px 3px 6px rgba(0, 0, 0, 0.6);
}
.hero-title .x {
  opacity: 0.9;
  margin: 0 0.2rem;
  background: var(--gradient-gold-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hero-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
}

.partner-name {
  display: inline-flex;
  align-items: center;
}

.partner-logo {
  display: inline-block;
  max-width: 140px;
  height: auto;
  vertical-align: middle;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  border-radius: 40px;
}
.partner-logo:hover {
  transform: scale(1.05);
}

.hero-subtitle {
  max-width: 680px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  margin: 0 0 0.9rem;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0 1.2rem;
  padding: 0;
  list-style: none;
}
.chip {
  border: 1px solid rgba(214, 175, 55, 0.35);
  background: rgba(214, 175, 55, 0.12);
  color: var(--foreground);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.btn-hero {
  display: inline-block;
  background: var(--gradient-rich-glow);
  color: var(--foreground);
  font-weight: 800;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 24px rgba(212, 28, 28, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 28, 28, 0.5);
}

.btn-ghost {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(245, 182, 66, 0.45);
  color: var(--foreground);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05));
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--card-border);
}

.hero-partner__panel {
  align-self: stretch;
}
.panel-glass {
  position: relative;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 15, 10, 0.75),
    rgba(10, 10, 10, 0.6)
  );
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  padding: clamp(16px, 2vw, 22px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.panel-glass::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 50%;
  background: var(--gradient-gold-glow);
  opacity: 0.08;
  filter: blur(24px);
  pointer-events: none;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.panel-logo {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}
.badge {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.12);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--foreground);
}

.panel-list {
  list-style: none;
  padding: 0.4rem 0 0.6rem;
  margin: 0 0 0.4rem 0;
  display: grid;
  gap: 0.45rem;
}
.panel-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.panel-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.panel-list strong {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 204, 51, 0.35);
}

.panel-note {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0.4rem 0 0.8rem;
}
.panel-note a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px dashed rgba(245, 182, 66, 0.5);
}
.panel-note a:hover {
  border-bottom-color: var(--card-border);
}
@media (max-width: 980px) {
  .hero-partner__inner {
    grid-template-columns: 1fr;
  }
  .hero-partner__panel {
    order: 2;
  }
  .hero-partner__copy {
    order: 1;
  }
}

@media (max-width: 992px) {
  .partner-logo {
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .partner-logo {
    max-width: 100px;
  }
}

@media (max-width: 560px) {
  .hero-chips {
    gap: 0.4rem;
  }
  .chip {
    font-size: 0.86rem;
    padding: 0.35rem 0.6rem;
  }
  .panel-list li {
    padding: 0.5rem 0.6rem;
  }

  .hero-title {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
    align-items: center;
    font-size: 1.6rem; /* чуть меньше */
    line-height: 1.2;
  }

  .hero-title .partner-name {
    flex-basis: 100%;
    margin-top: 0.2rem;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    max-width: 80px;
  }

  .hero-title {
    font-size: 1.4rem;
  }
}
.games {
  padding: 80px 20px;
  color: var(--foreground);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--accent);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.game-card {
  background: var(--background);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(255, 223, 51, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 223, 51, 0.2);
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.game-header h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
}

.game-meta {
  font-size: 0.7rem;
  background: var(--gradient-gold-glow);
  color: #000;
  padding: 4px 7px;
  border-radius: 20px;
  font-weight: bold;
  white-space: nowrap;
  display: inline-block;
}

@media (max-width: 992px) {
  .game-meta {
    font-size: 0.65rem;
    padding: 3px 6px;
  }
}

@media (max-width: 600px) {
  .game-meta {
    font-size: 0.6rem;
    padding: 2px 5px;
    border-radius: 16px;
  }
}

@media (max-width: 400px) {
  .game-meta {
    font-size: 0.55rem;
    padding: 2px 4px;
    border-radius: 14px;
  }
}

.game-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.game-info {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--foreground);
}

.game-info li {
  margin-bottom: 6px;
}

.game-btn {
  display: inline-block;
  background: var(--card-bg);
  color: var(--accent);
  padding: 10px 22px;
  font-weight: bold;
  border-radius: 30px;
  border: 1px solid var(--card-border);
  text-decoration: none;
  transition: all 0.3s ease;
}

.game-btn:hover {
  background: var(--primary);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--primary);
}
.bonuses {
  padding: 80px 20px;
  background: var(--card-bg);
  color: var(--foreground);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.bonus-card {
  position: relative;
  border-radius: 16px;
  padding: 24px;
  color: #000;
  background: #ffffff10;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--primary),
    var(--accent)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.bonus-amount {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.703), 0 2px 4px rgba(0, 0, 0, 0.692),
    0 0 15px rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}

.referral-desc,
.welcome-desc,
.freespin-desc {
  font-weight: 600;
  color: var(--foreground);
}
.bonus-style-green {
  background: linear-gradient(135deg, #660000, #cc1a1a);
  color: #ffe4f0;
  box-shadow: 0 0 15px rgba(255, 50, 50, 0.5);
}

.bonus-style-yellow {
  background: linear-gradient(135deg, #7a4b00, #d4af37);
  color: #fffce8;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.55);
}

.bonus-style-purple {
  background: linear-gradient(135deg, #400022, #b30059);
  color: #f9e0ff;
  box-shadow: 0 0 15px rgba(230, 60, 120, 0.5);
}

.bonus-cta-wrapper {
  margin-top: 50px;
  text-align: center;
}

.bonus-cta-btn {
  background: var(--card-bg);
  color: var(--accent);
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 40px;
  border: 2px solid var(--accent);
  text-decoration: none;
  box-shadow: 0 0 15px var(--accent);
  animation: pulse-scale 2s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--accent), 0 0 50px var(--accent);
}

/* Анимация пульса */
@keyframes pulse-scale {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px var(--accent);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 20px var(--accent);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px var(--accent);
  }
}

/* Адаптивность заголовков */
.bonus-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Win Counter */
.win-counter {
  background: var(--gradient-glow-border);
  color: #000;
  padding: 20px;
  border-radius: 15px;
  margin: 30px 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
  }
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--card-border);
}

.testimonial-name {
  color: var(--text-muted);
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial-text {
  color: #ccc;
  font-style: italic;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 16px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}

/* Security Badge */
.security-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-gold-glow);
  color: var(--foreground);
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1000;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.highlight {
  color: #ffd700;
  font-weight: bold;
}

.premium-badge {
  text-decoration: underline;

  font-weight: bold;
}
.about-section {
  padding: 80px 20px;
  background: var(--background);
  color: var(--foreground);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--accent);
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 20px auto 30px;
  max-width: 600px;
  text-align: left;
  color: var(--foreground);
  font-size: 0.95rem;
}

.about-list li {
  margin-bottom: 10px;
  padding-left: 1.2rem;
  position: relative;
}

.about-highlight {
  margin-top: 20px;
  font-weight: bold;
  color: var(--primary);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .about-subtitle {
    font-size: 1.2rem;
  }

  .about-text,
  .about-highlight {
    font-size: 0.95rem;
  }

  .about-list {
    font-size: 0.9rem;
  }
}

.vip-program-section {
  padding: 80px 20px;
  background: var(--gradient-dark-gold);
  color: var(--foreground);
  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.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  text-shadow: 1px 1px 2px #000;
  margin-bottom: 10px;
}

.vip-subheading {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 25px;
}

.vip-bonus {
  background: var(--gradient-gold-glow);
  border-radius: 16px;
  padding: 20px 30px;
  text-align: center;
  box-shadow: 0 0 15px var(--accent);
  margin-bottom: 20px;
  display: inline-block;
}

.vip-bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--foreground);
  text-shadow: 1px 1px 0 #000, 0 0 12px var(--accent);
}

.vip-bonus-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  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);
  box-shadow: 0 0 20px var(--accent);
}

.vip-steps-heading {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-hover);
  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(--foreground);
  text-align: left;
}

.vip-step-list li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.vip-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: bold;
  border-radius: 40px;
  box-shadow: 0 0 20px var(--accent);
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
}

.vip-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--primary);
}

@media (max-width: 768px) {
  .vip-container {
    flex-direction: column;
    text-align: center;
  }

  .vip-steps {
    width: 100%;
  }

  .vip-cta-btn {
    width: auto;
    padding: 11px 23px;
  }
}
.site-footer {
  background: var(--background);
  color: var(--text-muted);
  padding: 3rem 1rem 1.5rem;
  border-top: 2px solid rgba(255, 200, 80, 0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: var(--gradient-gold-glow);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.footer-contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contacts li,
.footer-legal p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contacts a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-contacts a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px rgba(255, 180, 80, 0.5);
}

.footer-legal {
  max-width: 400px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 200, 80, 0.15);
  padding-top: 1rem;
  color: var(--foreground);
}
.bonus-partner {
  background: var(--background);
  padding: 60px 20px;
  text-align: center;
  color: var(--foreground);
  position: relative;
}

.bonus-header .bonus-title {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-gold-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.bonus-header .bonus-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.bonus-card .bonus-amount {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.bonus-card .bonus-reward {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
}

.bonus-card .bonus-reward span {
  color: var(--primary-hover);
  font-size: 1.4rem;
  font-weight: 700;
}

.bonus-conditions {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: var(--gradient-dark-gold);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.conditions-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--foreground);
}

.conditions-list {
  margin: 0 0 25px 20px;
  padding: 0;
  color: var(--foreground);
}

.conditions-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.conditions-list li a {
  color: var(--accent);
}
.btn-telegram {
  display: inline-block;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-telegram:hover {
  background: var(--button-bg-hover);
}
.earn-banner {
  position: relative;
  background: url("images/banner.jpg") center/cover no-repeat;
  color: var(--foreground);
  min-height: 420px;
  display: flex;
  align-items: center;
}

.earn-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.6) 40%,
    rgba(10, 10, 10, 0.1) 100%
  );
}

.earn-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 2rem;
}

.earn-banner__content {
  max-width: 700px;
  text-align: right;
  margin: 0 auto;
}

.earn-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-align: left;
}

.earn-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--gradient-gold-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

.earn-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: left;
}

.earn-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.earn-points li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.earn-points li span {
  margin-left: 0.5rem;
  color: var(--accent);
  font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .earn-banner {
    min-height: 360px;
  }
  .earn-banner__content {
    text-align: left;
    max-width: 100%;
  }
  .earn-banner__inner {
    justify-content: flex-start;
  }
  .earn-points li {
    justify-content: flex-start;
  }
}
