* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Bungee";
  src: url("fonts/Bungee-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
.section-title,
h1,
h2,
h3,
.bonus-card h3,
.about-subtitle,
.timer-title,
.hero-title,
.logo,
.screen-brand {
  font-family: "Bungee", sans-serif;
}
:root {
  --header-bg: linear-gradient(90deg, #0c0c0c 0%, #1a1a1a 50%, #0f0f0f 100%);

  --background: #0b0b0b;
  --foreground: #f9fafb;
  --primary: #22c55e;
  --primary-hover: #16a34a;
  --text-muted: #9ca3af;
  --button-bg: #22c55e;
  --button-text: #ffffff;
  --button-bg-hover: #16a34a;
  --card-bg: #1a1a1a;
  --card-border: #22c55e;
  --link: #4ade80;
  --accent: #ffd700;

  --gradient-gold-glow: linear-gradient(
    90deg,
    #ffd700 0%,
    #facc15 50%,
    #f97316 100%
  );
  --gradient-dark-gold: linear-gradient(135deg, #0f0f0f 0%, #22c55e 100%);
  --gradient-sparkle: radial-gradient(
    circle,
    #22c55e 0%,
    #166534 40%,
    #0a0a0a 100%
  );
  --gradient-glow-border: linear-gradient(120deg, #ffd700, #22c55e, #f97316);
  --gradient-rich-glow: linear-gradient(
    90deg,
    #34d399 0%,
    #4ade80 50%,
    #22c55e 100%
  );
  --overlay-earn-banner: linear-gradient(
    90deg,
    rgba(34, 197, 94, 0.4) 0%,
    rgba(22, 163, 74, 0.55) 40%,
    rgba(10, 10, 10, 0.8) 100%
  );

  --overlay-hero-partner: linear-gradient(
    180deg,
    rgba(34, 197, 94, 0.45) 0%,
    rgba(22, 163, 74, 0.55) 40%,
    rgba(8, 8, 8, 0.85) 100%
  );
}
body {
  font-family: "Roboto", sans-serif;
  background-color: var(--background);
  font-weight: 400;
  color: var(--foreground);
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--header-bg);
  color: var(--foreground);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--primary);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  font-size: 1.3rem;
}

.logo-part {
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gacor {
  font-size: 1.3rem;
  font-weight: 800;
}

.max {
  font-size: 1rem;
  font-weight: 700;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bet {
  font-size: 0.6rem;
  color: #a9b0a9;
  margin-left: 2px;
}

.logo:hover {
  transform: scale(1.05);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--gradient-gold-glow);
  transition: width 0.35s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 6px rgba(255, 180, 80, 0.6), 0 0 12px rgba(220, 50, 30, 0.45);
}

.nav-links a:hover::after {
  width: 100%;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
}

.lang-btn:hover {
  background-color: var(--primary);
  color: var(--button-text);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--foreground);
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1rem;
    display: none;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .language-switcher {
    margin-top: 1rem;
  }

  .burger {
    display: flex;
  }
  .gacor {
    font-size: 1rem;
  }

  .max {
    font-size: 0.8rem;
  }

  .bet {
    font-size: 0.4rem;
  }
}
.hero-partner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--background);
  color: var(--foreground);
  padding: clamp(48px, 6vw, 84px) 16px;
}
.hero-partner__bg {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero-partner),
    url("images/hero.jpg") center/cover no-repeat;
  z-index: -2;
  /* transform: scaleX(-1) scale(1.05); */
  filter: blur(1px);
}
.hero-partner__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.152) 0%,
    rgba(0, 0, 0, 0.128) 100%
  );
  z-index: -1;
}

.hero-partner__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Копирайт блок */
.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--button-text);
  margin: 0 0 0.4rem;
}

.hero-title {
  font-weight: 700;
  line-height: 1.2;
  font-size: 22px;
  margin: 0 0 0.8rem;
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  text-align: left;
}

