:root {
  --primary-color: #000000;
  --secondary-color: #facc15;
  --accent-color: #ffffff;
  --header-bg: linear-gradient(90deg, #0a0a0a, #1a1a1a, #0a0a0a);
  --text-color: #f5f5f5;
  --dark-text: #ffffff;
  --light-bg: #1a1a1a;
  --dark-bg: #000000;

  --primary-light: #2a2a2a;
  --secondary-light: #fcd34d;
  --accent-soft: #fffdea;
  --muted-text: #d1d1c1;

  --gradient-gold: linear-gradient(135deg, #facc15, #eab308);
  --gradient-red: linear-gradient(135deg, #facc15, #eab308);
  --gradient-dark: linear-gradient(180deg, #1c1c1c, #000000);
  --gradient-accent: linear-gradient(
    120deg,
    #facc15 0%,
    #eab308 40%,
    #fde047 100%
  );
  --gradient-hero: radial-gradient(
    circle at center,
    #1a1a1a 0%,
    #000000 70%,
    #0a0a0a 100%
  );

  --btn-primary-bg: linear-gradient(
    135deg,
    #facc15 0%,
    #ffd700 35%,
    #eab308 70%,
    #b7791f 100%
  );
  --btn-primary-hover: linear-gradient(135deg, #facc15, #eab308);
  --btn-secondary-bg: #1f1f1f;
  --btn-secondary-hover: #2c2c2c;
  --btn-border: #facc15;

  --shadow-soft: 0 4px 14px rgba(234, 179, 8, 0.2);
  --shadow-glow: 0 0 16px rgba(234, 179, 8, 0.4);
  --shadow-inset: inset 0 0 10px rgba(234, 179, 8, 0.1);

  --border-light: rgba(255, 255, 255, 0.168);
  --border-gold: #facc15;

  --card-bg: #111111;
  --card-hover: #1f1f1f;
  --modal-bg: rgba(0, 0, 0, 0.95);
  --overlay-bg: rgba(0, 0, 0, 0.85);

  --success-color: #34d399;
  --error-color: #f87171;
  --warning-color: #fbbf24;
  --info-color: #60a5fa;

  --hover-glow: 0 0 14px rgba(234, 179, 8, 0.3);
  --focus-outline: 2px solid rgba(234, 179, 8, 0.35);
  --anaglyph-cyan: #1702347c;
  --anaglyph-red: #3a372a;

  --font-base: "Lato", sans-serif;
  --font-accent: "Montserrat", sans-serif;
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
body {
  font-family: var(--font-base);
  font-weight: 400;
}

.btn,
.cta-title {
  font-weight: 700;
}
.logo,
.brand-name,
h2,
.game-name,
.program-heading,
.highlight,
.stat-value,
.wins-number,
.try-free-title {
  font-family: var(--font-accent);
  font-weight: 700;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}
.section-title.partners {
  font-size: 36px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2 {
  font-size: 36px;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}
.section-title.partners h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-soft);
}

.promo-banner {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.promo-banner h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.promo-banner p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.countdown {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.countdown-item {
  margin: 0 10px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  border-radius: 5px;
  min-width: 80px;
}

.countdown-item span {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color);
}

.countdown-item small {
  font-size: 14px;
  color: var(--text-color);
}
.bonus-section {
  position: relative;
  padding: 80px 0;
  color: var(--text-color);
  z-index: 1;
  overflow: hidden;
  background: var(--gradient-hero);
}

.bonus-section .container {
  position: relative;
  z-index: 3;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-8px);
}
.bonus-card.starter {
  background: linear-gradient(135deg, #14532d, #22c55e);
  color: var(--accent-color);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.25);
}

.bonus-card.pro {
  background: linear-gradient(135deg, #fab115, #eab308);
  color: var(--primary-color);
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.3);
}

.bonus-card.vip {
  background: linear-gradient(135deg, #f57c0b, #b45309);
  color: var(--accent-color);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.3);
}
.bonus-card strong {
  color: var(--error-color);
}

@media (max-width: 768px) {
  .bonus-title {
    font-size: 1.8rem;
    gap: 10px;
  }

  .bonus-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .bonus-title {
    font-size: 1.5rem;
    gap: 8px;
  }

  .bonus-icon {
    width: 26px;
    height: 26px;
  }
}

.winnings-counter {
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.winnings-counter h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.counter {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.winnings-counter p {
  font-size: 16px;
}

@media (max-width: 992px) {
  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 120px 0 60px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .countdown {
    flex-wrap: wrap;
  }

  .countdown-item {
    margin: 5px;
    min-width: 70px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .promo-banner h3 {
    font-size: 22px;
  }

  .promo-banner p {
    font-size: 16px;
  }
}
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(6px);
  z-index: 1000;
  transition: background 0.3s ease;
  padding: 12px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45), 0 0 8px rgba(250, 204, 21, 0.06);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: baseline;
  font-family: var(--font-accent);
}

.logo-number,
.logo-text,
.logo-dot {
  line-height: 1;
}

.logo-number {
  position: relative;
  font-weight: 800;
  font-size: 24px;
  color: var(--secondary-color);
  text-shadow: -2px 0 1px var(--anaglyph-cyan), 2px 0 1px var(--anaglyph-red),
    0 0 4px rgba(0, 0, 0, 0.2);
  font-family: var(--font-accent);
}

.logo-text {
  font-size: 21px;

  color: var(--accent-soft);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  font-family: var(--font-accent);

  font-family: var(--font-accent);
}

.logo-dot {
  font-size: 10px;
  font-weight: 500;
  color: var(--secondary-light);
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .logo {
    font-size: 24px;
  }

  .logo span {
    font-size: 0.6em;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .logo span {
    font-size: 0.55em;
  }
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-link {
  color: var(--accent-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--accent-color)
  );
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.53);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-color);
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.67);
}

.nav-link.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-btn {
  display: inline-block;
  padding: 10px 20px;
  font-weight: bold;
  color: var(--dark-bg);
  background: var(--gradient-accent);
  background-size: 200% 200%;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  animation: shimmer 3s linear infinite;
}

.login-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--shadow-glow);
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.online-users {
  color: var(--accent-soft);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--error-color);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(255, 77, 77, 0.7);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
  }
  70% {
    transform: scale(1.4);
    box-shadow: 0 0 0 8px rgba(255, 77, 77, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}

.lang-switcher .lang {
  background: transparent;
  border: 1px solid var(--btn-border);
  color: var(--accent-color);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  font-weight: 500;
}

.lang-switcher .lang.active,
.lang-switcher .lang:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  display: none;
}

.burger span {
  width: 24px;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 8px;
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}
.mobile-lang-switcher,
.mobile-login-btn {
  display: none;
}
@media (max-width: 950px) {
  .mobile-lang-switcher,
  .mobile-login-btn {
    display: flex;
  }
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .burger span {
    height: 3px;
    width: 24px;
    background: var(--secondary-color);
    border-radius: 2px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--dark-bg);
    border-top: 1px solid var(--border-light);
    display: none;
    padding: 24px 10px;
    z-index: 999;
    animation: fadeIn 0.3s ease-in-out;
  }
  .nav-links.show {
    display: flex;
  }

  .nav-link {
    padding: 10px 16px;
    font-size: 18px;
  }

  .header-right {
    display: none;
  }

  .mobile-lang-switcher {
    padding: 10px 16px;
    justify-content: center;
    display: flex;
  }

  .mobile-login-btn {
    padding: 10px 16px;
    text-align: center;
  }

  .login-btn {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--primary-color);
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
  }

  .login-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 16px rgba(255, 193, 7, 0.4);
  }

  .lang-switcher {
    display: flex;
    gap: 12px;
  }
}
.hero-section {
  position: relative;
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  /* background-color: rgba(20, 36, 28, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
  color: var(--text-color);
  border-radius: 40px;
}
.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(
    ellipse at center,
    rgba(36, 22, 20, 0.6) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0.05) 100%
  ); */
  /* backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px); */
  z-index: 0;
}
.hero-overlay > .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-accent);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--dark-bg);
}

