* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Bungee";
  src: url("fonts/Bungee-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@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: "Bungee", sans-serif;
}
:root {
  --background: #fff8e1;
  --foreground: #2c1a10;
  --primary: #f44150;
  --primary-hover: #ff4d4d;
  --text-muted: #7a5a3a;
  --button-bg: #d72626;
  --button-text: #ffffff;
  --button-bg-hover: #ff3333;
  --card-bg: #fff3d6;
  --card-border: #f6c947;
  --link: #e68a00;
  --accent: #fec416;

  --gradient-gold-glow: linear-gradient(
    90deg,
    #ffe066 0%,
    #ffb347 50%,
    #e63946 100%
  );
  --gradient-dark-gold: linear-gradient(135deg, #fff3d6 0%, #f6c947 100%);
  --gradient-sparkle: radial-gradient(
    circle,
    #ffcc33 0%,
    #ff4d4d 40%,
    #fff8e1 100%
  );
  --gradient-glow-border: linear-gradient(120deg, #f65947, #f71f31, #f64163);
  --gradient-rich-glow: linear-gradient(
    90deg,
    #ff9d1c 0%,
    #f64a58 50%,
    #ff4d4d 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;
  border-bottom: 1px solid var(--primary);
  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-rich-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(--primary);
  -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);
}
.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: 0;
  background: linear-gradient(
      180deg,
      rgba(255, 223, 133, 0.85) 0%,
      rgba(255, 204, 51, 0.65) 40%,
      rgba(230, 57, 70, 0.55) 100%
    ),
    url("images/hero.jpg") center/cover no-repeat;
  z-index: -2;
}

.hero-partner__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.152) 0%,
    rgba(0, 0, 0, 0.333) 100%
  );
  z-index: -1;
}

.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(--button-text);
  margin: 0 0 0.4rem;
}

.hero-title {
  font-weight: 900;
  line-height: 1.1;
  font-size: 28px;
  margin: 0 0 0.6rem;
  color: white;
}
.hero-title .x {
  opacity: 0.9;
  margin: 0 0.2rem;
  background: var(--gradient-rich-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;
}
.hero-title {
  line-height: 1.2;
  text-align: left;
  margin-bottom: 1rem;
}

.hero-title .highlight {
  display: block;
  font-size: 32px;
  text-shadow: 1px 1px 0 #000, 3px 3px 0 var(--button-bg),
    3px 3px 6px rgba(0, 0, 0, 0.6);
  margin-top: 0.3em;
}
.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;
  border: 1px solid white;
}
.partner-logo:hover {
  transform: scale(1.05);
}

.hero-subtitle {
  max-width: 680px;
  color: var(--button-text);
  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(--background);
  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(--button-text);
  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(
    145deg,
    rgba(255, 236, 200, 0.75) 0%,
    rgba(255, 192, 203, 0.6) 50%,
    rgba(250, 170, 100, 0.55) 100%
  );
  border: 1px solid rgba(255, 215, 130, 0.6);
  border-radius: 16px;
  padding: clamp(16px, 2vw, 22px);

  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 170, 200, 0.5),
    0 0 10px rgba(255, 220, 130, 0.45);

  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: 40px;
  border: 1px solid var(--foreground);
  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.294),
    rgba(35, 28, 28, 0.225)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.panel-list span {
  color: var(--foreground);
  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;
    flex-direction: column;
  }

  .hero-title {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
    align-items: center;
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
  }

  .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.7rem;
  }
}
.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(--card-bg);
  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(--button-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);
}

.referral-desc,
.welcome-desc,
.freespin-desc {
  font-weight: 600;
  color: var(--foreground);
}
.bonus-style-green {
  background: linear-gradient(135deg, #ff6666, #ff1a1a);
  color: #fff7f0;
  box-shadow: 0 0 18px rgba(255, 100, 100, 0.6);
}

.bonus-style-yellow {
  background: linear-gradient(135deg, #f77a86, #ffb347);
  color: #fffaf0;
  box-shadow: 0 0 18px rgba(255, 215, 120, 0.65);
}

.bonus-style-purple {
  background: linear-gradient(135deg, #ff80c0, #ff4da6);
  color: #fff0fa;
  box-shadow: 0 0 18px rgba(255, 120, 180, 0.6);
}
.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;
  display: inline-block;
}

/* Hover для десктопа */
.bonus-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--accent), 0 0 50px var(--accent);
}