.hero-title .highlight {
  display: block;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--accent);
  text-shadow: 1px 1px 0 #000, 3px 3px 0 var(--button-bg),
    3px 3px 6px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.4rem;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 18px;
  }
  .hero-title .highlight {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 16px;
    text-align: center;
    justify-content: center;
  }
  .hero-title .highlight {
    font-size: 28px;
  }
}
.partner-name {
  display: inline-flex;
  align-items: center;
}

.partner-logo {
  display: inline-block;
  max-width: 140px;
  height: auto;
  vertical-align: middle;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  border-radius: 40px;
  border: 1px solid white;
}
.partner-logo:hover {
  transform: scale(1.05);
}

.hero-subtitle {
  max-width: 680px;
  color: var(--button-text);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  margin: 0 0 0.9rem;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 1.6vw, 12px);
  margin: 0.6rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

/* pill */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  white-space: normal;
  line-height: 1.25;
  max-width: 100%;
  padding: clamp(8px, 1.3vw, 12px) clamp(12px, 2.2vw, 18px);
  font-size: clamp(0.84rem, 0.78rem + 0.35vw, 0.95rem);
  border-radius: 999px;
  color: var(--foreground);
  background: linear-gradient(
    135deg,
    rgba(58, 58, 93, 0.598),
    rgba(27, 43, 108, 0.377)
  );
  border: 1px solid rgba(255, 230, 128, 0.35);
  backdrop-filter: saturate(120%) blur(4px);
  -webkit-backdrop-filter: saturate(120%) blur(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  min-height: 44px;
}

/* tablet: равномерная сетка, читаемые строки */
@media (max-width: 768px) {
  .hero-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
  }
  .chip {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-chips {
    grid-template-columns: 1fr;
  }
  .chip {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .chip {
    padding: 6px 10px;
    min-height: 42px;
  }
  .hero-partner__bg {
    transform: scale(1);
  }
}

@media (hover: hover) {
  .chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  }
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.btn-hero {
  display: inline-block;
  background: var(--gradient-rich-glow);
  color: var(--foreground);
  font-weight: 800;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 24px rgba(212, 28, 28, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  line-height: 1.4;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 28, 28, 0.5);
}

@media (max-width: 480px) {
  .btn-hero {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border-radius: 40px;
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.btn-ghost {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(245, 182, 66, 0.45);
  color: var(--foreground);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05));
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--card-border);
}

.hero-partner__panel {
  align-self: center;
}
.panel-glass {
  position: relative;
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(255, 236, 200, 0.75) 0%,
    rgba(255, 192, 203, 0.6) 50%,
    rgba(250, 170, 100, 0.55) 100%
  );
  border: 1px solid rgba(255, 215, 130, 0.6);
  border-radius: 16px;
  padding: clamp(16px, 2vw, 22px);

  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 170, 200, 0.5),
    0 0 10px rgba(255, 220, 130, 0.45);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.panel-glass::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 50%;
  background: var(--gradient-gold-glow);
  opacity: 0.08;
  filter: blur(24px);
  pointer-events: none;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.partner-logo {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
  animation: floatPulse 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes floatPulse {
  0% {
    transform: scale(1) rotate(0deg) translateY(0);
  }
  25% {
    transform: scale(1.05) rotate(1deg) translateY(-4px);
  }
  50% {
    transform: scale(1) rotate(0deg) translateY(0);
  }
  75% {
    transform: scale(1.05) rotate(-1deg) translateY(4px);
  }
  100% {
    transform: scale(1) rotate(0deg) translateY(0);
  }
}
.badge {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 40px;
  border: 1px solid var(--foreground);
  background: rgba(58, 58, 93, 0.598);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--foreground);
}

.panel-list {
  list-style: none;
  padding: 0.4rem 0 0.6rem;
  margin: 0 0 0.4rem 0;
  display: grid;
  gap: 0.45rem;
}
.panel-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.7rem;
  border-radius: 0.6rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.294),
    rgba(35, 28, 28, 0.225)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.panel-list span {
  color: var(--foreground);
  font-size: 0.95rem;
}
.panel-list strong {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 204, 51, 0.35);
}