.badge-icon {
  color: var(--accent-color);
  font-size: 0.8rem;
  border-radius: 50%;
  padding: 3px 6px;
  margin-right: 8px;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--accent-color);
}

.hero-section .highlight {
  color: var(--secondary-color);
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(250, 204, 21, 0.35), 0 0 32px rgba(234, 179, 8, 0.2);
}

.hero-description {
  margin: 0 auto;
  color: var(--muted-text);
  font-size: 1.1rem;
  max-width: 650px;
  margin-top: 30px;
}

.jackpot-box {
  background: var(--gradient-dark);
  padding: 14px 20px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 24px;
  color: var(--accent-color);
  text-align: center;
}

.jackpot-label {
  font-size: 0.9rem;
  color: var(--muted-text);
}

.jackpot-amount {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.button-yellow,
.button-primary {
  display: inline-block;
  padding: 14px 32px;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  transform: scale(1);
  border: none;
  border-radius: 999px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
}

.button-yellow {
  background: var(--btn-primary-bg);
  color: var(--dark-bg);
  box-shadow: 0 0 14px rgba(255, 193, 7, 0.35),
    inset 0 0 4px rgba(255, 193, 7, 0.4);
}

.button-yellow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn-primary-hover);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.button-yellow:hover::before {
  opacity: 1;
}

