:root {
  --primary-color: #d4af37;
  --secondary-color: #b88a2d;
  --accent-color: #ffffff;

  --header-bg: linear-gradient(90deg, #0a0a0a, #1a1a1a);
  --text-color: #f5f5f5;
  --dark-text: #ffffff;
  --light-bg: #1a1a1a;
  --dark-bg: #0a0a0a;

  --primary-light: #e6c35c;
  --secondary-light: #d4af37;
  --accent-soft: #262626;
  --muted-text: #b3b3b3;

  --gradient-card-light: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2a2a2a 50%,
    #3a3a3a 100%
  );
  --gradient-gold: linear-gradient(135deg, #d4af37, #b88a2d);
  --gradient-red: linear-gradient(135deg, #ffcc66, #b88a2d);
  --gradient-dark: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  --gradient-accent: linear-gradient(
    120deg,
    #ffd249 0%,
    #f4b52a 45%,
    #d19100 100%
  );
  --gradient-hero: radial-gradient(
    circle at center,
    #d4af37 0%,
    #b88a2d 70%,
    #8c6e24 100%
  );

  --btn-primary-bg: linear-gradient(
    135deg,
    #d4af37 0%,
    #b88a2d 50%,
    #8c6e24 100%
  );
  --btn-primary-hover: linear-gradient(135deg, #b88a2d, #d4af37);
  --btn-secondary-bg: #262626;
  --btn-secondary-hover: #333333;
  --btn-border: #d4af37;

  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 16px rgba(212, 175, 55, 0.5);
  --shadow-inset: inset 0 0 10px rgba(0, 0, 0, 0.3);

  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: #d4af37;

  --card-bg: #1a1a1a;
  --card-hover: #262626;
  --modal-bg: rgba(26, 26, 26, 0.96);
  --overlay-bg: rgba(212, 175, 55, 0.85);

  --success-color: #34d399;
  --error-color: #f43f5e;
  --warning-color: #fbbf24;
  --info-color: #60a5fa;

  --hover-glow: 0 0 14px rgba(212, 175, 55, 0.5);
  --focus-outline: 2px solid rgba(212, 175, 55, 0.5);
  --anaglyph-cyan: #00ffff;
  --anaglyph-red: #ff4d88;

  --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.2;
  font-weight: 600;
  padding: 0.1em 0;
}

.logo-word {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-accent);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 20px rgba(255, 164, 46, 0.278));
  line-height: 1.2;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  overflow: visible;
}

.logo-dot {
  margin-left: 2px;
  color: var(--muted-text);
  font-size: 1rem;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35), 0 0 22px rgba(255, 180, 0, 0.18);
}

@media (max-width: 768px) {
  .logo-word {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-word {
    font-size: 1.3rem;
  }
}
.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-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(--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;
  }
}

.Sagames-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(68vh, 72vh, 84vh);
  display: grid;
  place-items: center;
  background: var(--dark-bg);
}

.Sagames-hero__bg {
  position: absolute;
  inset: -20% -10% -10% -10%;
  background: radial-gradient(
      60% 50% at 50% 20%,
      rgba(212, 175, 55, 0.35) 0%,
      rgba(212, 175, 55, 0) 60%
    ),
    radial-gradient(
      40% 35% at 70% 75%,
      rgba(184, 138, 45, 0.4) 0%,
      rgba(184, 138, 45, 0) 60%
    ),
    radial-gradient(
      35% 30% at 25% 80%,
      rgba(140, 110, 36, 0.15) 0%,
      rgba(140, 110, 36, 0) 60%
    ),
    linear-gradient(
      180deg,
      rgba(13, 13, 13, 0.54) 0%,
      rgba(21, 21, 21, 0.584) 100%
    ),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(1px);
  transform: translateZ(0);
  z-index: -2;
}
.Sagames-hero__tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      90% 65% at 50% 35%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 55%,
      rgba(0, 0, 0, 0.65) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.55) 70%,
      rgba(0, 0, 0, 0.85) 100%
    );
  z-index: -1;
}