.panel-note {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0.4rem 0 0.8rem;
}
.panel-note a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px dashed rgba(245, 182, 66, 0.5);
}
.panel-note a:hover {
  border-bottom-color: var(--card-border);
}
@media (max-width: 980px) {
  .hero-partner__inner {
    grid-template-columns: 1fr;
  }
  .hero-partner__panel {
    order: 2;
  }
  .hero-partner__copy {
    order: 1;
  }
}

@media (max-width: 992px) {
  .partner-logo {
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .partner-logo {
    max-width: 100px;
  }
}

@media (max-width: 560px) {
  .hero-cta {
    justify-content: center;
  }
  .hero-eyebrow {
    text-align: center;
  }

  .panel-list li {
    padding: 0.5rem 0.6rem;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    max-width: 80px;
  }
}
.games {
  padding: 80px 20px;
  color: var(--foreground);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--foreground);
}
.section-subtitle {
  max-width: 800px;
  margin: 0.8rem auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  padding: 0 1rem;
}

.section-subtitle strong {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 992px) {
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 600px) {
  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    text-align: left;
    padding: 0;
  }
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(255, 223, 51, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 223, 51, 0.2);
}

.game-header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.game-header h3 {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  color: var(--primary);
}

.game-meta {
  font-size: 0.7rem;
  background: var(--gradient-gold-glow);
  color: #000;
  padding: 4px 7px;
  border-radius: 20px;
  font-weight: bold;
  white-space: nowrap;
  display: inline-block;
}

@media (max-width: 992px) {
  .game-meta {
    font-size: 0.65rem;
    padding: 3px 6px;
  }
}

@media (max-width: 600px) {
  .game-meta {
    font-size: 0.6rem;
    padding: 2px 5px;
    border-radius: 16px;
  }
}

@media (max-width: 400px) {
  .game-meta {
    font-size: 0.55rem;
    padding: 2px 4px;
    border-radius: 14px;
  }
}

.game-desc {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.game-info {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.7rem;
  color: var(--foreground);
}

.game-info li {
  margin-bottom: 6px;
}

.game-btn {
  display: inline-block;
  background: var(--button-bg);
  color: var(--button-text);
  padding: 10px 22px;
  font-weight: bold;
  border-radius: 30px;
  border: 1px solid var(--card-border);
  text-decoration: none;
  transition: all 0.3s ease;
}

.game-btn:hover {
  background: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--primary);
}
.bonuses {
  padding: 80px 20px;
  background: var(--card-bg);
  color: var(--foreground);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.bonus-card {
  position: relative;
  border-radius: 16px;
  padding: 24px;
  color: #000;
  background: #ffffff10;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--primary),
    var(--accent)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}
.bonus-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.6rem;
  line-height: 1.3;
  text-align: left;
  word-break: break-word;
}