.button-yellow:hover {
  color: var(--dark-bg);
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(255, 193, 7, 0.5);
}

.button-primary {
  background: var(--primary-light);
  color: var(--accent-color);
  box-shadow: 0 0 12px rgba(0, 255, 160, 0.2),
    inset 0 0 4px rgba(255, 255, 255, 0.1);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary-light);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.button-primary:hover::before {
  opacity: 1;
}

.button-primary:hover {
  color: var(--dark-bg);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 213, 79, 0.5);
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  /* .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  } */
  .hero-buttons a {
    width: 100%;
    text-wrap: balance;
    padding: 14px 20px;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .button-yellow,
  .button-primary {
    font-size: 12px;
  }

  .hero-badge {
    font-size: 0.7rem;
  }
  .badge-icon {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.875rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .button-yellow,
  .button-primary {
    font-size: 0.875rem;
    letter-spacing: 0.5px;
  }
}

.cta-marquee {
  background: var(--dark-bg);
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding: 10px 0;
}

.cta-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-marquee 40s linear infinite;
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cta-track span {
  display: inline-block;
  padding: 0 20px;
  color: var(--secondary-color);
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.live-icon {
  font-size: 20px;
}
.live-label {
  font-size: 18px;
}
#visitor-count {
  color: var(--text-color);
  font-weight: bold;
  font-size: 22px;
  text-shadow: 0 0 4px var(--secondary-color);
  transition: transform 0.2s ease, color 0.2s ease;
}

.visitor-count-flash {
  transform: scale(1.2);
  color: var(--text-color);
}

.live-stats-hero {
  color: var(--muted-text);
}

.recent-wins {
  color: var(--accent-soft);
  font-weight: bold;
  animation: blinkWin 1.5s infinite alternate;
}

@keyframes blinkWin {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}
.review-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.review-track {
  display: flex;
  width: max-content;
  animation: scrollReviews 30s linear infinite;
  gap: 24px;
}

.review-card {
  flex: 0 0 350px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.08);
  color: var(--text-color);
  text-align: center;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.2);
}

.review-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid #ffd700;
}

.review-text {
  font-size: 15px;
  color: var(--text-color);
  margin: 12px 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.review-author {
  font-weight: bold;
  color: var(--secondary-color);
}

.verified-badge {
  font-size: 12px;
  background: #00c853;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.review-stars {
  color: gold;
  font-size: 16px;
  animation: pulse-stars 2s infinite alternate;
}

@keyframes pulse-stars {
  from {
    opacity: 0.8;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}
#about {
  padding: 80px 20px;

  text-align: center;
}

#bonus .section-title h2 {
  color: white;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted-text);
}

.about-subtitle {
  font-size: 22px;
  margin: 40px 0 20px;
  color: var(--accent-color);
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.1);
}

.about-features {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.about-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--text-color);
}

.about-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  #about {
    padding: 60px 16px;
  }

  #about .section-title h2 {
    font-size: 28px;
  }

  .about-subtitle {
    font-size: 20px;
  }

  .about-content {
    font-size: 16px;
  }

  .about-features li {
    padding-left: 24px;
    font-size: 16px;
  }

  .flame-icon {
    width: 70px;
    height: 70px;
  }
  .hero-heading-text {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 19px;
  }
}
.bonus-section {
  padding: 80px 20px;
  color: var(--text-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-title {
  font-size: 2.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  margin-bottom: 20px;
}

.bonus-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 6px var(--accent-color));
}

