:root {
  --primary-color: #ffb400;
  --secondary-color: #ff4b4b;
  --accent-color: #ffffff;

  --header-bg: linear-gradient(90deg, #0f0b1a, #1a1429);
  --text-color: #f5f5f5;
  --dark-text: #d6d6d6;
  --light-bg: #151019;
  --dark-bg: #0f0b1a;

  --primary-light: #ffd966;
  --secondary-light: #ff7878;
  --accent-soft: #f2f2f2;
  --muted-text: #a8a8a8;

  --gradient-card-light: linear-gradient(
    135deg,
    #1c1626 0%,
    #241c33 50%,
    #2d2340 100%
  );
  --gradient-gold: linear-gradient(135deg, #ffb400, #ff9300);
  --gradient-red: linear-gradient(135deg, #ff4b4b, #e60023);
  --gradient-dark: linear-gradient(180deg, #1a1429, #0f0b1a);
  --gradient-accent: linear-gradient(
    120deg,
    #ffb400 0%,
    #ff4b4b 40%,
    #9b5cff 100%
  );
  --gradient-hero: radial-gradient(
    circle at center,
    #1c1626 0%,
    #14101d 70%,
    #0f0b1a 100%
  );

  --btn-primary-bg: linear-gradient(
    135deg,
    #ffb400 0%,
    #ff9300 50%,
    #e67e00 100%
  );
  --btn-primary-hover: linear-gradient(135deg, #ff9300, #cc6f00);
  --btn-secondary-bg: #262033;
  --btn-secondary-hover: #332b44;
  --btn-border: #ffb400;

  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 16px rgba(255, 180, 0, 0.35);
  --shadow-inset: inset 0 0 10px rgba(0, 0, 0, 0.15);

  --border-light: rgba(255, 255, 255, 0.06);
  --border-gold: #ffb400;

  --card-bg: #1a1429;
  --card-hover: #241c33;
  --modal-bg: rgba(10, 8, 20, 0.95);
  --overlay-bg: rgba(8, 6, 15, 0.88);

  --success-color: #34d399;
  --error-color: #f43f5e;
  --warning-color: #fbbf24;
  --info-color: #60a5fa;

  --hover-glow: 0 0 14px rgba(255, 180, 0, 0.35);
  --focus-outline: 2px solid rgba(255, 180, 0, 0.4);
  --anaglyph-cyan: #e0f2fe;
  --anaglyph-red: #ffe4e6;

  --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;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.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: inline-flex;
  align-items: center;
  line-height: 1;
  font-weight: 600;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  text-decoration: none;
  text-shadow: 0 0 4px rgba(255, 71, 102, 0.25),
    0 0 14px rgba(255, 71, 102, 0.5), 0 0 22px rgba(255, 255, 255, 0.12);
}

.logo-icon {
  height: 30px;
  width: auto;
  flex: 0 0 auto;
  vertical-align: middle;
}

.logo-word {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: 0.4px;
  line-height: 1;
  transform: translateY(0.02em);
}

.logo-emph {
  color: var(--accent-color);
}

.logo-dot {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .logo-word {
    font-size: 1.45rem;
  }
  .logo-icon {
    height: 1.2em;
  }
}

@media (max-width: 480px) {
  .logo-word {
    font-size: 1.28rem;
  }
  .logo-icon {
    height: 1.22em;
  }
}
.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(--accent-color);
  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%;
  }
}

.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(--secondary-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(--accent-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 {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 74vh, 820px);
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  overflow: hidden;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  transform: scale(1.06);
  filter: brightness(0.88) contrast(1.05) saturate(1.05) blur(2px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      90% 65% at 50% 35%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.7) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.6) 65%,
      rgba(0, 0, 0, 0.85) 100%
    );
  z-index: 0;
}

.hero__tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 35% 45%,
      rgba(255, 180, 0, 0.28) 0%,
      rgba(255, 180, 0, 0) 45%
    ),
    radial-gradient(
      circle at 70% 55%,
      rgba(155, 92, 255, 0.22) 0%,
      rgba(155, 92, 255, 0) 50%
    );
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-block: clamp(40px, 8vh, 120px);
  color: var(--accent-color);
}