@media (max-width: 768px) {
  .bonus-card h3 {
    font-size: 1.05rem;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .bonus-card h3 {
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 360px) {
  .bonus-card h3 {
    font-size: 0.9rem;
  }
  .game-btn {
    font-size: 0.7rem;
    padding: 10px 18px;
  }
}
.referral-desc,
.welcome-desc,
.freespin-desc {
  font-weight: 600;
  color: var(--foreground);
  font-size: 14px;
}
.bonus-style-green {
  background: linear-gradient(135deg, #0f1a3d, #1e3a8a);
  color: var(--foreground);
  box-shadow: 0 0 20px rgba(58, 108, 255, 0.35);
}

.bonus-style-yellow {
  background: linear-gradient(135deg, #1a1a33, #332b0d);
  color: var(--foreground);
  box-shadow: 0 0 20px rgba(255, 216, 77, 0.4);
}

.bonus-style-purple {
  background: linear-gradient(135deg, #1a0f2e, #2d1b47);
  color: var(--foreground);
  box-shadow: 0 0 20px rgba(162, 87, 255, 0.35);
}

.bonus-style-green .bonus-amount {
  background: linear-gradient(135deg, #4f8dff, #3a6cff);
}

.bonus-style-yellow .bonus-amount {
  background: linear-gradient(135deg, #ffd84d, #ffb347);
}

.bonus-style-purple .bonus-amount {
  background: linear-gradient(135deg, #9b6dff, #6a36e0);
}
.bonus-card .bonus-amount {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  padding: 0.35rem 0.9rem;
  margin-bottom: 12px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-shadow: 1px 1px 0 #000, 2px 2px 0 var(--accent),
    3px 3px 6px rgba(0, 0, 0, 0.09);
}

.bonus-cta-wrapper {
  margin-top: 50px;
  text-align: center;
}

.bonus-cta-btn {
  background: var(--button-bg);
  color: var(--accent);
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 40px;
  border: 2px solid var(--accent);
  text-decoration: none;
  box-shadow: 0 0 15px var(--accent);
  animation: pulse-scale 2s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

/* Hover для десктопа */
.bonus-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--accent), 0 0 50px var(--accent);
}

/* --- Адаптив --- */
@media (max-width: 1024px) {
  .bonus-cta-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

@media (max-width: 768px) {
  .bonus-cta-btn {
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: 30px;
  }
}

@media (max-width: 480px) {
  .bonus-cta-wrapper {
    margin-top: 30px;
  }

  .bonus-cta-btn {
    width: 100%;
    max-width: 320px;
    font-size: 0.9rem;
    padding: 12px 0;
    border-radius: 25px;
  }
}

/* Анимация пульса */
@keyframes pulse-scale {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px var(--accent);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 20px var(--accent);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px var(--accent);
  }
}

/* Адаптивность заголовков */
.bonus-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Win Counter */
.win-counter {
  background: var(--gradient-glow-border);
  color: #000;
  padding: 20px;
  border-radius: 15px;
  margin: 30px 0;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
  }
}

/* Testimonials */
.testimonials {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    var(--background) 0%,
    var(--card-bg) 100%
  );
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  position: relative;
  background: color-mix(in oklab, var(--card-bg) 88%, white 12%);
  border-radius: 10px;
  padding: 28px 26px 26px 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.203);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  isolation: isolate;
  border-left: 3px solid var(--accent);
}

.testimonial::before {
  content: "“";
  position: absolute;
  left: 16px;
  top: -10px;
  font-size: 4rem;
  line-height: 1;
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.testimonial-name {
  position: relative;
  z-index: 1;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
  font-size: clamp(1rem, 0.96rem + 0.3vw, 1.1rem);
}

.testimonial-text {
  position: relative;
  z-index: 1;
  color: var(--foreground);
  font-style: italic;
  line-height: 1.7;
  font-size: clamp(0.95rem, 0.92rem + 0.25vw, 1.05rem);
}

@media (max-width: 768px) {
  .testimonials {
    padding: 64px 0;
  }
  .testimonial-grid {
    gap: 18px;
  }
  .testimonial {
    padding: 22px;
    border-radius: 14px;
  }
  .testimonial::before {
    left: 12px;
    top: -8px;
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 16px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .section-title {
    font-size: 21px;
  }
}
/* Security Badge */
.security-badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-gold-glow);
  color: var(--background);
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1000;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.highlight {
  color: #ffd700;
  font-weight: bold;
}

.premium-badge {
  text-decoration: underline;

  font-weight: bold;
}
.about-section {
  padding: 100px 20px;

  overflow: hidden;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gradient-gold-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.75;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 30px auto 40px;
  max-width: 600px;
  text-align: left;
  font-size: 1rem;
  color: var(--foreground);
}

.about-list li {
  margin-bottom: 14px;
  padding-left: 1.6rem;
  position: relative;
  font-weight: 500;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.about-highlight {
  margin-top: 24px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--primary);
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 16px;
    border-radius: 16px;
  }

  .about-subtitle {
    font-size: 1.3rem;
    margin-top: 20px;
  }

  .about-text,
  .about-highlight {
    font-size: 0.95rem;
  }

  .about-list {
    font-size: 0.9rem;
    margin: 20px auto 30px;
  }
}
.site-footer {
  background: var(--background);
  color: var(--text-muted);
  padding: 3rem 1rem 1.5rem;
  border-top: 2px solid rgba(255, 200, 80, 0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: var(--gradient-rich-glow);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.footer-contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contacts li,
.footer-legal p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contacts a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-contacts a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px rgba(255, 180, 80, 0.5);
}

.footer-legal {
  max-width: 400px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 200, 80, 0.15);
  padding-top: 1rem;
  color: var(--foreground);
}
.bonus-partner {
  background: var(--background);
  padding: 60px 20px;
  text-align: center;
  color: var(--foreground);
  position: relative;
}

.bonus-header .bonus-title {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.bonus-header .bonus-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}
.bonus-amount.bonus-amount--deposit {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 0.4rem 1rem;
  margin-bottom: 12px;
  border-radius: 10px;
  background: var(--gradient-glow-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.bonus-card .bonus-reward {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

.bonus-card .bonus-reward span {
  color: var(--primary-hover);
  font-weight: 700;
}

.bonus-conditions {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.conditions-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--foreground);
}

.conditions-list {
  margin: 0 0 25px 20px;
  padding: 0;
  color: var(--foreground);
}

.conditions-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--foreground);
}
.conditions-list li a {
  color: var(--primary);
}
.btn-telegram {
  display: inline-block;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .btn-telegram {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .btn-telegram {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  .bonus-header .bonus-title {
    font-size: 1.4rem;
  }
  .bonus-amount.bonus-amount--deposit {
    font-size: 0.7rem;
  }
}

@media (max-width: 420px) {
  .btn-telegram {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  .conditions-title {
    font-size: 1.2rem;
    text-align: center;
  }
  .conditions-list li {
    font-size: 14px;
  }

  .bonus-subtitle {
    font-size: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 40px;
  }
  .bonus-card .bonus-reward {
    font-size: 0.7rem;
  }
}
.btn-telegram:hover {
  background: var(--button-bg-hover);
}
.earn-banner {
  position: relative;
  background: url("images/banner.jpg") center/cover no-repeat;
  color: var(--foreground);
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.earn-banner__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-earn-banner);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  -webkit-mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0.6) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;

  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0.6) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}
.earn-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 2rem;
}

.earn-banner__content {
  max-width: 700px;
  text-align: right;
  margin: 0 auto;
}

.earn-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-align: left;
}

.earn-title {
  position: relative;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 900;
  text-align: left;
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.earn-title::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 0 #000, 2px 2px 0 var(--accent),
    3px 3px 6px rgba(0, 0, 0, 0.6);
}

.earn-subtitle {
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-align: left;
}

.earn-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.earn-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.35;
  padding-block: 0.2rem;
  font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.05rem);
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  color: var(--foreground);
}