.bonus-subtitle {
  font-size: 1.2rem;
  color: var(--accent-soft);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Сетка карточек */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: left;
  color: var(--text-color);
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(255, 215, 0, 0.15);
  border: 2px solid var(--border-gold);
}

.bonus-card h3 {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--accent-color);
  text-shadow: 1px 2px 1px rgba(26, 26, 26, 0.782);
}

.bonus-amount {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--accent-color);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.562), 0px 0px 10px #0000002d;
}

.bonus-card p {
  font-size: 1rem;
  color: var(--accent-soft);
  margin-bottom: 10px;
  line-height: 1.5;
}

.bonus-card p strong {
  color: var(--accent-soft);
}

.bonus-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-color);
  background: var(--gradient-dark);
  box-shadow: 0 0 14px var(--shadow-soft);
  text-decoration: none;
  transition: all 0.3s ease;
}

.bonus-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px var(--shadow-glow);
}

/* Адаптив */
@media (max-width: 768px) {
  .bonus-title {
    font-size: 1.8rem;
    gap: 10px;
  }

  .bonus-icon {
    width: 32px;
    height: 32px;
  }

  .bonus-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .bonus-title {
    font-size: 1.5rem;
  }

  .bonus-icon {
    width: 28px;
    height: 28px;
  }

  .bonus-btn {
    width: 100%;
    text-align: center;
  }

  .bonus-card {
    padding: 24px 20px;
  }
}
.games-section {
  padding: 60px 20px;
}

.games-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.game-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.category-btn {
  background: var(--btn-secondary-bg);
  border: 1px solid var(--border-light);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.category-btn.active,
.category-btn:hover {
  background: var(--secondary-color);
  color: var(--dark-text);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}

.game-card {
  background: var(--gradient-dark);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  color: var(--text-color);
  border: 2px solid var(--border-gold);
}

/* .game-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 200, 0, 0.07),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
} */

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12), 0 0 14px rgba(255, 200, 0, 0.15);
}

.game-card:hover::before {
  opacity: 1;
}
.game-icon img {
  width: 60px;
  height: auto;
  margin-bottom: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.2));
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translateY(0);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.15));
  }
  50% {
    transform: translateY(-6px);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
  }
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.15));
  }
}

.game-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}
.game-card:hover .game-icon img {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}
.game-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.game-desc {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 16px;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.game-tags span {
  background: var(--btn-secondary-bg);
  color: var(--secondary-light);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.game-btn {
  display: inline-block;
  background: var(--gradient-red);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.4);
}

.partners-section {
  padding: 100px 20px;

  text-align: center;
  position: relative;
}

.section-header {
  margin-bottom: 40px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted-text);
  font-size: 1rem;
}
.section-subtitle.partners {
  color: var(--muted-text);
}
.section-subtitle.payment {
  margin-top: 20px;
}
.partner-marquee {
  overflow: hidden;
  position: relative;
  margin: 40px 0;
}

.partner-track {
  display: flex;
  gap: 60px;
  animation: scrollPartners 30s linear infinite;
  white-space: nowrap;
}

.partner-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  padding: 12px 24px;
  border-radius: 50px;
  flex: 0 0 auto;
}

@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.referral-banner {
  margin-top: 60px;
  background: var(--gradient-accent);
  padding: 40px;
  border-radius: 20px;
  color: #000;
  box-shadow: 0 12px 32px rgba(255, 200, 0, 0.1);
}

.referral-banner h3 {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-family: var(--font-accent);
  text-shadow: 1px 2px 1px #f1f1f1;
}

.referral-banner .highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-light);
}

.referral-banner p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--btn-secondary-hover);
}

.btn-referral {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gradient-dark);
  color: var(--accent-soft);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease;
}

.btn-referral:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.6);
}

@media (max-width: 768px) {
  .partner-name {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .referral-banner {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }
  .referral-banner h3 {
    font-size: 1.3rem;
  }
  .referral-banner .highlight {
    font-size: 1.1rem;
  }
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin: 50px auto;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
}

.payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background: var(--gradient-gold);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  font-weight: 700;
  color: var(--card-bg);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.payment-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 215, 0, 0.05),
    transparent
  );
  z-index: 0;
}

.payment-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(255, 215, 0, 0.2);
}