.Sagames-hero__inner {
  text-align: center;
  padding: clamp(24px, 4vw, 40px) 0;
  max-width: 1200px;
}

.Sagames-hero__eyebrow {
  font-family: var(--font-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  color: var(--muted-text);
  margin: 0 0 0.8rem;
}

.Sagames-hero__title {
  display: grid;
  gap: 0.15em;
  line-height: 1;
  margin: 0 0 0.6rem;
  overflow: visible;
}

.Sagames-hero__title-strong {
  display: block;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: clamp(3.8rem, 7.5vw, 6.2rem);
  letter-spacing: -0.02em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 20px rgba(255, 196, 46, 0.271));
  line-height: 1.08;
  padding-bottom: 0.06em;
}

.Sagames-hero__title-thin {
  display: block;
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: clamp(1.4rem, 4.2vw, 3.2rem);
  color: var(--text-color);
  opacity: 0.9;
  line-height: 1.06;
}
.Sagames-hero__subtitle {
  font-family: var(--font-base);
  color: var(--text-color);
  opacity: 0.95;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.65;
  max-width: 70ch;
  margin: 0.85rem auto 1.25rem;
}

.Sagames-hero__cta {
  display: grid;
  place-items: center;
  margin-top: 0.6rem;
}

@keyframes pulse-btn {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.06);
  }
  50% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.Sagames-cta-btn {
  display: inline-block;
  padding: clamp(12px, 1.4vw, 14px) clamp(22px, 2.6vw, 30px);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--accent-color);
  background: var(--btn-primary-bg);
  box-shadow: 0 10px 26px rgba(255, 220, 46, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  animation: pulse-btn 1.8s ease-in-out infinite;
}

.Sagames-cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}

.Sagames-cta-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 14px 34px rgba(255, 46, 136, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  filter: saturate(110%);
  background: var(--btn-primary-hover);
}

.Sagames-cta-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12),
    0 0 0 6px rgba(255, 46, 136, 0.45);
}

.Sagames-hero__badges {
  display: grid;
  grid-auto-flow: column;
  gap: clamp(10px, 2vw, 18px);
  align-items: center;
  justify-content: center;
  margin-top: clamp(16px, 2.2vw, 22px);
  padding: 0;
  list-style: none;
  opacity: 0.95;
}

.Sagames-hero__badges li {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

@media (max-width: 840px) {
  .Sagames-hero__badges {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .Sagames-hero__badges li {
    justify-self: center;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .Sagames-hero {
    min-height: 72vh;
  }
  .Sagames-hero__subtitle {
    max-width: 60ch;
  }
  .Sagames-hero__badges {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.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);
}

.no-deposit-banner {
  position: relative;
  z-index: 5;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    var(--secondary-color) 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-color);
  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-light);
}

.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: 2px solid var(--border-gold);
  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: 1.3rem;
  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 {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 10px;
  border-radius: 999px;

  font-size: 0.6em;
  font-weight: 800;
  letter-spacing: 0.2px;

  color: var(--accent-color);
  background: linear-gradient(
    135deg,
    rgba(255, 46, 136, 0.28),
    rgba(255, 46, 136, 0.16)
  );
  border: 1px solid rgba(255, 46, 136, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.game-card:hover .rtp-badge {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.rtp-badge::after {
  content: "";
  position: absolute;
  inset: -8px -10px -8px -10px;
  border-radius: inherit;
  background: radial-gradient(
    40% 60% at 70% 30%,
    rgba(255, 46, 136, 0.12),
    transparent 60%
  );
  z-index: -1;
  pointer-events: none;
}

.rtp-badge--gold {
  background: linear-gradient(
    135deg,
    rgba(255, 180, 0, 0.28),
    rgba(255, 180, 0, 0.14)
  );
  border-color: rgba(255, 180, 0, 0.38);
  color: #1a1200;
}
.rtp-badge--live {
  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.28),
    rgba(96, 165, 250, 0.14)
  );
  border-color: rgba(96, 165, 250, 0.4);
}

@media (max-width: 720px) {
  .rtp-badge {
    top: 8px;
    right: 8px;
    padding: 5px 10px;
    font-size: 0.72rem;
  }
}
@media (max-width: 420px) {
  .rtp-badge {
    top: 6px;
    right: 6px;
    padding: 4px 9px;
    font-size: 0.7rem;
  }
}
.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: var(--accent-color);
  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;
  }
}