.earn-points li span {
  flex: 0 0 auto;
  display: inline;
  text-align: center;
  width: 1.35rem;
  height: 1.35rem;
  line-height: 1;
  font-size: 1.2rem;
  margin: 0;
  color: var(--foreground);
}

@media (min-width: 480px) {
  .earn-points {
    gap: 0.75rem;
  }
  .earn-points li {
    gap: 0.7rem;
  }
  .earn-points li span {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) {
  .earn-points {
    gap: 0.85rem;
  }
  .earn-points li {
    font-size: clamp(1rem, 0.95rem + 0.35vw, 1.15rem);
  }
  .earn-points li span {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 1.35rem;
  }
}
@media (max-width: 768px) {
  .earn-banner {
    min-height: 360px;
  }
  .earn-banner__content {
    text-align: left;
    max-width: 100%;
  }
  .earn-banner__inner {
    justify-content: flex-start;
  }

  .earn-title {
    font-size: 2rem;
  }
}
@media (max-width: 450px) {
  .earn-title {
    font-size: 1.4rem;
  }
}
.bonus-terms {
  margin-top: 60px;
  padding: 30px 20px;
  border-radius: 16px;
  background: var(--gradient-dark-gold);
  box-shadow: 0 0 12px rgba(254, 196, 22, 0.15);
}

.terms-title {
  color: var(--accent);
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.terms-grid {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.term-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  gap: 10px;
}

.term-item img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(246, 201, 71, 0.4));
}