.hero__eyebrow {
  margin: 0 0 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.4rem);
}

.hero__title {
  margin: 0 0 0.6rem;
  line-height: 0.95;
  font-size: clamp(2.4rem, 6.8vw, 7.6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55), 0 2px 0 rgba(0, 0, 0, 0.35),
    0 0 22px rgba(255, 180, 0, 0.18);
}

.hero__title-strong {
  color: var(--primary-color);
}
.hero__title-thin {
  color: var(--accent-color);
  font-weight: 800;
  opacity: 0.98;
}

.hero__subtitle {
  margin: 0.4rem auto 1.4rem;
  max-width: 900px;
  font-size: clamp(1rem, 1.1vw + 0.7rem, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.mega-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: clamp(1rem, 0.9vw + 0.7rem, 1.25rem);
  font-weight: 800;
  color: #1a1200;
  background: var(--btn-primary-bg);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 180, 0, 0.35),
    0 0 0 1px rgba(255, 180, 0, 0.35) inset;
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.mega-button:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 180, 0, 0.45),
    0 0 0 1px rgba(255, 180, 0, 0.45) inset;
}

.hero__badges {
  margin-top: clamp(18px, 3.5vh, 36px);
}

.hero__badges > h2 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 0.9vw + 0.7rem, 1.35rem);
  color: var(--accent-color);
  opacity: 0.95;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.badge {
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(18, 0, 31, 0.48);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  color: var(--text-color);
}

.badge h3 {
  margin: 0 0 6px;
  font-size: clamp(0.95rem, 0.7vw + 0.6rem, 1.05rem);
  color: var(--accent-color);
}

.badge p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted-text);
}

@media (max-width: 1024px) {
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }
  .badge {
    padding: 12px 14px;
  }
  .badges-grid {
    grid-template-columns: 1fr;
  }
}
.no-deposit-banner {
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, var(--primary-color) 0%, #ff9300 100%);
  color: #1a1200;
  text-align: center;
  padding: 0.9rem 1rem;
  font-family: var(--font-accent);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.no-deposit-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 255, 255, 0.25) 0%,
      transparent 50%
    );
  opacity: 0.25;
  pointer-events: none;
}

.no-deposit-banner h2 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.1rem, 2vw + 0.8rem, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
}

.no-deposit-banner p {
  margin: 0;
  font-size: clamp(0.9rem, 1vw + 0.7rem, 1.15rem);
  font-weight: 500;
}

.no-deposit-banner strong {
  color: #000;
  font-weight: 800;
}

@media (max-width: 600px) {
  .no-deposit-banner {
    padding: 0.8rem;
  }
  .no-deposit-banner h2 {
    font-size: 1.1rem;
  }
  .no-deposit-banner p {
    font-size: 0.9rem;
  }
}
.live-winnings {
  position: relative;
  padding: clamp(18px, 3.5vh, 28px) 0;
  background: radial-gradient(
      60% 90% at 50% 10%,
      rgba(255, 180, 0, 0.08) 0%,
      rgba(255, 180, 0, 0) 55%
    ),
    var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  isolation: isolate;
}

.live-winnings h2 {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--accent-color);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 180, 0, 0.25);
  font-size: clamp(1.1rem, 1.1vw + 0.9rem, 1.6rem);
}

#winner-display {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 12px;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.winner-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 0, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  color: var(--text-color);
  white-space: nowrap;
  transform: translateX(0);
  will-change: transform;
}

.winner-chip__game {
  font-weight: 800;
  color: var(--accent-color);
  font-size: 0.95rem;
}

.winner-chip__user {
  opacity: 0.9;
  font-weight: 600;
}

.winner-chip__amount {
  font-weight: 900;
  color: var(--primary-color);
}

.winner-chip__time {
  opacity: 0.6;
  font-size: 0.9rem;
}