.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;
  }
}

/* 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;
}

.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;
  }
}

/* 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;
}

.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;
  }
}

/* ===== HERO (Bônus & Depósitos) ===== */
.fb-earn-hero {
  position: relative;
  overflow: clip;
  padding: clamp(44px, 6vw, 96px) 0;
  isolation: isolate;
}

.fb-earn-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      60% 80% at 20% 15%,
      rgba(255, 175, 46, 0.25),
      transparent 60%
    ),
    radial-gradient(
      75% 85% at 85% 75%,
      rgba(255, 185, 46, 0.15),
      transparent 65%
    ),
    var(--gradient-dark);
  z-index: -2;
}

.fb-earn-hero__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: -1;
}

.fb-earn-hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
}

.fb-earn-hero__copy {
  max-width: 820px;
}

.fb-earn-hero__eyebrow {
  font-family: var(--font-accent);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent-color);
  opacity: 0.85;
  margin: 0 0 8px;
}

.fb-earn-hero__title {
  margin: 0 0 10px;
  line-height: 1.05;
}

.fb-earn-hero__title-strong {
  display: block;
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: clamp(2.2rem, 3.2vw + 1.4rem, 3.6rem);
  letter-spacing: -0.02em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 26px rgba(255, 192, 46, 0.35));
}

.fb-earn-hero__title-thin {
  display: block;
  font-size: clamp(1.4rem, 1.2vw + 1rem, 2rem);
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0.92;
}

.fb-earn-hero__subtitle {
  margin: 12px 0 16px;
  color: var(--text-color);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
  opacity: 0.95;
}

.fb-earn-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 6px 0 18px;
}
.fb-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--accent-color);
  background: linear-gradient(
    135deg,
    rgba(255, 206, 46, 0.22),
    rgba(255, 46, 136, 0.12)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.fb-earn-hero__cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.fb-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease;
}
.fb-ghost-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.fb-earn-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-color);
  font-size: 0.92rem;
  opacity: 0.9;
}

.fb-earn-hero__stats {
  display: grid;
  grid-template-columns: repeat(1, minmax(140px, 1fr));
  gap: 12px;
}

.fb-stat {
  border-radius: 16px;
  padding: 16px 14px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    ),
    var(--gradient-card-light);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.fb-stat__label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 6px;
}

.fb-stat__value {
  display: block;
  font-family: var(--font-accent);
  font-weight: 900;
  color: var(--accent-color);
  font-size: clamp(1rem, 0.9rem + 0.6vw, 1.3rem);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .fb-earn-hero__inner {
    grid-template-columns: 1fr;
  }
  .fb-earn-hero__stats {
    order: 2;
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
  }
}
@media (max-width: 640px) {
  .fb-earn-hero {
    padding: 36px 0 44px;
  }
  .fb-earn-hero__stats {
    grid-template-columns: repeat(1, 1fr);
  }
  .fb-earn-hero__cta {
    flex-direction: column;
    align-items: center;
  }
  .fb-ghost-btn {
    text-align: center;
  }
}
@media (max-width: 400px) {
  .fb-earn-hero__chips {
    gap: 8px;
  }
  .fb-chip {
    font-size: 0.84rem;
    padding: 7px 10px;
  }
}
.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;
  }
}
.bonus-section {
  position: relative;
  padding: clamp(36px, 6vw, 80px) 0;
  isolation: isolate;
  overflow: hidden;
}

