:root {
  --primary-color: #ff8800;
  --secondary-color: #ffb347;
  --accent-color: #ffffff;

  --header-bg: linear-gradient(90deg, #0d0d0d, #1a1a1a);
  --text-color: #e6e6e6;
  --dark-text: #ffffff;
  --light-bg: #1a1a1a;
  --dark-bg: #0d0d0d;

  --primary-light: #ffb347;
  --secondary-light: #ffcc80;
  --accent-soft: #262626;
  --muted-text: #999999;

  --gradient-card-light: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #262626 50%,
    #333333 100%
  );
  --gradient-gold: linear-gradient(135deg, #ff8800, #ffb347);
  --gradient-red: linear-gradient(135deg, #ff8800, #ff5500);
  --gradient-dark: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  --gradient-accent: linear-gradient(
    120deg,
    #ff8800 0%,
    #ffb347 40%,
    #ffd580 100%
  );
  --gradient-hero: radial-gradient(
    circle at center,
    #ff8800 0%,
    #ffb347 70%,
    #ffd580 100%
  );

  --btn-primary-bg: linear-gradient(
    135deg,
    #ff8800 0%,
    #ffb347 50%,
    #ff7700 100%
  );
  --btn-primary-hover: linear-gradient(135deg, #ffb347, #ff8800);
  --btn-secondary-bg: #262626;
  --btn-secondary-hover: #333333;
  --btn-border: #ff8800;

  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 16px rgba(255, 136, 0, 0.5);
  --shadow-inset: inset 0 0 10px rgba(0, 0, 0, 0.3);

  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: #ff8800;

  --card-bg: #1a1a1a;
  --card-hover: #262626;
  --modal-bg: rgba(26, 26, 26, 0.96);
  --overlay-bg: rgba(255, 136, 0, 0.85);

  --success-color: #34d399;
  --error-color: #f43f5e;
  --warning-color: #fbbf24;
  --info-color: #60a5fa;

  --hover-glow: 0 0 14px rgba(255, 136, 0, 0.5);
  --focus-outline: 2px solid rgba(255, 136, 0, 0.5);
  --anaglyph-cyan: #00ffff;
  --anaglyph-red: #ff4d4d;

  --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: var(--light-bg);
  color: var(--text-color);
  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 1px 0 rgba(0, 0, 0, 0.35), 0 0 22px rgba(255, 180, 0, 0.18);
}

.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(--text-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(--text-color);
  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(--primary-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-soft);
  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(--primary-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(--primary-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(--header-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(1px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      90% 65% at 50% 35%,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 55%,
      rgba(255, 255, 255, 0.314) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 4, 4, 0.533) 0%,
      rgba(255, 255, 255, 0.45) 65%,
      rgba(255, 255, 255, 0.336) 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(3px);
  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(--accent-color);
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.4rem);
}

.hero__title {
  text-transform: uppercase;
  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;
  font-size: 2rem;
  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;
  }
  .hero__subtitle {
    font-size: 1.2rem;
  }
}
.no-deposit-banner {
  position: relative;
  z-index: 5;
  background: linear-gradient(90deg, var(--primary-color) 0%, #ff9300 100%);
  color: var(--accent-color);
  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: var(--accent-soft);
  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;
  color: var(--secondary-color);
}

.winner-chip__amount {
  font-weight: 900;
  color: var(--primary-color);
}

.winner-chip__time {
  opacity: 0.6;
  font-size: 0.9rem;
  color: var(--muted-text);
}

.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: var(--primary-color);
}

.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: var(--card-bg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.25s ease,
    border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-gold);
}

.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.1),
    transparent 60%
  );
  opacity: 0.5;
  pointer-events: none;
  filter: blur(8px);
}

.game-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset, 0 0 16px rgba(255, 180, 0, 0.22);
  background: var(--card-hover);
}
.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(--primary-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-gold);
  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;
  text-align: center;
}
.game-card p {
  margin: 4px 0 0;
  color: var(--text-color);
  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);
  }

  .games-section h2 {
    font-size: 2rem;
  }
}