.payment-item span {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .payment-item {
    font-size: 0.9rem;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .payment-item {
    height: 50px;
    font-size: 0.85rem;
  }
}
.payment-section {
  padding: 100px 20px;
  color: var(--text-color);
  text-align: center;
}

.section-header {
  margin-bottom: 40px;
}

.section-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--muted-text);
}

.payment-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.withdrawal-info {
  margin-top: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.withdrawal-info h3 {
  font-size: 1.5rem;
  color: var(--success-color);
  margin-bottom: 15px;
}

.withdrawal-info p {
  font-size: 1rem;
  color: var(--muted-text);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .section-subtitle {
    font-size: 0.95rem;
  }
}

.cta-content {
  margin: 0 auto;
  background: var(--card-bg);
  border: 2px solid var(--border-gold);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-top: 30px;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.6;
}

.highlighted-brand {
  background: linear-gradient(
    135deg,
    var(--secondary-light),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cta-content {
    padding: 30px 20px;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.6rem;
  }
  .cta-subtitle {
    font-size: 0.95rem;
  }
}
.wins-today-section {
  background: var(--gradient-hero);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.wins-title {
  color: var(--accent-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.wins-number {
  font-size: 64px;
  color: var(--secondary-light);
  font-family: var(--font-accent);
  margin-bottom: 16px;
  min-height: 64px;

  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(250, 204, 21, 0.35), 0 0 32px rgba(234, 179, 8, 0.2);
}
.wins-subtitle {
  font-size: 18px;
  color: var(--muted-text);
}

.wins-subtitle .brand-name {
  color: var(--secondary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .wins-title {
    font-size: 26px;
  }
  .wins-number {
    font-size: 36px;
  }
  .wins-subtitle {
    font-size: 16px;
  }
}
/* Wrapper */
.nbx-bonus {
  padding: 80px 20px;
  color: var(--text-color);
}

.nbx-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.nbx-bonus__head {
  text-align: center;
  margin-bottom: 48px;
}
.nbx-bonus__title {
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.nbx-bonus__title-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nbx-bonus__subtitle {
  color: var(--muted-text);
  font-size: 1.1rem;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Rows */
.nbx-bonus__row {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}
.nbx-bonus__row--top {
  grid-template-columns: repeat(2, 1fr);
}
.nbx-bonus__row--bottom {
  grid-template-columns: repeat(3, 1fr);
}

.nbx-card__text,
.nbx-card__amount,
.nbx-card__btn {
  text-align: left;
  align-self: stretch;
}
/* Card base */
.nbx-card {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nbx-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

/* Specific widths for safety */
.nbx-card--wide {
  min-height: 250px;
}
.nbx-card--small {
  min-height: 260px;
}
.nbx-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.nbx-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
/* Icons */
.nbx-icon--gift {
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--success-color)
  );
}
.nbx-icon--cashback {
  background: linear-gradient(135deg, var(--info-color), var(--info-color));
}
.nbx-icon--spin {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.nbx-icon--referral {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: var(--dark-text);
}
.nbx-icon--star {
  background: linear-gradient(135deg, var(--error-color), #b00020);
}

.nbx-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}
.nbx-badge-popular {
  background: var(--error-color);
  margin-left: auto;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
}

/* Texts */
.nbx-card__title {
  font-size: 1.2rem;
  font-family: var(--font-accent);
  margin-top: 4px;
  text-transform: uppercase;
  text-align: left;
}
.nbx-card__text {
  font-size: 0.95rem;
  color: var(--muted-text);
  line-height: 1.55;
}
.nbx-text--accent {
  color: var(--success-color);
  font-weight: 700;
}
.nbx-text--danger {
  color: var(--error-color);
  font-weight: 700;
}

.nbx-card__amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-top: 4px;
  text-align: left;
}

.nbx-btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 30px;
  border-radius: 50px;
  background: var(--btn-primary-bg);
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: var(--hover-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nbx-btn:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 201, 62, 0.55);
}

@media (max-width: 1024px) {
  .nbx-bonus__row--top {
    grid-template-columns: 1fr;
  }
  .nbx-bonus__row--bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nbx-bonus__title {
    font-size: 2.2rem;
  }
  .nbx-bonus__subtitle {
    font-size: 1rem;
  }
  .nbx-bonus__row--bottom {
    grid-template-columns: 1fr;
  }
  .nbx-btn {
    text-align: center;
    align-self: center;
  }
  .nbx-badge-popular {
    font-size: 11px;
    padding: 4px 6px;
    margin-left: 0;
  }
  .nbx-card__top {
    flex-direction: column;
  }

  .nbx-badge {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.5rem;
  }
}
@media (max-width: 480px) {
  .nbx-bonus__title {
    font-size: 1.9rem;
  }
  .nbx-card {
    padding: 26px 22px;
  }
}
.nbx-urgency {
  position: relative;
  padding: 80px 20px 100px;
  text-align: center;
  overflow: hidden;
  background: none;
  z-index: 0;
}

.nbx-urgency::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.254),
      rgba(0, 0, 0, 0.3)
    ),
    url("images/urgency-bg.jpg") center center / cover no-repeat;
  filter: blur(0px);
  z-index: 0;
  pointer-events: none;
}

.nbx-urgency::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.nbx-urgency__container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: var(--accent-color);
}
.nbx-urgency__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-accent);
  color: var(--primary-light);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-glow);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin: 0 auto 24px;
  width: auto;
  max-width: 90vw;
}

