:root {
  --primary-color: #101c40;
  --secondary-color: #ffdd00;
  --accent-color: #ffffff;

  --text-color: #e0e0e0;
  --dark-text: #f5f5f5;
  --light-bg: #1a1f35;
  --dark-bg: #0b1124;

  --primary-light: #1e2d5e;
  --secondary-light: #ffe24d;
  --accent-soft: #fff9cc;
  --muted-text: #999ca8;

  --gradient-gold: linear-gradient(135deg, #ffd700, #ff8c00);
  --gradient-red: linear-gradient(135deg, #ff5252, #ff1744);
  --gradient-dark: linear-gradient(180deg, #1c2347, #0f132b);
  --gradient-accent: linear-gradient(90deg, #ffcc00 0%, #ff6f00 100%);
  --gradient-hero: radial-gradient(
    circle at center,
    #2c3e73 0%,
    #1a2857 60%,
    #0b1124 100%
  );

  --btn-primary-bg: var(--gradient-accent);
  --btn-primary-hover: linear-gradient(135deg, #ffaa00, #ffcc00);
  --btn-secondary-bg: #1e1e2f;
  --btn-secondary-hover: #29293f;
  --btn-border: #ffb300;

  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 14px rgba(255, 187, 0, 0.4);
  --shadow-inset: inset 0 0 8px rgba(255, 187, 0, 0.3);

  --border-light: rgba(255, 255, 255, 0.05);
  --border-gold: #ffb300;

  --card-bg: #1e274a;
  --card-hover: #2e3665;
  --modal-bg: rgba(10, 10, 25, 0.95);
  --overlay-bg: rgba(0, 0, 0, 0.75);

  --success-color: #00e676;
  --error-color: #f44336;
  --warning-color: #ffca28;
  --info-color: #29b6f6;

  --hover-glow: 0 0 12px rgba(255, 200, 0, 0.4);
  --focus-outline: 2px solid rgba(255, 200, 0, 0.5);
}
html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  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;
}

@font-face {
  font-family: "Bungee";
  src: url("fonts/Bungee-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.btn,
.cta-title {
  font-weight: 700;
}
.logo,
.brand-name,
h2,
.game-name,
.program-heading,
.highlight {
  font-family: "Bungee", cursive;
}
* {
  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);
  background: url("images/bonus-b.jpg") no-repeat center/cover;
  z-index: 1;
  overflow: hidden;
}

.bonus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 216, 100, 0.373) 0%,
    rgba(255, 170, 50, 0.315) 35%,
    rgba(0, 0, 0, 0.6) 100%
  );
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 2;
}

.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, #00ffc3, #00b4a8);
  color: var(--dark-text);
  box-shadow: 0 0 16px rgba(0, 255, 195, 0.3);
}

.bonus-card.pro {
  background: linear-gradient(135deg, #ffc107, #ff8f00);
  color: var(--dark-text);
  box-shadow: 0 0 16px rgba(255, 193, 7, 0.35);
}

.bonus-card.vip {
  background: linear-gradient(135deg, #f72585, #7209b7);
  color: var(--accent-color);
  box-shadow: 0 0 16px rgba(114, 9, 183, 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;
}

footer {
  background-color: var(--dark-bg);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--secondary-color);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright p {
  color: var(--accent-soft);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--accent-soft);
  font-size: 24px;
  cursor: pointer;
}

@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: linear-gradient(90deg, #14532d, #1b5e20, #2e7d32);
  backdrop-filter: blur(6px);
  z-index: 1000;
  transition: background 0.3s ease;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-light);
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 2px #0f2916, 0 0 8px rgba(255, 193, 7, 0.4);
}
.logo span {
  font-size: 0.6em;
  font-weight: 600;
  color: var(--accent-soft);
  text-shadow: none;
  letter-spacing: 0.5px;
  opacity: 0.75;
}

@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-text);
  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;
}

@media (max-width: 950px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--dark-bg);
    border-top: 1px solid var(--border-light);
    display: none;
    padding: 12px 0;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-link {
    padding: 10px 16px;
    font-size: 18px;
  }

  .header-right {
    display: none;
  }
}