.bonus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/bonus-bg.jpg") center/cover no-repeat;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: -2;
}

.bonus-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      65% 90% at 80% 10%,
      rgba(255, 255, 255, 0.04),
      transparent 55%
    ),
    radial-gradient(
      75% 85% at 10% 90%,
      rgba(255, 255, 255, 0.03),
      transparent 60%
    ),
    rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.bonus-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.bonus-section h2 {
  text-align: center;
  font-family: var(--font-accent);
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  color: var(--accent-color);
  margin: 0 0 clamp(18px, 2.2vw, 26px);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ===== Bonus Card ===== */
.bonus-card {
  position: relative;
  border-radius: 20px;
  padding: clamp(18px, 2.4vw, 26px);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    ),
    var(--gradient-card-light);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.18s ease, box-shadow 0.25s ease,
    border-color 0.2s ease, background 0.25s ease;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(255, 46, 136, 0.22),
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.bonus-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.4rem);
  color: var(--accent-color);
  letter-spacing: 0.2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.bonus-card p {
  margin: 6px 0 0;
  color: var(--text-color);
  font-size: clamp(0.92rem, 0.86rem + 0.2vw, 1rem);
  opacity: 0.92;
}

/* Amount pill */
.bonus-amount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 12px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.3px;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.15rem);
  color: var(--accent-color);
  background: linear-gradient(
    135deg,
    rgba(255, 46, 136, 0.28),
    rgba(255, 46, 136, 0.16)
  );
  border: 1px solid rgba(255, 46, 136, 0.38);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* CTA button reused via .mega-button */
.bonus-card .mega-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: var(--accent-color);
  background: var(--btn-primary-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.18s ease,
    filter 0.2s ease;
}

.bonus-card .mega-button:hover {
  transform: translateY(-2px);
  background: var(--btn-primary-hover);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  filter: saturate(112%);
}

.bonus-card::after {
  content: "EXCLUSIVO";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #111;
  background: var(--gradient-gold);
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  opacity: 0.9;
}

@media (max-width: 980px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .bonus-card {
    border-radius: 16px;
    padding: 16px;
  }
  .bonus-card::after {
    top: 4px;
    right: 10px;
    padding: 4px 8px;
    font-size: 0.5rem;
  }
}

@media (max-width: 420px) {
  .bonus-section {
    padding: 28px 0 40px;
  }
  .bonus-card .mega-button {
    width: 100%;
    padding: 12px 16px;
  }
  .bonus-card::after {
    top: 1px;
    right: 5px;

    font-size: 0.4rem;
  }
}
.ftb-article-wrap {
  position: relative;
  padding: clamp(32px, 6vw, 72px) 0;
  background: radial-gradient(
      90% 80% at 50% 10%,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    var(--gradient-dark);
  border-top: 1px solid var(--border-light);
}

.ftb-article {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  color: var(--text-color);
  font-family: var(--font-base);
}

.ftb-article__head {
  display: grid;
  gap: 10px;
}

.ftb-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-text);
}

.ftb-title {
  line-height: 1.15;
  display: grid;
  gap: 6px;
}
.ftb-title__strong {
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 18px rgba(255, 46, 136, 0.25);
}
.ftb-title__thin {
  font-size: clamp(1.1rem, 1.1vw + 0.9rem, 1.6rem);
  color: var(--dark-text);
  opacity: 0.95;
}

.ftb-content {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}
.ftb-block {
  display: grid;
  gap: 12px;
}

.ftb-h2 {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: clamp(1.25rem, 1.3vw + 1rem, 1.75rem);
  color: var(--primary-color);
}
.ftb-h3 {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.35rem);
  color: var(--secondary-color);
}
.ftb-h4 {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary-color);
}

.ftb-content p {
  line-height: 1.75;
  font-size: clamp(0.98rem, 0.25vw + 0.95rem, 1.05rem);
  color: var(--text-color);
}