.nbx-urgency__badge-emoji {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(255, 100, 0, 0.5));
}

#nbxTimer {
  font-weight: bold;
  background: rgba(0, 0, 0, 0.15);
  padding: 4px 10px;
  border-radius: 8px;
  font-family: monospace;
  font-size: 1.05rem;
  color: var(--primary-color);
}
@media (max-width: 600px) {
  .nbx-urgency__badge {
    font-size: 0.7rem;
    padding: 8px 14px;
    gap: 8px;
  }

  #nbxTimer {
    font-size: 0.95rem;
    padding: 4px 8px;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 16px rgba(255, 200, 0, 0.25), var(--shadow-soft);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 200, 0, 0.45);
  }
}
.nbx-urgency__badge-emoji {
  font-size: 1.1rem;
}

.nbx-urgency__title {
  margin: 0 0 20px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: var(--accent-color);
}
.nbx-line {
  display: block;
}
.nbx-line--accent {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nbx-urgency__subtitle {
  color: var(--accent-soft);
  font-size: 1.2rem;
  margin-bottom: 44px;
}
.nbx-text-danger {
  color: var(--info-color);
  font-weight: 700;
}

.nbx-urgency__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 44px;
  border-radius: 50px;
  background: var(--gradient-accent);
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(255, 201, 62, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nbx-urgency__cta:hover {
  transform: translateY(-3px);
  background: var(--btn-primary-hover);
  box-shadow: 0 0 36px rgba(255, 201, 62, 0.6);
}

.nbx-urgency__hint {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.nbx-urgency__notes {
  margin: 26px auto 0;
  padding: 0;
  list-style: none;
  max-width: 780px;
  color: var(--muted-text);
  font-size: 0.85rem;
  line-height: 1.5;
}
.nbx-urgency__notes li + li {
  margin-top: 6px;
}

@media (max-width: 768px) {
  .nbx-urgency {
    padding: 64px 16px 80px;
  }

  .nbx-urgency__cta {
    width: 100%;
    justify-content: center;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .nbx-urgency__subtitle {
    font-size: 1.05rem;
    margin-bottom: 34px;
  }
}
@media (max-width: 480px) {
  .nbx-urgency__notes {
    font-size: 0.78rem;
  }
  .brand-name {
    font-size: 38px;
  }
}
.faq-section {
  color: var(--text-color);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: var(--gradient-gold);
  opacity: 0.4;
  filter: blur(50px);
  border-radius: 50%;
  z-index: 0;
}

.faq-section .container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  gap: 24px;
}

.faq-item {
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
  border: 1px solid rgba(255, 193, 7, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.35);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 28px;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ffffff;
}

.faq-question .icon {
  font-size: 22px;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  color: #dddddd;
  padding: 0 28px;
  font-size: 16px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 16px 28px 24px;
}
/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }
  .faq-question {
    font-size: 16px;
    text-align: left;
  }
  .faq-answer {
    font-size: 15px;
  }
}
.try-free-section {
  position: relative;
  padding: 100px 20px;
  color: var(--text-color);
  overflow: hidden;
  z-index: 1;
}

.try-free-section .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.try-free-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 0.8s ease-out both;
}