/* --- Адаптив --- */
@media (max-width: 1024px) {
  .bonus-cta-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

@media (max-width: 768px) {
  .bonus-cta-btn {
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 30px;
  }
}

@media (max-width: 480px) {
  .bonus-cta-wrapper {
    margin-top: 30px;
  }

  .bonus-cta-btn {
    width: 100%;
    max-width: 320px;
    font-size: 0.9rem;
    padding: 12px 0;
    border-radius: 25px;
  }
}

/* Анимация пульса */
@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: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--card-border);
}

.testimonial-name {
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial-text {
  color: var(--foreground);
  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-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: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* планшеты */
@media (max-width: 1024px) {
  .vip-bonus {
    max-width: 90%;
    padding: 18px 24px;
  }
}

/* мобильные */
@media (max-width: 768px) {
  .vip-bonus {
    max-width: 100%;
    padding: 16px 20px;
    font-size: 0.95rem;
  }
}

.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-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--primary);
}

@media (max-width: 768px) {
  .vip-steps {
    width: 100%;
  }

  .vip-cta-btn {
    width: auto;
    padding: 11px 23px;
  }

  .vip-bonus-amount {
    font-size: 2rem;
  }
}
.vip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch; /* блоки одинаковой высоты */
  justify-content: center; /* выравнивание по центру */
  box-sizing: border-box;
}

/* планшеты */
@media (max-width: 1024px) {
  .vip-container {
    gap: 24px;
    justify-content: center;
  }
}

/* мобильные */
@media (max-width: 768px) {
  .vip-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 16px; /* чтобы контент не лип к краям */
  }
}
.vip-steps {
  flex: 1 1 360px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--card-bg);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px var(--accent);
  overflow: hidden;
}

.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;
  word-break: break-word;
  hyphens: auto;
}

.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;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .vip-steps {
    padding: 24px;
    border-radius: 18px;
  }
  .vip-steps-heading {
    font-size: 1.4rem;
  }
  .vip-step-list li {
    font-size: 1rem;
    padding-left: 26px;
  }
}

@media (max-width: 768px) {
  .vip-steps {
    flex-basis: 100%;
    margin: 12px 0;
    padding: 20px;
  }
  .vip-cta-btn {
    padding: 12px 24px;
    border-radius: 32px;
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .vip-steps {
    padding: 16px;
    box-shadow: 0 0 12px var(--accent);
  }
  .vip-steps-heading {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
  .vip-step-list {
    margin-bottom: 20px;
  }
  .vip-step-list li {
    font-size: 0.95rem;
    padding-left: 22px;
  }
  .vip-step-list li::before {
    font-size: 0.95rem;
    top: 1px;
  }
}

@media (max-width: 400px) {
  .vip-cta-btn {
    font-size: 0.9rem;
    padding: 12px 16px;
    border-radius: 28px;
  }
}
.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-rich-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;
  text-shadow: 1px 1px 0 #000, 2px 2px 0 var(--button-bg),
    3px 3px 6px rgba(0, 0, 0, 0.6);
}

.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(--primary);
}
.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;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .btn-telegram {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .btn-telegram {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .btn-telegram {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
}
.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;
  overflow: hidden;
}

.earn-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 223, 150, 0.65) 0%,
    rgba(255, 192, 203, 0.35) 40%,
    rgba(255, 236, 200, 0.15) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.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(--foreground);
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-align: left;
}

.earn-title {
  position: relative;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 900;
  text-align: left;
  background: var(--gradient-glow-border);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.earn-title {
  position: relative;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 900;
  text-align: left;
  background: var(--gradient-glow-border);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.earn-title::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 0 #000, 2px 2px 0 var(--accent),
    3px 3px 6px rgba(0, 0, 0, 0.6);
}

.earn-subtitle {
  font-size: 1rem;
  color: #222;
  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;
  }
}