.term-item strong {
  color: var(--foreground);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

.term-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .terms-grid {
    flex-direction: column;
    align-items: center;
  }

  .term-item {
    width: 100%;
  }
  .terms-title {
    font-size: 1.3rem;
  }
}
.partner-contact {
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
}

.contact-heading {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.contact-subtext {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--foreground);
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--primary);
  text-decoration: none;
}

.contact-btn:hover {
  background: var(--primary-hover);
}

.btn-icon {
  width: 16px;
  height: 16px;
  filter: invert(1);
}
.faq-section {
  background: var(--card-bg);
  padding: 60px 20px;
  margin-top: 60px;
}

.faq-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  background: var(--background);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  list-style: none;
  position: relative;
}
.faq-item summary h3 {
  font-size: 1rem;
  font-weight: 500;
}
.faq-item summary::marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  padding: 0 1.2rem 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.faq-item a {
  color: var(--link);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-list {
    max-width: 100%;
  }
  .faq-title {
    font-size: 1.5rem;
  }
  .faq-item summary {
    padding: 0.9rem 1rem;
  }
  .faq-item summary h3 {
    font-size: 0.95rem;
  }

  .faq-item p {
    font-size: 0.9rem;
    padding: 0 1rem 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
  .faq-item summary {
    padding: 0.8rem 0.9rem;
  }
  .faq-item summary h3 {
    font-size: 0.8rem;
  }

  .faq-item summary::after {
    font-size: 1rem;
    right: 0.9rem;
  }

  .faq-item p {
    font-size: 0.85rem;
    line-height: 1.45;
    padding: 0 0.9rem 0.8rem;
  }
}

@media (max-width: 360px) {
  .faq-title {
    font-size: 1.15rem;
  }

  .faq-item summary h3 {
    font-size: 0.5rem;
  }

  .faq-item p {
    font-size: 0.5rem;
    line-height: 1.4;
    padding: 0 0.8rem 0.7rem;
  }
}
.final-banner {
  position: relative;
  background: url("images/final-banner.jpg") center/cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--foreground);
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.final-banner__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-earn-banner);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 1;
}