.try-free-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--muted-text);
  max-width: 700px;
  margin: 0 auto 35px;
  animation: fadeInUp 1s ease-out both;
}

.try-free-button {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--btn-primary-bg);
  color: var(--primary-light);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  animation: fadeInUp 1.2s ease-out both;
}

.try-free-button:hover {
  background: var(--btn-primary-hover);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

.try-free-background-decor::before,
.try-free-background-decor::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
  filter: blur(50px);
  z-index: 0;
}

.try-free-background-decor::before {
  width: 500px;
  height: 500px;
  background: var(--error-color);
  top: -100px;
  left: -120px;
}

.try-free-background-decor::after {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: -80px;
  right: -80px;
}

.try-free-background-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .try-free-title {
    font-size: 2rem;
  }

  .try-free-subtitle {
    font-size: 1rem;
  }

  .try-free-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

.individual-program-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  color: var(--text-color);
}

.program-intro {
  text-align: center;
  margin-bottom: 48px;
}

.program-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.program-subtitle {
  font-size: 20px;
  color: var(--muted-text);
  max-width: 600px;
  margin: 0 auto;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.program-card {
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-gold);
}

.program-card:hover {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: var(--shadow-glow);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.program-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--success-color);
}

.program-description {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .program-title {
    font-size: 32px;
  }
  .program-subtitle {
    font-size: 18px;
  }
  .program-heading {
    font-size: 20px;
  }
}
.program-cta-button {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  background: var(--gradient-accent);
  border-radius: 999px;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
  text-align: center;
  text-decoration: none;
}

.program-cta-button:hover {
  background: var(--btn-primary-hover);
  box-shadow: 0 0 18px var(--accent-soft);
  transform: scale(1.05);
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px var(--accent-soft);
  }
  30% {
    transform: scale(1.08);
    box-shadow: 0 0 20px var(--accent-color);
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 12px var(--accent-soft);
  }
  70% {
    transform: scale(1.06);
    box-shadow: 0 0 18px var(--accent-color);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px var(--accent-soft);
  }
}
.trust-stats {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.trust-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 12px;
}

.trust-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--muted-text);
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  justify-content: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stat-card {
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-value {
  font-size: 38px;
  font-weight: 900;
  color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(250, 204, 21, 0.35), 0 0 32px rgba(234, 179, 8, 0.2);
}
.stat-card:hover .stat-value {
  transform: scale(1.08);
}
.stat-label {
  font-size: 14px;
  color: var(--muted-text);
}

.security-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
}

.indicator {
  background: var(--btn-secondary-bg);
  color: var(--secondary-color);
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: var(--shadow-inset);
}
.sports-banner {
  background: linear-gradient(
      to right,
      rgba(30, 11, 10, 0.544),
      rgba(30, 17, 10, 0.358)
    ),
    url("images/sports-banner.jpg") no-repeat center center / cover;
  color: var(--accent-color);
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 390px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
.sports-banner-heading {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.sports-banner-heading h2 {
  margin: 0;
}
.sports-banner-content {
  max-width: 1200px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sports-banner h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sports-banner h2 span {
  color: var(--accent-color);
}

.sports-banner p {
  font-size: 1.3rem;
  color: var(--accent-soft);
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-button {
  background: var(--gradient-accent);
  font-weight: bold;
  font-size: 1rem;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-glow);
  animation: heartbeat 1.8s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.45);
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.06);
  }
  50% {
    transform: scale(0.98);
  }
  75% {
    transform: scale(1.04);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .sports-banner {
    padding: 40px 20px;
    justify-content: center;
    text-align: center;
    background-position: right;
  }

  .sports-banner-content {
    max-width: 100%;
  }

  .sports-banner h2 {
    font-size: 1.8rem;
  }

  .sports-banner p {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 12px 26px;
  }
}
.win-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-dark);
  color: var(--accent-color);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-glow);
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transform: translateX(150%);
  transition: all 0.6s ease;
  max-width: 280px;
  width: 90%;
  pointer-events: none;
}

.win-toast.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

@media (max-width: 600px) {
  .win-toast {
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
  }
}
.nbx-deposit-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
}

.nbx-deposit-bg-glow {
  /* position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(250, 204, 21, 0.35),
    transparent 80%
  );
  z-index: 0; */
}