.hero-section {
  background-image: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.602);
  border-radius: 18px;
  padding: 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-color);
}

.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-text);
}

.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);
}

.hero-description {
  margin: 20px 0;
  color: var(--muted-text);
  font-size: 1.1rem;
  max-width: 650px;
}

.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);
}

.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;
}

.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-text);
  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;
  }

  .button-yellow,
  .button-primary {
    width: 100%;
  }
}

.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: "Bungee", cursive;

  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--primary-light);
  text-shadow: 1px 2px 2px rgba(255, 255, 255, 0.574);
}

.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: 40px;
  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-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.game-btn {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--dark-text);
  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);
}
.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;
  margin-bottom: 16px;
  font-family: "Bungee", cursive;
  text-shadow: 1px 2px 1px #f3f3f3;
}

.referral-banner .highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--dark-text);
}

.referral-banner p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.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;
  }
}
.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-section {
  padding: 80px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  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;
}

.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;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--secondary-light),
    var(--secondary-color)
  );
  color: var(--dark-text);
  font-weight: bold;
  padding: 16px 36px;
  font-size: 1.1rem;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.4);
  text-decoration: none;
  transition: 0.3s ease all;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.6);
}

@media (max-width: 768px) {
  .cta-content {
    padding: 30px 20px;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.6rem;
  }
  .cta-subtitle {
    font-size: 0.95rem;
  }
  .cta-button {
    width: 100%;
    padding: 14px 0;
  }
}
.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: "Bungee", cursive;
  margin-bottom: 16px;
  min-height: 64px;

  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.4);

  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(236, 72, 153, 0.35), 0 0 32px rgba(236, 72, 153, 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);
}

/* 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;
}

.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;
}

/* Texts */
.nbx-card__title {
  font-size: 1.2rem;
  font-family: "Bungee", cursive;
  margin-top: 4px;
}
.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;
}

.nbx-btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 30px;
  border-radius: 50px;
  background: var(--btn-primary-bg);
  color: var(--dark-text);
  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: 10px;
    padding: 4px 6px;
    margin-left: 0;
  }
  .nbx-card__top {
    flex-direction: column;
  }
}
@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.6),
      rgba(0, 0, 0, 0.3)
    ),
    url("images/urgency-bg.jpg") center center / cover no-repeat;
  filter: blur(1px);
  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: 8px;
  font-weight: 500;
  background: var(--btn-secondary-bg);
  color: var(--secondary-light);
  padding: 10px 26px;
  border-radius: 32px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 32px;
}
.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-gold);
  -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(--dark-text);
  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__badge {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
  .nbx-urgency__cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 18px 24px;
  }
  .nbx-urgency__subtitle {
    font-size: 1.05rem;
    margin-bottom: 34px;
  }
}
@media (max-width: 480px) {
  .nbx-urgency__badge {
    gap: 6px;
  }
  .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, #1c2d1f, #243d2a);
  border: 1px solid rgba(144, 238, 144, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 64, 0, 0.3);
  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(0, 100, 0, 0.5);
}

.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(--success-color)
  );
  -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(--dark-text);
  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(--success-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(--dark-text);
  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;
}

.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);
  box-shadow: 0 6px 18px rgba(255, 204, 0, 0.2);
}

.stat-value {
  font-size: 42px;
  font-weight: 900;
  color: var(--secondary-color);

  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.4);

  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(255, 193, 7, 0.4), 0 0 32px rgba(255, 193, 7, 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;
  border-top: 1px solid var(--border-light);
}

.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(10, 20, 30, 0.8),
      rgba(10, 20, 30, 0.6)
    ),
    url("images/sports-banner.jpg") no-repeat center center / cover;
  color: var(--accent-color);
  padding: 60px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
.sports-banner-heading {
  max-width: 500px;
}

.sports-banner-heading h2 {
  margin: 0;
}
.sports-banner-content {
  max-width: 1000px;
  z-index: 2;
}

.sports-banner h2 {
  font-size: 2.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.1rem;
  color: var(--accent-soft);
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-button {
  background: var(--gradient-accent);
  color: var(--dark-text);
  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;
  }
}
.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;
  }
}