.final-banner__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.final-banner__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--foreground);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-banner__title span {
  background: var(--gradient-rich-glow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-banner__subtitle {
  font-size: 1.05rem;
  color: var(--foreground);
  line-height: 1.7;
}
.final-banner__cta {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-banner__cta li {
  background: var(--gradient-dark-gold);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(41, 199, 111, 0.35);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.final-banner__cta li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(41, 199, 111, 0.45);
}

/* Адаптив */
@media (max-width: 768px) {
  .final-banner__cta li {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 480px) {
  .final-banner__cta {
    gap: 0.6rem;
  }

  .final-banner__cta li {
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .final-banner {
    min-height: 260px;
    border-radius: 12px 12px 0 0;
  }

  .final-banner__title {
    font-size: 1.5rem;
  }

  .final-banner__subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .final-banner {
    min-height: 220px;
  }

  .final-banner__title {
    font-size: 1.4rem;
  }

  .final-banner__subtitle {
    font-size: 0.9rem;
  }
}
.intro-section {
  padding: 60px 20px;
  background: linear-gradient(
    135deg,
    var(--background) 0%,
    var(--card-bg) 100%
  );
  border-radius: 0 0 24px 24px;
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(254, 196, 22, 0.12),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(244, 65, 80, 0.1),
      transparent 60%
    );
  z-index: 0;
}

.intro-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
  text-shadow: 1px 1px 0 #000, 2px 2px 0 var(--accent),
    3px 3px 6px rgba(0, 0, 0, 0.142);
  margin-top: 0.3em;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.intro-highlight {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--foreground);
  background: var(--gradient-rich-glow);
  padding: 14px 18px;
  border-radius: 12px;
  line-height: 1.6;
  border-left: 3px solid var(--primary);
}

@media (max-width: 768px) {
  .intro-section {
    padding: 50px 16px;
    border-radius: 0 0 16px 16px;
  }

  .intro-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .intro-text {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .intro-highlight {
    font-size: 0.95rem;
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .intro-title {
    font-size: 1.3rem;
  }

  .intro-text,
  .intro-highlight {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
.legal-info {
  margin-top: 30px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.legal-age {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 2px solid white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.354);
  animation: bouncePulse 4s ease-in-out infinite;
}

@keyframes bouncePulse {
  0%,
  80%,
  100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-10px) scale(1.05);
  }
  60% {
    transform: translateY(-5px) scale(1.02);
  }
}

.legal-title {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--primary);
  text-align: center;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--foreground);
}

.legal-list li {
  margin-bottom: 14px;
  background: var(--background);
  padding: 12px 14px;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}
/* Tablet */
@media (max-width: 992px) {
  .legal-info {
    padding: 18px;
  }

  .legal-age {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
    top: -15px;
    right: -15px;
  }

  .legal-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .legal-list {
    font-size: 0.9rem;
  }

  .legal-list li {
    margin-bottom: 12px;
    padding: 10px 12px;
  }
}

@media (max-width: 768px) {
  .legal-info {
    margin-top: 24px;
    padding: 16px;
    border-radius: 10px;
  }

  .legal-age {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
    top: -12px;
    right: -12px;
  }

  .legal-title {
    font-size: 1rem;
  }

  .legal-list {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .legal-list li {
    margin-bottom: 10px;
    padding: 9px 11px;
    border-left-width: 3px;
  }
}

@media (max-width: 480px) {
  .legal-info {
    margin-top: 20px;
    padding: 14px;
  }

  .legal-age {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
    top: -20px;
    right: -10px;
  }

  .legal-title {
    font-size: 0.95rem;
  }

  .legal-list {
    font-size: 0.8rem;
  }

  .legal-list li {
    margin-bottom: 8px;
    padding: 8px 10px;
    border-left-width: 3px;
  }
}
.promo-ticker {
  --dur: 22s;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: 12px;
  background: radial-gradient(
      120% 140% at 100% 0%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    var(--gradient-gold-glow);
  border-bottom: 1px solid rgba(246, 201, 71, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  isolation: isolate;
}

.promo-ticker::before,
.promo-ticker::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 55px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(44, 26, 16, 0.22),
    rgba(44, 26, 16, 0)
  );
}
.promo-ticker::after {
  left: auto;
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(44, 26, 16, 0.14),
    rgba(44, 26, 16, 0)
  );
}

.promo-ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker-loop var(--dur) linear infinite;
}

.promo-ticker__row {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  white-space: nowrap;
  padding-inline: clamp(16px, 3vw, 28px);
}

.promo-ticker__item {
  font-weight: 800;
  font-size: clamp(1rem, 0.8rem + 0.75vw, 1.35rem);
  letter-spacing: 0.6px;
  color: var(--background);
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(8, 53, 19, 0.288);
}

.promo-ticker__sep {
  opacity: 0.9;
  color: var(--accent);
}

@keyframes ticker-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (hover: hover) {
  .promo-ticker:hover .promo-ticker__track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-ticker__track {
    animation-duration: 999s;
  }
}
.neon-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  top: -10px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.8;
  filter: drop-shadow(0 0 6px var(--primary));
  animation: floatDown linear forwards;
}

@keyframes floatDown {
  to {
    transform: translateY(120vh);
    opacity: 0;
  }
}

.app-section {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 20px;
  background: radial-gradient(
      120% 160% at 100% 0%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    var(--background);
}

.app-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}

.app-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}
.app-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(41, 199, 111, 0.12),
    rgba(189, 242, 227, 0.08)
  );
  border: 1px solid rgba(255, 230, 128, 0.28);
  color: var(--foreground);
  font-weight: 600;
}