.winner-rail {
  display: inline-flex;
  gap: 12px;
  animation: ticker 26s linear infinite;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  #winner-display {
    flex-direction: column;
    gap: 10px;
    animation: none;
  }

  .winner-chip {
    width: 100%;
    justify-content: space-between;
  }
}
.games-section {
  padding: 80px 0;
}

.games-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #daa520;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(12px, 2vw, 18px);
  align-items: stretch;
}

.game-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 10px;
  padding: clamp(14px, 2.2vw, 18px);
  border-radius: 18px;
  text-decoration: none;
  background: radial-gradient(
      90% 70% at 20% 0%,
      rgba(255, 180, 0, 0.12) 0%,
      rgba(255, 180, 0, 0) 60%
    ),
    radial-gradient(
      90% 70% at 80% 100%,
      rgba(155, 92, 255, 0.1) 0%,
      rgba(155, 92, 255, 0) 60%
    ),
    var(--card-bg);
  border: 1px solid var(--border-light);
  color: var(--text-color);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.25s ease,
    border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: -40% -40% auto -40%;
  height: 120%;
  background: radial-gradient(
    40% 40% at 20% 20%,
    rgba(255, 222, 89, 0.12),
    transparent 60%
  );
  opacity: 0.6;
  pointer-events: none;
  filter: blur(8px);
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset, var(--shadow-glow);
  background: radial-gradient(
      90% 70% at 20% 0%,
      rgba(255, 180, 0, 0.18) 0%,
      rgba(255, 180, 0, 0) 60%
    ),
    radial-gradient(
      90% 70% at 80% 100%,
      rgba(155, 92, 255, 0.16) 0%,
      rgba(155, 92, 255, 0) 60%
    ),
    var(--card-hover);
}

.game-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 18, 0, 0.65), 0 0 0 6px rgba(255, 180, 0, 0.45);
}

.game-card h3 {
  text-align: center;
  margin: 2px 0 0;
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 1.1vw + 0.8rem, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--accent-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.game-icon {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  width: 4rem;
  height: 4rem;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-card-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  color: var(--accent-color);
}

.rtp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 180, 0, 0.12);
  color: var(--primary-color);
  border: 1px solid rgba(255, 180, 0, 0.25);
  margin: 6px auto;
}
.game-card p {
  margin: 4px 0 0;
  color: var(--muted-text);
  font-size: 0.95rem;
  text-align: center;
}

.play-demo {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #1a1200;
  background: var(--btn-primary-bg);
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.3),
    0 0 0 1px rgba(255, 180, 0, 0.3) inset;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-left: auto;
  margin-right: auto;
}
.game-card:hover .play-demo {
  background: var(--btn-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(255, 180, 0, 0.45),
    0 0 0 1px rgba(255, 180, 0, 0.45) inset;
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
}

@media (max-width: 720px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  .game-card {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-card,
  .play-demo {
    transition: none;
  }
  .game-card:hover {
    transform: none;
  }
}
.payment-section {
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0;
  background: radial-gradient(
      80% 120% at 20% 0%,
      rgba(255, 180, 0, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      80% 120% at 80% 100%,
      rgba(155, 92, 255, 0.05) 0%,
      transparent 55%
    ),
    var(--dark-bg);
  color: var(--text-color);
}

.payment-section .container {
  position: relative;
  z-index: 1;
}

.payment-section h2 {
  margin: 0 0 clamp(18px, 3vw, 28px);
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 1.5vw + 1rem, 2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--accent-color);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 22px);
}

.payment-card {
  position: relative;
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 22px);
  background: radial-gradient(
      120% 100% at 20% 0%,
      rgba(255, 180, 0, 0.1) 0%,
      transparent 55%
    ),
    var(--card-bg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.25s ease,
    border-color 0.2s ease;
  overflow: hidden;
}

.payment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 60% at 80% 20%,
    rgba(155, 92, 255, 0.1),
    transparent 60%
  );
  opacity: 0.5;
  pointer-events: none;
}

