:root {
  --primary-color: #8b0000;
  --secondary-color: #ff8c00;
  --accent-color: #ffd700;

  --text-color: #ffffff;
  --dark-text: #333333;
  --light-bg: #1a1a1a;
  --dark-bg: #0f0f0f;

  --primary-light: #b22222;
  --secondary-light: #ffa733;
  --accent-soft: #fff2b0;
  --muted-text: #aaaaaa;

  --gradient-gold: linear-gradient(135deg, #ffd700, #ffa500);
  --gradient-red: linear-gradient(135deg, #8b0000, #b22222);
  --gradient-dark: linear-gradient(180deg, #1a1a1a, #0f0f0f);
  --gradient-accent: linear-gradient(90deg, #ff8c00 0%, #ffd700 100%);
  --gradient-hero: radial-gradient(circle at top, #8b0000, #1a1a1a);

  --btn-primary-bg: var(--gradient-accent);
  --btn-primary-hover: linear-gradient(135deg, #ffa500, #ffd700);
  --btn-secondary-bg: #333333;
  --btn-secondary-hover: #444444;
  --btn-border: #ffd700;

  --shadow-soft: 0 4px 10px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 15px rgba(255, 215, 0, 0.6);
  --shadow-inset: inset 0 0 10px rgba(255, 140, 0, 0.2);

  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: #ffd700;

  --card-bg: #2a2a2a;
  --card-hover: #3a3a3a;
  --modal-bg: rgba(0, 0, 0, 0.85);
  --overlay-bg: rgba(0, 0, 0, 0.6);

  --success-color: #4caf50;
  --error-color: #ff4c4c;
  --warning-color: #ffc107;
  --info-color: #2196f3;

  --hover-glow: 0 0 10px rgba(255, 140, 0, 0.5);
  --focus-outline: 2px solid rgba(255, 215, 0, 0.6);
}
@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 {
  font-family: "Bungee", cursive;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--dark-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: 50px;
}

.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);
}

.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-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 h3 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: var(--text-color);
  text-shadow: 3px 2px 1px rgba(26, 26, 26, 0.8);
}

.bonus-amount {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-color);
  text-shadow: 1px 2px 1px rgba(26, 26, 26, 0.8);
}

.bonus-card p {
  font-size: 1.2rem;
  color: var(--muted-text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.bonus-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  background: var(--gradient-accent);
  box-shadow: 0 0 14px var(--shadow-soft);
  text-decoration: none;
  transition: 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: 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: #000;
  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(--text-color);
  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);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  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;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .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: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  transition: background 0.3s ease;
  padding: 12px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-color);
  text-shadow: 0 0 8px var(--secondary-color);
}

.logo span {
  font-size: 0.6em;
  font-weight: 600;
  color: var(--muted-text);
  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(--muted-text);
  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: #000;
  background: var(--gradient-accent);
  background-size: 200% 200%;
  border: none;
  border-radius: 6px;
  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(--text-color);
  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(--muted-text);
  color: var(--muted-text);
  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: #000;
  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: 768px) {
  .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;
  }
}
.brand-name {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-bg {
  z-index: 0;
}
.gold-particles {
  z-index: 1;
}
.hero-overlay {
  z-index: 2;
}
.hero-content {
  z-index: 3;
}

.hero {
  position: relative;
  background: url("images/hero.jpg") center/cover no-repeat fixed;
  overflow: hidden;
  padding: 100px 20px;
  text-align: center;
  color: var(--text-color);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--primary-color) 87.2%, transparent),
    color-mix(in srgb, var(--dark-bg) 50.2%, transparent)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.gold-particles {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: 0;
  background: radial-gradient(
    circle,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  opacity: 0.8;
  animation: float linear forwards;
}

@keyframes float {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--accent-color);
  text-shadow: 0 0 12px
    color-mix(in srgb, var(--secondary-color) 40%, transparent);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: color-mix(in srgb, var(--text-color) 80%, transparent);
  margin-top: 10px;
  text-shadow: 0 0 4px color-mix(in srgb, var(--accent-color) 10%, transparent);
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.hero-description {
  color: var(--muted-text);
  font-size: 17px;
  margin-top: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  min-width: 200px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px
    color-mix(in srgb, var(--accent-color) 25%, transparent);
  border: none;
  animation: pulse-cta 2s infinite;
}

.cta-button.primary {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: var(--dark-bg);
  box-shadow: 0 0 15px color-mix(in srgb, var(--accent-color) 60%, transparent);
}

.cta-button.secondary {
  background: var(--dark-bg);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  box-shadow: 0 0 12px color-mix(in srgb, var(--accent-color) 20%, transparent)
    inset;
}

.cta-button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent-color) 60%, transparent);
}