.ftb-mark {
  background: linear-gradient(
    90deg,
    rgba(255, 46, 136, 0.18),
    rgba(255, 46, 136, 0.06)
  );
  color: var(--dark-text);
  padding: 0.05em 0.35em;
  border-radius: 0.35em;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ftb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.ftb-card {
  background: var(--gradient-card-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: clamp(14px, 1.8vw, 20px);
  box-shadow: var(--shadow-soft);
}
.ftb-list {
  margin: 8px 0 0;
  padding-left: 1.2rem;
}
.ftb-list li {
  margin: 6px 0;
  color: var(--dark-text);
}

.ftb-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: linear-gradient(
    135deg,
    rgba(245, 215, 110, 0.12),
    rgba(200, 154, 43, 0.06)
  );
  border: 1px solid rgba(245, 215, 110, 0.22);
  border-radius: 18px;
  padding: clamp(14px, 2vw, 20px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 0 22px rgba(200, 154, 43, 0.18);
  color: var(--text-color);
  backdrop-filter: blur(4px);
}

.ftb-callout__icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 2px;
  filter: drop-shadow(0 6px 14px rgba(245, 215, 110, 0.35));
}
.ftb-callout__body {
  display: grid;
  gap: 6px;
}

/* Responsive */
@media (max-width: 960px) {
  .ftb-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .ftb-title__thin {
    font-size: clamp(1rem, 1.2vw + 0.9rem, 1.35rem);
  }
  .ftb-article-wrap {
    padding: clamp(24px, 6vw, 48px) 0;
  }
}
/* ===== Corporate About (brand‑agnostic) ===== */
.corp-about {
  position: relative;
  padding: clamp(44px, 6vw, 96px) 0;
  overflow: hidden;
  isolation: isolate;
}

.corp-about__bg {
  position: absolute;
  inset: -20% -10% -10% -10%;
  background: radial-gradient(
      80% 60% at 15% 25%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      70% 55% at 85% 75%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 65%
    ),
    var(--dark-bg);
  z-index: -2;
}

.corp-about__tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      60% 45% at 50% 10%,
      rgba(255, 203, 46, 0.16),
      transparent 60%
    ),
    radial-gradient(
      50% 40% at 70% 80%,
      rgba(255, 236, 92, 0.12),
      transparent 65%
    );
  filter: saturate(120%);
  z-index: -1;
}

.corp-about__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.corp-about__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.78rem;
  opacity: 0.9;
  color: var(--accent-color);
  margin: 0 0 10px;
}

.corp-about__title {
  font-family: var(--font-accent);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(1.6rem, 1.1rem + 2.1vw, 2.6rem);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  margin: 0 0 12px;
}

.corp-about__subtitle {
  color: var(--text-color);
  opacity: 0.92;
  font-size: clamp(0.98rem, 0.4vw + 0.9rem, 1.05rem);
  line-height: 1.65;
  margin: 0 0 22px;
}

/* Chips */
.corp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(20px, 3vw, 30px);
}

.corp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-color);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.03)
    ),
    var(--gradient-card-light);
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Cards grid */
.corp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 28px);
  margin: 0 0 clamp(26px, 4vw, 40px);
}

.corp-card {
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 24px);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    ),
    var(--gradient-card-light);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.18s ease, box-shadow 0.25s ease,
    border-color 0.2s ease;
}

.corp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.corp-card__title {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: clamp(1.02rem, 0.8rem + 0.6vw, 1.3rem);
  color: var(--accent-color);
  letter-spacing: 0.2px;
  margin: 0 0 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.corp-card p {
  color: var(--text-color);
  line-height: 1.65;
  font-size: 0.98rem;
  margin: 0 0 10px;
}

.corp-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.corp-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.corp-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--primary-color);
  font-weight: 900;
}

/* Stats */
.corp-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
  margin: 0 0 clamp(20px, 3vw, 36px);
}