.payment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
  background: radial-gradient(
      120% 100% at 20% 0%,
      rgba(255, 180, 0, 0.14) 0%,
      transparent 55%
    ),
    var(--card-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), var(--shadow-glow);
}

.payment-card h4 {
  margin: 0 0 6px;
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.1vw + 0.7rem, 1.25rem);
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 0.2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.payment-card p {
  margin: 0;
  font-size: clamp(0.9rem, 0.9vw + 0.55rem, 1rem);
  color: var(--muted-text);
}

@media (max-width: 1024px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
  .payment-card {
    padding: 16px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .payment-card {
    transition: none;
  }
  .payment-card:hover {
    transform: none;
  }
}
/* Bonus Section */
.bonus-section {
  padding: 80px 0;
  text-align: center;
}

.bonus-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 2px solid #daa520;
  border-radius: 20px;
  padding: 40px;
  margin: 30px auto;
  max-width: 600px;
}
.bonus-card p {
  margin-bottom: 15px;
}
.bonus-amount {
  font-size: 3rem;
  color: #daa520;
  font-weight: bold;
  margin: 20px 0;
}

.security-section {
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0;
  background: radial-gradient(
      80% 120% at 20% 0%,
      rgba(255, 180, 0, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      80% 120% at 80% 100%,
      rgba(155, 92, 255, 0.05) 0%,
      transparent 55%
    ),
    var(--dark-bg);
  color: var(--text-color);
}

.security-section .container {
  position: relative;
  z-index: 1;
}

.security-section h2 {
  margin: 0 0 clamp(18px, 3vw, 28px);
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 1.5vw + 1rem, 2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--accent-color);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 22px);
}

.security-feature {
  position: relative;
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 22px);
  background: radial-gradient(
      120% 100% at 20% 0%,
      rgba(255, 180, 0, 0.1) 0%,
      transparent 55%
    ),
    var(--card-bg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.25s ease,
    border-color 0.2s ease;
  overflow: hidden;
}

.security-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 60% at 80% 20%,
    rgba(155, 92, 255, 0.1),
    transparent 60%
  );
  opacity: 0.5;
  pointer-events: none;
}

.security-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
  background: radial-gradient(
      120% 100% at 20% 0%,
      rgba(255, 180, 0, 0.14) 0%,
      transparent 55%
    ),
    var(--card-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), var(--shadow-glow);
}

.security-icon {
  width: 3rem;
  height: 3rem;
  margin: 2px 0 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--accent-color);
  background: var(--gradient-card-light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.security-feature h3 {
  margin: 2px 0 6px;
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.1vw + 0.7rem, 1.25rem);
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 0.2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.security-feature p {
  margin: 0;
  font-size: clamp(0.9rem, 0.9vw + 0.55rem, 1rem);
  color: var(--muted-text);
}

@media (max-width: 1024px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
  .security-feature {
    padding: 16px;
    border-radius: 16px;
  }
  .security-icon {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .security-feature {
    transition: none;
  }
  .security-feature:hover {
    transform: none;
  }
}

/* Article Section */
.article-section {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.article-content {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  border-radius: 15px;
  line-height: 1.8;
}

.article-content h2 {
  color: #daa520;
  margin: 30px 0 20px;
}

.article-content h3 {
  color: #ffd700;
  margin: 25px 0 15px;
}

.reviews-section {
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0;

  color: var(--text-color);
}

.reviews-section h2 {
  margin: 0 0 clamp(18px, 3vw, 28px);
  text-align: center;
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 1.5vw + 1rem, 2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--accent-color);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.5vw, 22px);
}

.review-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: 18px;
  background: radial-gradient(
      120% 100% at 20% 0%,
      rgba(255, 180, 0, 0.1) 0%,
      transparent 55%
    ),
    var(--card-bg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.25s ease,
    border-color 0.2s ease;
  overflow: hidden;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 12px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--font-accent);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
  background: radial-gradient(
      120% 100% at 20% 0%,
      rgba(255, 180, 0, 0.14) 0%,
      transparent 55%
    ),
    var(--card-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), var(--shadow-glow);
}