.nbx-deposit-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 60px;
  flex-wrap: wrap;
}

.nbx-deposit-left {
  flex: 1;
  min-width: 280px;
}

.nbx-deposit-right {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.nbx-deposit-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--primary-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nbx-deposit-left h2 {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.nbx-deposit-left .highlight {
  color: var(--secondary-light);

  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(250, 204, 21, 0.35), 0 0 32px rgba(234, 179, 8, 0.2);
}

.nbx-deposit-text {
  font-size: 1.1rem;
  color: var(--muted-text);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.nbx-highlight-glow {
  color: var(--secondary-light);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 213, 79, 0.5);
}

.nbx-deposit-cta {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--primary-color);
  padding: 14px 36px;
  font-weight: bold;
  border-radius: 999px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 16px rgba(255, 193, 7, 0.4);
  text-transform: uppercase;
}

.nbx-deposit-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(255, 193, 7, 0.6);
}

.nbx-card-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 360px;
}

.nbx-card {
  background: #111;
  border-radius: 20px;
  padding: 20px 28px;
  font-size: 1.1rem;
  color: var(--accent-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.nbx-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.15);
}

.nbx-card img,
.nbx-card svg,
.nbx-card span {
  flex-shrink: 0;
  font-size: 1.3rem;
}

@media (max-width: 1024px) {
  .nbx-deposit-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .nbx-deposit-left h2 {
    font-size: 2rem;
  }

  .nbx-deposit-text {
    margin: 0 auto 32px;
  }

  .nbx-deposit-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .nbx-card {
    font-size: 1rem;
    padding: 16px 24px;
  }

  .nbx-card-stack {
    max-width: 100%;
    align-items: center;
  }
}
.winners-section {
  padding: 60px 20px;
}

.winners-title {
  text-align: center;
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 32px;
  font-family: var(--font-accent);
}

.winners-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  background: var(--card-bg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
}

.winners-head {
  background: var(--gradient-dark);
  color: var(--secondary-light);
  font-weight: bold;
  font-size: 1rem;
  border-bottom: 2px solid var(--border-light);
}

.win-amount {
  color: var(--secondary-color);
  font-weight: 700;
}

/* Сохраняем десктоп */
.winners-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--text-color);
  font-size: 0.95rem;
  align-items: center;
}

@media (max-width: 640px) {
  .winners-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 6px;
    font-size: 1rem;
  }

  .winners-head {
    display: none;
  }

  .winners-row span {
    display: block;
    width: 100%;
  }

  .winners-row .win-amount {
    font-size: 1.15rem;
    font-weight: 800;
    margin-top: 6px;
    color: var(--secondary-color);
  }
}
.footer {
  background: var(--gradient-dark);
  color: var(--text-color);
  padding: 60px 20px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-accent);
}

.footer-brand {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.footer-brand .accent {
  color: var(--secondary-color);
}

.footer-logo p {
  font-size: 0.95rem;
  color: var(--muted-text);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-links a {
  font-size: 1rem;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px dashed transparent;
}

.footer-links a:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.footer-cta {
  position: relative;
  background: var(--gradient-accent);
  padding: 32px 28px;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.25);
  overflow: hidden;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  opacity: 0.5;
  z-index: -1;
}

.footer-cta p {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 600px;
  color: var(--primary-color);
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(237, 237, 237, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.25), 0 0 20px rgba(250, 204, 21, 0.35),
    0 0 32px rgba(234, 179, 8, 0.2);
}

.footer-button {
  background: var(--gradient-dark);
  color: var(--secondary-color);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.3);
  border: 1px solid var(--btn-border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-button:hover {
  background: var(--btn-primary-hover);
  transform: scale(1.03);
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.45);
}

.footer-bottom {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .footer-inner {
    padding: 0 20px;
  }

  .footer-brand {
    font-size: 1.8rem;
  }

  .footer-cta p {
    font-size: 1rem;
  }

  .footer-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    font-size: 1rem;
  }

  .footer-cta {
    padding: 20px;
  }

  .footer-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 16px 24px;
  }

  .footer-brand {
    font-size: 1.6rem;
  }

  .footer-logo p {
    font-size: 0.9rem;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-cta {
    padding: 18px;
  }

  .footer-cta p {
    font-size: 0.95rem;
  }

  .footer-button {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}