.app-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.btn-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}
.btn-app--primary {
  background: linear-gradient(135deg, #29c76f, #56d364);
  color: #fff;
  box-shadow: 0 8px 24px rgba(41, 199, 111, 0.28);
}
.btn-app--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(41, 199, 111, 0.36);
}
.btn-app--ghost {
  background: transparent;
  color: var(--foreground);
  border: 1px solid rgba(255, 230, 128, 0.35);
  backdrop-filter: blur(2px);
}
.btn-app--ghost:hover {
  background: rgba(41, 199, 111, 0.08);
}

/* Phone mockup */
.app-mock {
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  background: #0c1511;
  box-shadow: 20px 10px 10px rgba(60, 62, 61, 0.484);
  isolation: isolate;
}
.phone__bezel {
  position: absolute;
  inset: 6px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.6));
}
.phone__screen {
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  background: radial-gradient(
      120% 120% at 50% -10%,
      rgba(255, 255, 255, 0.05),
      transparent 60%
    ),
    linear-gradient(180deg, #0a0f2a 0%, #111633 55%, #090d1f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 18px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background: #1a1a2e;
  box-shadow: inset 0 -2px 6px rgba(255, 215, 0, 0.15);
}

.phone__glow {
  position: absolute;
  inset: -6px;
  border-radius: 34px;
  background: radial-gradient(
    60% 80% at 50% 10%,
    rgba(88, 101, 242, 0.35),
    rgba(162, 87, 255, 0.25),
    transparent 70%
  );
  filter: blur(14px);
  z-index: -1;
}

.screen-brand {
  display: flex;
  gap: 0.35rem;
  align-items: baseline;
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: clamp(1.1rem, 0.9rem + 1.2vw, 1.6rem);
  margin-bottom: 0.6rem;
}
.screen-brand .brand-left {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.screen-brand .brand-right {
  background: linear-gradient(135deg, #29c76f, #bdf2e3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.screen-tagline {
  color: #e9fff5;
  opacity: 0.9;
  font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.1rem);
  line-height: 1.5;
  margin: 0.2rem 0 0.9rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.screen-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.badge-pill {
  padding: 0.35rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  color: var(--primary);
  background: linear-gradient(135deg, #bdf2e3, #8ae0c7);
  box-shadow: 0 6px 16px rgba(189, 242, 227, 0.25);
}

/* Animation */
.phone__screen {
  animation: subtleShift 8s ease-in-out infinite;
}
@keyframes subtleShift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .app-inner {
    grid-template-columns: 1fr;
  }
  .app-copy {
    order: 2;
    text-align: center;
  }
  .app-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .app-points li {
    justify-content: center;
  }
  .app-ctas {
    justify-content: center;
  }
  .app-mock {
    order: 1;
  }
}

@media (max-width: 420px) {
  .badge-pill {
    font-size: 0.76rem;
    padding: 0.3rem 0.55rem;
  }
  .btn-app {
    padding: 0.6rem 0.95rem;
  }
  .app-points li {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    gap: 0.3rem;
  }
}
.app-copy {
  max-width: 640px;
}

.app-eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.78rem, 0.7rem + 0.3vw, 0.9rem);
  color: var(--primary);
  margin: 0 0 0.5rem;
  text-align: center;
}

.app-copy .section-title {
  font-size: clamp(1.4rem, 1.05rem + 2.2vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 0.6rem;
  color: var(--foreground);
}

.app-subtitle {
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.05rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 56ch;
}

/* tablet */
@media (max-width: 992px) {
  .app-copy {
    max-width: 700px;
    text-align: center;
    margin-inline: auto;
  }
  .app-subtitle {
    margin-inline: auto;
  }
}

/* phone */
@media (max-width: 600px) {
  .app-copy .section-title {
    margin-bottom: 0.5rem;
  }
  .app-subtitle {
    line-height: 1.55;
    margin-bottom: 0.9rem;
  }
}

/* small phones */
@media (max-width: 380px) {
  .app-copy .section-title {
    font-size: 1.35rem;
  }
  .app-subtitle {
    font-size: 0.92rem;
  }
}