.review-stars {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--primary-color), #ff9300);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.review-card p {
  margin: 0;
  color: var(--text-color);
  font-size: clamp(0.95rem, 0.9vw + 0.6rem, 1.05rem);
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.reviewer {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--accent-color);
  background: var(--gradient-card-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.reviewer strong {
  color: var(--accent-color);
  font-family: var(--font-accent);
  font-weight: 800;
}

.reviewer small {
  color: var(--muted-text);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    border-radius: 16px;
    padding: 16px;
  }
  .reviewer {
    grid-template-columns: 38px 1fr;
  }
  .reviewer-avatar {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-card {
    transition: none;
  }
  .review-card:hover {
    transform: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .mega-button {
    font-size: 1.4rem;
    padding: 15px 30px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }
}
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--btn-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #1a1200;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35),
    0 0 0 2px rgba(255, 180, 0, 0.35) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 999;
}

.chat-widget:hover {
  background: var(--btn-primary-hover);
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(255, 180, 0, 0.45),
    0 0 0 2px rgba(255, 180, 0, 0.45) inset;
}

@media (max-width: 768px) {
  .chat-widget {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .chat-widget {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    bottom: 12px;
    right: 12px;
  }
}

.earnings-highlight {
  background: linear-gradient(45deg, #32cd32, #00ff00);
  color: #000;
  padding: 20px;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 30px auto;
  max-width: 600px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.5);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(50, 205, 50, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.5);
  }
}

.vip-bonus-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: radial-gradient(
      80% 120% at 15% 0%,
      rgba(255, 180, 0, 0.06) 0%,
      transparent 60%
    ),
    var(--dark-bg);
  color: var(--text-color);
}

.vip-title {
  text-align: center;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.vip-subtitle {
  text-align: center;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--muted-text);
  margin-bottom: 40px;
}

.bonus-cards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.vip-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.vip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.vip-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.vip-card.starter h3 {
  color: #32cd32;
}
.vip-card.premium h3 {
  color: var(--primary-color);
}
.vip-card.exclusive h3 {
  color: #ff6b35;
}

.deposit-amount {
  font-weight: bold;
  margin-bottom: 15px;
}

.bonus-details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 15px;
}

.instant-bonus {
  color: var(--primary-color);
  font-weight: 600;
}

.delayed-bonus {
  color: var(--secondary-color);
  font-weight: 500;
}

.total-profit {
  color: #32cd32;
  font-weight: bold;
  margin-top: 10px;
}

.bot-access {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.special-feature {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.claim-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--btn-primary-bg);
  color: #1a1200;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.claim-button:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .bonus-cards-grid {
    grid-template-columns: 1fr;
  }
}

.deposit-amount {
  font-size: 2.5rem;
  color: #32cd32;
  font-weight: bold;
  margin: 20px 0;
}