@keyframes pulse-cta {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-color) 60%, transparent);
  }
  70% {
    box-shadow: 0 0 0 12px
      color-mix(in srgb, var(--accent-color) 0%, transparent);
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-color) 0%, transparent);
  }
}
.live-stats-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent-color) 10%, transparent),
    color-mix(in srgb, var(--secondary-color) 5%, transparent)
  );
  padding: 22px 32px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 40%, transparent);
  border-radius: 12px;
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent-color) 20%, transparent);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 22px;
}

.live-stats-hero:hover {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent-color) 20%, transparent),
    color-mix(in srgb, var(--secondary-color) 10%, transparent)
  );
}

.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: color-mix(in srgb, var(--accent-color) 60%, var(--secondary-color));
  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: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.08);
  color: #fff;
  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: #ccc;
  margin: 12px 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.review-author {
  font-weight: bold;
  color: #ffd700;
}

.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;
}

#about .section-title h2 {
  font-size: 36px;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  margin-bottom: 40px;
  position: relative;
}

.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;
  }
}
.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(--muted-text);
  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);
}

.bonus-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.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.4);
}

.bonus-card p {
  font-size: 1rem;
  color: var(--muted-text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.bonus-card p strong {
  color: var(--secondary-color);
}

.bonus-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  background: var(--gradient-accent);
  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: 4rem 0;
}

.game-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--shadow-glow);
}

.game-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: var(--gradient-accent);
  color: var(--text-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-image img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-info {
  padding: 20px;
  text-align: center;
}

.game-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
}

.game-info p {
  font-size: 14px;
  margin: 4px 0;
  color: var(--muted-text);
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  display: inline-block;
  padding: 3px 8px;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--accent-soft);
  border-radius: 12px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.tag.hot {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  color: var(--text-color);
  box-shadow: 0 0 6px rgba(255, 80, 80, 0.5);
}

.tag.new {
  background: linear-gradient(135deg, #2196f3, #9c27b0);
  color: var(--text-color);
  box-shadow: 0 0 6px rgba(100, 200, 255, 0.5);
}

.tag.vip {
  background: var(--gradient-gold);
  color: var(--dark-text);
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

.game-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.star {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-right: 2px;
}

.play-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--gradient-accent);
  border-radius: 12px;
  color: #000;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--shadow-glow);
}

@media (max-width: 768px) {
  .game-image {
    height: 120px;
    font-size: 2.4rem;
  }

  .game-info h3 {
    font-size: 1.1rem;
  }

  .game-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .game-image {
    height: 100px;
    font-size: 2.2rem;
  }

  .game-info {
    padding: 16px;
  }
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.game-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.game-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  text-align: center;
}

.play-button {
  margin-top: auto;
}
.partners-section {
  padding: 100px 20px;
  background: var(--light-bg);
  color: var(--text-color);
  text-align: center;
  position: relative;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted-text);
  font-size: 1rem;
}

.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);
  background: var(--dark-bg);
  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: 2rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.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(--light-bg);
  color: var(--accent-color);
  border-radius: 12px;
  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: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--border-light);
  border-radius: 16px;
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1rem;
  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;
  background: var(--dark-bg);
  color: var(--text-color);
  text-align: center;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--accent-color);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

.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(--accent-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: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--light-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(--text-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(--accent-color),
    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(--accent-color),
    var(--secondary-color)
  );
  color: var(--dark-text);
  font-weight: bold;
  padding: 16px 36px;
  border-radius: 12px;
  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;
  }
}