@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.077);
}

.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(--primary-color);
  letter-spacing: 0.2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.177);
}

.payment-card p {
  margin: 0;
  font-size: clamp(0.9rem, 0.9vw + 0.55rem, 1rem);
  color: var(--text-color);
}

@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-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.bonus-card {
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border: 2px solid #daa520;
  border-radius: 20px;
  padding: 40px;
  margin: 30px auto;
  max-width: 600px;
}

.bonus-amount {
  font-size: 3rem;
  color: var(--primary-color);
  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.077);
}

.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-gold);
  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(--primary-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(--text-color);
}

@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;
  }
  .bonus-section h2 {
    font-size: 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(15, 15, 15, 0.3);
  padding: 40px;
  border-radius: 15px;
  line-height: 1.8;
}
.article-content h1 {
  text-transform: uppercase;
  line-height: 0.95;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-color);
  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);
}
.article-content p {
  font-family: var(--font-base);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.65;
  color: var(--text-color);
  padding: 10px;
  margin-bottom: 1.2em;
}

.article-content p strong {
  color: var(--primary-color);
  font-weight: 700;
}

.article-content p em {
  color: var(--secondary-color);
  font-style: italic;
}

@media (max-width: 768px) {
  .article-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .article-content p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .article-content h1 {
    font-size: 1.5rem;
  }
}
.article-content h2 {
  color: var(--primary-color);
  margin: 30px 0 20px;
}

.article-content h3 {
  color: var(--secondary-color);
  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(--primary-color);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.077);
}

.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-gold);
  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(--primary-color);
  font-family: var(--font-accent);
  font-weight: 800;
}

.reviewer small {
  color: var(--text-color);
  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;
  }
}

.bp-minifooter {
  position: relative;
  padding: clamp(28px, 4vw, 48px) 0;
  background: radial-gradient(
      60% 90% at 100% 0%,
      rgba(255, 255, 255, 0.04),
      transparent 60%
    ),
    radial-gradient(
      70% 80% at 0% 100%,
      rgba(255, 255, 255, 0.03),
      transparent 65%
    ),
    var(--gradient-card-light);
  color: var(--text-color);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08) inset;
}

.bp-minifooter__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
}

.bp-minifooter__title {
  margin: 0 0 8px;
  font-family: var(--font-accent);
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(1.2rem, 0.9rem + 1.2vw, 1.6rem);
  line-height: 1.1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bp-minifooter__license,
.bp-minifooter__meta,
.bp-minifooter__disclaimer {
  margin: 0;
  font-family: var(--font-base);
  line-height: 1.55;
  color: var(--text-color);
}

.bp-minifooter__license {
  opacity: 0.95;
}

.bp-minifooter__meta {
  margin-top: 8px;
  font-weight: 600;
  color: var(--text-color);
}

.bp-minifooter__legal {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: clamp(14px, 2.2vw, 18px);
  box-shadow: var(--shadow-inset);
}

.bp-minifooter__disclaimer {
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1rem);
  color: var(--text-color);
  opacity: 0.9;
}

.bp-minifooter__copyright {
  margin: 10px 0 0;
  font-size: 0.92rem;
  color: var(--muted-text);
}

/* Acessibilidade foco */
.bp-minifooter a:focus-visible,
.bp-minifooter button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14), var(--focus-outline);
  border-radius: 8px;
}

/* ===== Responsividade ===== */
@media (max-width: 960px) {
  .bp-minifooter__wrap {
    grid-template-columns: 1fr;
  }
  .bp-minifooter__legal {
    order: 2;
  }
}