.bonus-details {
  background: rgba(218, 165, 32, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
}

.instant-bonus {
  font-size: 1.8rem;
  color: #daa520;
  font-weight: bold;
  margin: 15px 0;
}

.delayed-bonus {
  font-size: 1.4rem;
  color: #ffd700;
  margin: 10px 0;
}

.special-feature {
  background: linear-gradient(45deg, #ff6b35, #ff8c00);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
  font-weight: bold;
}

.bot-access {
  background: linear-gradient(45deg, #8a2be2, #9370db);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  margin: 25px 0;
  animation: glow-purple 3s ease-in-out infinite alternate;
}

@keyframes glow-purple {
  from {
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
  }
  to {
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
  }
}

.claim-button {
  background: linear-gradient(45deg, #32cd32, #00ff00);
  color: #000;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 25px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.claim-button:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(50, 205, 50, 0.4);
}

.profit-box {
  background: linear-gradient(
    45deg,
    rgba(50, 205, 50, 0.1),
    rgba(0, 255, 0, 0.1)
  );
  border-left: 4px solid #32cd32;
  padding: 25px;
  margin: 30px 0;
  border-radius: 10px;
}

.strategy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.strategy-table thead {
  background: var(--primary-color);
  color: var(--dark-bg);
}

.strategy-table th,
.strategy-table td {
  padding: 14px 16px;
  text-align: left;
}

.strategy-table th {
  font-weight: 700;
  font-size: 0.95rem;
}

.strategy-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s ease;
}

.strategy-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.strategy-table td {
  font-size: 0.95rem;
  color: var(--text-color);
}

.strategy-table tbody tr:last-child {
  border-bottom: none;
}

/* Адаптив */
@media (max-width: 768px) {
  .strategy-table thead {
    display: none;
  }

  .strategy-table,
  .strategy-table tbody,
  .strategy-table tr,
  .strategy-table td {
    display: block;
    width: 100%;
  }

  .strategy-table tr {
    margin-bottom: 15px;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--shadow-soft);
  }

  .strategy-table td {
    text-align: right;
    padding: 10px;
    position: relative;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
  }

  .strategy-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted-text);
  }

  .strategy-table td:last-child {
    border-bottom: none;
  }
}

.warning-box {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid #ff6b35;
  padding: 20px;
  margin: 25px 0;
  border-radius: 10px;
}

/* Success Stories */
.success-stories {
  background: rgba(0, 0, 0, 0.8);
  padding: 60px 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.story-card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #32cd32;
  transition: all 0.3s;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(50, 205, 50, 0.2);
}

.profit-amount {
  font-size: 2rem;
  color: #32cd32;
  font-weight: bold;
  margin: 15px 0;
}

.player-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.player-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #32cd32, #00ff00);
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
}

/* Bot Section */
.bot-section {
  background: var(--gradient-accent);
  padding: 60px 0;
  text-align: center;
}

.bot-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.bot-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.bot-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.breadcrumbs {
  background: var(--light-bg);
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: var(--muted-text);
}

.breadcrumb-nav a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: var(--secondary-color);
}

.breadcrumb-nav span {
  color: var(--accent-color);
  font-weight: 500;
}

.breadcrumb-nav::before {
  content: "📍";
  margin-right: 6px;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb-nav {
    font-size: 0.85rem;
  }
}
.refprog-section {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 20px;
  background: url("images/refprog.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.refprog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.refprog-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: var(--accent-color);
}

.refprog-title {
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 2.4vw + 1rem, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--accent-color);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.refprog-subtitle {
  font-size: clamp(1.1rem, 1.4vw + 0.8rem, 1.6rem);
  margin-bottom: 28px;
  font-weight: 500;
  color: var(--text-color);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.refprog-cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--btn-primary-bg);
  color: #1a1200;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(255, 180, 0, 0.35),
    0 0 0 1px rgba(255, 180, 0, 0.35) inset;
  transition: all 0.2s ease;
}

.refprog-cta:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 180, 0, 0.45),
    0 0 0 1px rgba(255, 180, 0, 0.45) inset;
}

@media (max-width: 768px) {
  .refprog-section {
    padding: 50px 16px;
  }
  .refprog-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .refprog-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }
  .refprog-cta {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* Bonus Highlights */
.bonus-highlights {
  background: rgba(218, 165, 32, 0.1);
  padding: 60px 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.bonus-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 2px solid #daa520;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(218, 165, 32, 0.3);
}

.bonus-amount {
  font-size: 2.5rem;
  color: #daa520;
  font-weight: bold;
  margin: 20px 0;
}

.bonus-badge {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  }
  to {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  }
}