.corp-stat {
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    ),
    var(--gradient-dark);
  border: 1px solid var(--border-light);
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.corp-stat__label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted-text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.corp-stat__value {
  display: block;
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: clamp(1rem, 0.6rem + 1vw, 1.3rem);
  color: var(--accent-color);
}

/* CTA row */
.corp-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.corp-primary,
.corp-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.corp-primary {
  color: var(--accent-color);
  background: var(--btn-primary-bg);
  box-shadow: 0 10px 26px rgba(255, 46, 136, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.corp-primary:hover {
  transform: translateY(-2px);
  background: var(--btn-primary-hover);
}

.corp-ghost {
  color: var(--accent-color);
  background: transparent;
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.corp-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
}
@media (max-width: 1024px) {
  .corp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .corp-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .corp-grid {
    grid-template-columns: 1fr;
  }
  .corp-tags {
    justify-content: center;
  }
  .corp-cta {
    justify-content: center;
  }
  .corp-about__title {
    font-size: clamp(1.5rem, 6vw, 2.1rem);
  }
}
.site-footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 40px 20px 20px;
  font-family: var(--font-main);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--accent-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 6px 0;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.cta-btn {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--accent-soft);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease;
}

.cta-btn:hover {
  background: var(--primary-color);
}

.footer-warning {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.demo-cta {
  position: relative;
  padding: clamp(28px, 5vw, 56px) 0;
}

.demo-cta__inner {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

.demo-cta__title {
  margin: 0;
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: clamp(1.25rem, 1.1rem + 1.6vw, 2rem);
  letter-spacing: 0.2px;
  line-height: 1.15;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  display: inline-block;
  position: relative;
}

.demo-cta__title::after {
  content: "";
  display: block;
  height: 3px;
  width: 72%;
  margin: clamp(8px, 1.2vw, 12px) auto 0;
  border-radius: 999px;
  background: var(--gradient-gold);
  box-shadow: var(--shadow-glow);
  opacity: 0.9;
}

.demo-cta__subtitle {
  margin: clamp(10px, 1.4vw, 14px) auto 0;
  color: var(--text-color);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  max-width: 58ch;
  opacity: 0.95;
}

@media (hover: hover) {
  .demo-cta__title:hover::after {
    width: 82%;
    transition: width 0.25s ease;
  }
}

@media (max-width: 540px) {
  .demo-cta {
    padding: 24px 0;
  }
  .demo-cta__title::after {
    width: 86%;
  }
}
.ctk-contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(40px, 6vw, 70px) 0;
  background: var(--dark-bg);
}

.ctk-contact__bg {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(
      60% 50% at 50% 20%,
      rgba(212, 175, 55, 0.28) 0%,
      rgba(212, 175, 55, 0) 60%
    ),
    radial-gradient(
      40% 35% at 70% 75%,
      rgba(184, 138, 45, 0.35) 0%,
      rgba(184, 138, 45, 0) 60%
    ),
    linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
  filter: blur(8px) saturate(115%);
  z-index: -2;
}

.ctk-contact__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: -1;
}

.ctk-contact__head {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.ctk-contact__eyebrow {
  font-family: var(--font-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  color: var(--muted-text);
  margin-bottom: 0.5rem;
}

.ctk-contact__title {
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  color: transparent;
}

.ctk-contact__subtitle {
  max-width: 700px;
  margin: 0.8rem auto 0;
  color: var(--text-color);
  opacity: 0.9;
}

.ctk-contact__grid {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ctk-contact__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: clamp(18px, 2.2vw, 24px);
  text-align: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.ctk-contact__icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.ctk-contact__label {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--accent-color);
}

.ctk-contact__link {
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
}

.ctk-contact__link:hover {
  text-decoration: underline;
}

.ctk-contact__note,
.ctk-contact__text {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.ctk-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  color: var(--text-color);
  font-size: 0.95rem;
}

.ctk-list li {
  margin-bottom: 0.3rem;
}

.ctk-chip {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 999px;
  background: var(--gradient-accent);
  color: #000;
  font-weight: 600;
}