@media (max-width: 560px) {
  .bp-minifooter {
    padding: 24px 0;
  }
  .bp-minifooter__legal {
    padding: 14px;
    border-radius: 12px;
  }
  .bp-minifooter__title {
    font-size: clamp(1.25rem, 1.1rem + 1vw, 1.45rem);
  }
}
/* 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(--accent-color);
  font-weight: 800;
  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;
  color: var(--primary-color);
}

.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(--primary-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;
}

.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: linear-gradient(135deg, #8a2be2, #9370db);
  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(--text-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: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.98) 0%,
    rgba(40, 20, 0, 0.95) 40%,
    rgba(255, 136, 0, 0.25) 100%
  );
  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);
  text-decoration: none;
}

.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 var(--border-gold);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s;
  color: var(--text-color);
}
.bonus-card p {
  color: var(--text-color);
  margin-bottom: 15px;
}
.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(218, 165, 32, 0.3);
}

.bonus-amount {
  font-size: 2.5rem;
  color: var(--secondary-color);
  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: var(--gradient-card-light);
  color: var(--text-color);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
}
.highlight-box h4 {
  color: var(--primary-color);
  font-weight: 800;
}

.code-box {
  background: #f8f9fa;
  border: 2px dashed #ff6b35;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin: 1.5rem 0;
}

.promo-code {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b35;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  margin: 0.5rem 0;
}

.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;
}

.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;
  margin-top: 30px;
  margin-bottom: 30px;
}

.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 h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--accent-color);
  text-shadow: var(--shadow-3d);
  font-family: var(--font-accent);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--accent-color);
  opacity: 0.9;
}

.cta-button {
  text-decoration: none;
  display: inline-block;
  background: var(--btn-secondary-bg);
  color: var(--primary-color);
  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 h3 {
    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: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.98) 0%,
    rgba(40, 20, 0, 0.95) 40%,
    rgba(255, 136, 0, 0.25) 100%
  );
}

.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(--accent-color);
  font-size: 2.5rem;
  font-weight: 800;
  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 h3 {
  color: var(--secondary-color);
  font-size: 1.7rem;
  font-weight: 800;
}
.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(--accent-soft);
  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;
  }
}

.feature-list {
  padding: clamp(18px, 3vw, 28px);
  background: var(--gradient-card-light);
  border: 1px solid rgba(255, 107, 53, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  color: var(--text-color);
  font-family: var(--font-base);
  margin-top: 30px;
  margin-top: 30px;
}

.feature-title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  letter-spacing: 0.2px;
  margin: 0 0 clamp(14px, 2vw, 18px);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 2.4vw, 18px);
}

.feature-list h4 {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-grid li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: radial-gradient(
      60% 80% at 12% 20%,
      rgba(255, 107, 53, 0.1),
      transparent 65%
    ),
    radial-gradient(
      60% 80% at 88% 80%,
      rgba(255, 146, 72, 0.1),
      transparent 65%
    ),
    var(--card-bg);
  border: 1px solid rgba(255, 107, 53, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.25s ease,
    border-color 0.2s ease;
  color: var(--text-color);
}

.feature-grid li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gradient-gold);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.15);
  transform: translateY(1px);
}

.feature-grid li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 53, 0.28);
  background: radial-gradient(
      60% 80% at 12% 20%,
      rgba(255, 107, 53, 0.14),
      transparent 65%
    ),
    radial-gradient(
      60% 80% at 88% 80%,
      rgba(255, 146, 72, 0.16),
      transparent 65%
    ),
    var(--card-hover);
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.18), var(--shadow-glow);
}

.feature-grid li:focus-within {
  outline: var(--focus-outline);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .feature-list {
    border-radius: 16px;
    padding: 16px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .feature-grid li {
    padding: 12px;
    grid-template-columns: 16px 1fr;
    border-radius: 12px;
  }
  .feature-grid li::before {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 520px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feature-title {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-grid li,
  .feature-grid li:hover {
    transition: none;
  }
}
.betting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  padding: clamp(16px, 3vw, 32px);
}

.betting-card {
  background: var(--gradient-card-light);
  border-radius: 18px;
  padding: clamp(16px, 2vw, 24px);
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 107, 53, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.betting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.18), var(--shadow-glow);
  border-color: rgba(255, 107, 53, 0.3);
}

.betting-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gradient-gold);
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: var(--shadow-glow);
}

.betting-card h4 {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--text-color);
  margin-bottom: 6px;
}

.betting-card p {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--text-color);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .betting-card {
    border-radius: 14px;
    padding: 16px;
  }
  .betting-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 520px) {
  .betting-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .betting-card,
  .betting-card:hover {
    transition: none;
  }
}
.odds-table {
  background: var(--gradient-card-light);
  border: 1px solid rgba(255, 107, 53, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: clamp(16px, 2.8vw, 28px);
  color: var(--text-color);
  font-family: var(--font-base);
  margin-top: 30px;
  margin-top: 30px;
}

.odds-title {
  text-align: center;
  margin: 0 0 clamp(12px, 2vw, 18px);
  font: 700 clamp(1rem, 2.2vw, 1.25rem) / 1 var(--font-accent);
  letter-spacing: 0.2px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.odds-wrapper {
  overflow: hidden;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 107, 53, 0.12);
}

.odds {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--text-color);
}

.odds thead th {
  text-align: left;
  padding: 14px 16px;
  background: var(--gradient-gold);
  border-bottom: 1px solid rgba(255, 107, 53, 0.22);
  font-weight: 700;
  font-family: var(--font-accent);
}

.odds tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.12);
  color: var(--text-color);
}

.odds tbody tr:nth-child(odd) {
  background: radial-gradient(
      120% 100% at 0% 0%,
      rgba(255, 146, 72, 0.08),
      transparent 60%
    ),
    var(--card-bg);
}

.odds tbody tr:hover {
  background: radial-gradient(
      110% 90% at 0% 0%,
      rgba(255, 146, 72, 0.12),
      transparent 60%
    ),
    var(--card-hover);
  transition: background 0.25s ease, transform 0.18s ease;
}

.odds tbody td:nth-child(2),
.odds tbody td:nth-child(3),
.odds tbody td:nth-child(4) {
  font-weight: 700;
}

@media (max-width: 720px) {
  .odds thead {
    display: none;
  }
  .odds tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.12);
  }
  .odds tbody td {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    padding: 0;
  }
  .odds tbody td::before {
    content: attr(data-label);
    font-weight: 700;
  }
}

@media (max-width: 420px) {
  .odds-wrapper {
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .odds-wrapper::-webkit-scrollbar {
    height: 8px;
  }
  .odds-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.25);
    border-radius: 999px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .odds tbody tr {
    transition: none;
  }
}
.aboutpro-section {
  background: var(--light-bg);
  padding: 60px 20px;
  font-family: var(--font-base);
}

.aboutpro-container {
  max-width: 1100px;
  margin: 0 auto;
}

.aboutpro-header {
  text-align: center;
  margin-bottom: 40px;
}

.aboutpro-title {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aboutpro-intro {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-top: 15px;
  line-height: 1.6;
}

.aboutpro-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.aboutpro-block {
  background: var(--gradient-card-light);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutpro-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.aboutpro-block h2 {
  font-family: var(--font-accent);
  color: var(--primary-color);
  margin-bottom: 10px;
}

.aboutpro-block p {
  color: var(--text-color);
  line-height: 1.6;
}

.aboutpro-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 1rem;
  color: var(--text-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.aboutpro-textblock {
  background: var(--light-bg);
  padding: 60px 20px;
}

.aboutpro-textblock__container {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-base);
  color: var(--text-color);
  line-height: 1.6;
}

.aboutpro-textblock h2 {
  font-family: var(--font-accent);
  font-size: 2rem;
  margin-bottom: 20px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.aboutpro-textblock h3 {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.aboutpro-textblock p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-color);
}

.aboutpro-textblock p strong {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .aboutpro-textblock {
    padding: 40px 15px;
  }

  .aboutpro-textblock h2 {
    font-size: 1.6rem;
  }

  .aboutpro-textblock h3 {
    font-size: 1.2rem;
  }
}