.highlight-box {
  background: rgba(218, 165, 32, 0.1);
  border-left: 4px solid #daa520;
  padding: 25px;
  margin: 30px 0;
  border-radius: 10px;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.bonus-table th {
  background: #daa520;
  color: #000;
  padding: 15px;
  font-weight: bold;
}

.bonus-table td {
  padding: 15px;
  border-bottom: 1px solid #333;
}

.bonus-table tr:hover {
  background: rgba(218, 165, 32, 0.1);
}

/* Games Preview */
.games-preview {
  background: rgba(0, 0, 0, 0.8);
  padding: 60px 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.game-card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.game-card:hover {
  border-color: #daa520;
  transform: translateY(-5px);
}

.game-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.rtp-badge {
  background: rgba(218, 165, 32, 0.2);
  color: #daa520;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 10px 0;
  display: inline-block;
}

.cta-section {
  background: var(--gradient-gold);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: var(--shadow-3d);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatBubble 6s ease-in-out infinite;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: floatBubble 8s ease-in-out infinite reverse;
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(10px);
  }
}

.cta-section h2 {
  font-size: 2.9rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: var(--shadow-3d);
  font-family: var(--font-accent);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--white);
  opacity: 0.9;
}

.cta-button {
  text-decoration: none;
  display: inline-block;
  background: var(--btn-secondary-bg);
  color: var(--primary-light);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 35px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--btn-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 40px 15px;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

.bonus-hero-section {
  position: relative;
  background: url("images/bonus.jpg") center/cover no-repeat;
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}

.bonus-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.bonus-hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.bonus-hero-title {
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 2.4vw + 1rem, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--accent-color);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.bonus-hero-subtitle {
  font-size: clamp(1.1rem, 1.4vw + 0.8rem, 1.6rem);
  margin-bottom: 28px;
  font-weight: 500;
  color: var(--text-color);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .bonus-hero-title {
    font-size: 1.8rem;
  }
  .bonus-hero-subtitle {
    font-size: 1rem;
  }
}
.bonus-highlights {
  padding: 60px 20px;
  background: var(--dark-bg);
  color: var(--white);
}

.bonus-highlights-title {
  text-align: center;
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.bonus-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow-3d);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.bonus-card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
}

.bonus-amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.bonus-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  animation: glow 2s ease-in-out infinite alternate;
}

.bonus-description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.bonus-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px var(--accent-color);
  }
  to {
    box-shadow: 0 0 20px var(--accent-color);
  }
}

/* Адаптив */
@media (max-width: 480px) {
  .bonus-highlights-title {
    font-size: 2rem;
  }
  .bonus-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-3d);
}

.bonus-table thead {
  background: var(--primary-color);
}

.bonus-table th,
.bonus-table td {
  padding: 14px 16px;
  text-align: left;
}

.bonus-table th {
  font-weight: bold;
  font-size: 1rem;
  color: var(--white);
}

.bonus-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

.bonus-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bonus-table td {
  font-size: 0.95rem;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .bonus-table thead {
    display: none;
  }

  .bonus-table,
  .bonus-table tbody,
  .bonus-table tr,
  .bonus-table td {
    display: block;
    width: 100%;
  }

  .bonus-table tr {
    margin-bottom: 15px;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow-3d);
    padding: 10px;
  }

  .bonus-table td {
    padding: 10px 12px;
    text-align: right;
    position: relative;
  }

  .bonus-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    top: 10px;
    font-weight: bold;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.85rem;
  }
}
.lotus-footer {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9),
    rgba(10, 10, 10, 0.95)
  );
  color: var(--white);
  padding: clamp(20px, 3vw, 40px) 0;
  font-size: 0.95rem;
}

.lotus-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.lotus-footer__brand h3 {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.lotus-footer__brand p {
  margin: 4px 0;
  line-height: 1.4;
  opacity: 0.85;
}

.lotus-footer__cta {
  flex-shrink: 0;
}

.lotus-footer__btn {
  display: inline-block;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 1rem;
  background: var(--accent-color);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lotus-footer__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.lotus-footer__bottom {
  text-align: center;
  margin-top: 20px;
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  opacity: 0.75;
}

.lotus-footer__disclaimer {
  font-size: 0.8rem;
  margin-top: 6px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .lotus-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .lotus-footer__cta {
    width: 100%;
  }

  .lotus-footer__btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}
