:root {
  --primary-gold: #fdae4d;
  --secondary-gold: #ffa44a;
  --dark-green: #0c0f16;
  --medium-green: #151a22;
  --light-green: #fff2d6;
  --dark-bg: #e7e7e7;
  --text-light: #222;
  --success-green: #f0c54d;
  --danger-red: #ff4d5e;
  --logo-color: #ffe08a;
  --highlight-color: #ffcf5b;

  --btn-gradient-blue: linear-gradient(135deg, #ffdf7e, #ffb643, #ff8a2b);
  --btn-gradient-indigo: linear-gradient(135deg, #ffd36b, #ffe793, #ffffff);
  --header-bg: linear-gradient(135deg, #0b0f16, #1a2130);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@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: "Lato";
  src: url("fonts/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Russo One";
  src: url("fonts/RussoOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
  color: #fff;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
.hero-title,
.promo-modern-title,
.win-amount,
.logo {
  font-family: "Russo One", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light); /* светлый золотисто-бежевый оттенок */
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Адаптив */
@media (max-width: 1024px) {
  .section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
    padding: 0 16px;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 10px auto 20px;
  }
}
body {
  background-color: var(--dark-bg);
  color: var(--primary-gold);
  overflow-x: hidden;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-gold);
  color: var(--dark-bg);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1001;
}

.skip-link:focus {
  top: 6px;
}

.header {
  background: var(--header-bg);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

.container-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  role: group;
  aria-label: "Language selector";
}

.lang-btn {
  background: linear-gradient(
    45deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--text-light);
  border: 2px solid var(--dark-bg);
  padding: 0.4rem 0.6rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lang-btn:hover,
.lang-btn:focus,
.lang-btn.active {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  outline: 2px solid var(--dark-bg);
  outline-offset: 2px;
}

.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--logo-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  color: var(--logo-color);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.15);
}
.logo-text .highlighted {
  font-size: 1rem;

  color: var(--highlight-color);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 2px 2px rgba(0, 0, 0, 0.15);
}
.logo-text .logo-end {
  font-size: 1rem;
  color: var(--light-green);
}
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.burger-menu span {
  height: 3px;
  width: 100%;
  background: var(--light-green);
  border-radius: 3px;
  transition: 0.3s ease;
}

.mobile-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex;
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav-controls {
    display: none;
  }

  .mobile-menu.open .nav-controls {
    display: flex;
    gap: 1rem;
  }
  .container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    font-size: 1rem;
  }
}

.play-btn {
  background: var(--btn-gradient-blue);
  color: var(--medium-green);
  border: none;
  padding: 1.25rem 3.125rem;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  animation: pulse 1.5s infinite ease-in-out;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform; /* 💥 фикс */
}

.play-btn:hover,
.play-btn:focus {
  outline: 3px solid var(--text-light);
  outline-offset: 3px;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.75);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  }
}
.hero {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  text-align: center;
  padding: 100px 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero {
  text-align: left;
  align-items: flex-start;
  padding: 100px 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/hero.jpg") center/cover no-repeat;
  z-index: -3;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6),
    rgba(255, 215, 0, 0.15),
    rgba(0, 0, 0, 0.85)
  );
  backdrop-filter: blur(17px);
  z-index: -2;
}

.hero-title {
  font-size: 5.3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  color: var(--highlight-color);

  text-shadow: 0 3px 0 var(--dark-green), 0 5px 0 var(--danger-red),
    2px 2px 0 var(--light-green), -2px 2px 0 var(--secondary-gold);
}

.hero-title::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  color: var(--primary-gold);
  text-shadow: 0 3px 3px var(--secondary-gold);
}
.hero-title span {
  color: var(--highlight-color);
}
.hero-subtitle {
  color: var(--logo-color);
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.17),
    2px 2px 2px rgba(0, 0, 0, 0.2), 0 0 3px rgba(255, 255, 255, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.15);
}

.hero-desc {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--primary-gold);
  text-align: center;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-cta,
.btn-outline {
  padding: 18px 36px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.4;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
  letter-spacing: 1px;
  min-width: 220px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.btn-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 999px;
  background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
  opacity: 0.25;
  z-index: -1;
  animation: pulse-wave 2.5s infinite ease-out;
}
.btn-cta {
  animation: heartbeat 1.8s infinite ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.04);
  }
  60% {
    transform: scale(0.98);
  }
}

@keyframes pulse-wave {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.3;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.15;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}
.btn-cta {
  background: var(--btn-gradient-indigo);
  background-size: 200% 200%;
  color: var(--medium-green);
  border: none;
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.4), 0 0 10px rgba(255, 102, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-outline {
  background: rgba(80, 62, 2, 0.466);
  color: var(--highlight-color);
  border: 2px solid var(--highlight-color);
  box-shadow: inset 0 0 6px rgba(255, 196, 0, 0.25),
    0 0 10px rgba(255, 94, 0, 0.2);
}

.btn-cta:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 94, 0, 0.5), 0 0 12px rgba(255, 119, 0, 0.4);
}
@media (max-width: 1024px) {
  .btn-cta,
  .btn-outline {
    padding: 16px 28px;
    font-size: 1rem;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .btn-cta,
  .btn-outline {
    padding: 14px 24px;
    font-size: 0.95rem;
    min-width: 180px;
    border-radius: 10px;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .btn-cta,
  .btn-outline {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 100%;
    width: 100%;
    border-radius: 8px;
    gap: 0.4rem;
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    text-shadow: 0 2px 0 var(--dark-green), 0 3px 0 var(--danger-red),
      1px 1px 0 var(--light-green), -1px 1px 0 var(--secondary-gold);
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .hero {
    height: auto;
  }
  .timer-heading {
    font-size: 1.5rem;
  }

  .timer-subtext {
    font-size: 1rem;
  }
}
@media (max-width: 450px) {
  .hero-title {
    font-size: 1.5rem;
  }
}
.section {
  padding: 3.75rem 0;
  margin: 1.25rem 0;
}

.section h2,
#bonus-title {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  line-height: 1.3;
  word-break: break-word;
}

.section h2::after,
#bonus-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--secondary-gold);
  margin: 1.5rem 0 1rem 0;
  line-height: 1.4;
  word-break: break-word;
}
.games-section {
  position: relative;
  padding: 4rem 1.5rem;
  color: var(--text-light);
  overflow: hidden;
  z-index: 0;
}

#promo-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  line-height: 1.3;
}
.games-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  line-height: 1.3;
}
.games-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
#promo-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  .games-section h2 {
    font-size: 1.7rem;
  }
}
.game-card {
  background: rgba(255, 255, 255, 0.437);
  border: 2px solid var(--primary-gold);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 12px rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(6px);
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(255, 215, 0, 0.25);
}

/* Image & Badges */
.game-img-wrapper {
  position: relative;
}

.game-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--primary-gold);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--primary-gold);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 8px;
  backdrop-filter: blur(2px);
  margin-bottom: 4px;
}

.badge.provider {
  top: 10px;
  right: 10px;
  left: auto;
}

/* Info content */
.game-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card h3 {
  font-size: 1.25rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 2px rgba(21, 21, 21, 0.103);
}

.game-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  flex-grow: 1;
}
.game-info p {
  color: var(--text-light);
}
.game-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.meta-label {
  color: var(--text-light);
  white-space: nowrap;
}

.meta-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.meta-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--primary-gold),
    var(--secondary-gold)
  );
  border-radius: 10px;
}

.game-cta {
  display: inline-block;
  margin-top: auto;
  text-align: center;
  background: var(--primary-gold);
  color: var(--dark-green);
  font-weight: bold;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.game-cta:hover {
  background: var(--secondary-gold);
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .game-img {
    height: 150px;
  }

  .game-card h3 {
    font-size: 1.15rem;
  }

  .game-card p {
    font-size: 0.95rem;
  }

  .game-cta {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .game-img {
    height: 140px;
  }

  .game-card h3 {
    font-size: 1.05rem;
  }

  .game-card p {
    font-size: 0.875rem;
  }

  .game-cta {
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-img {
    height: 130px;
  }

  .game-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .game-card p {
    font-size: 0.85rem;
  }

  .game-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .meta-bar {
    width: 100%;
  }

  .game-cta {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    width: 100%;
  }
}
.feature-card {
  background: linear-gradient(
    135deg,
    var(--medium-green) 0%,
    var(--dark-green) 100%
  );
  border: 2px solid var(--primary-gold);
  border-radius: 15px;
  padding: 1.875rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover,
.game-card:focus-within,
.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

/* CONTAINER & HEADER */
.welcome-bonanza {
  padding: 56px 0 40px;
  background: var(--dark-bg);
  color: var(--text-light);
}
.wb-container {
  width: min(1160px, 92%);
  margin-inline: auto;
}
.wb-header {
  text-align: center;
  margin-bottom: 26px;
}
.wb-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 216, 120, 0.1);
  border: 1px solid rgba(231, 136, 20, 0.35);
  color: var(--text-light);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.wb-header h2 {
  margin: 12px 0 10px;
  font-size: clamp(22px, 3.6vw, 36px);
  line-height: 1.15;
  font-weight: 900;
  color: var(--text-light);
}
.wb-lead {
  max-width: 860px;
  margin: 0 auto;
  color: #333;
  font-size: clamp(14px, 2.1vw, 17px);
  line-height: 1.6;
}

/* GRID */
.wb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
@media (max-width: 992px) {
  .wb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .wb-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* CARDS (Base) */
.wel-card {
  position: relative;
  border-radius: 22px;
  padding: 26px 22px;
  color: #1a1a1a;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 216, 120, 0.5);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}
@media (hover: hover) {
  .wel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 640px) {
  .wel-card {
    text-align: center;
    padding: 22px 18px;
    border-radius: 18px;
  }
}

/* Unique gradients (Sweet-Bonanza vibes) */
.wel-card--pink {
  background: radial-gradient(
    120% 120% at 20% 0%,
    #ff9ad1 0%,
    #ff73c2 62%,
    #ff62a6 82%,
    #ff8dc0 100%
  );
  color: #2b0a1c;
}
.wel-card--purple {
  background: radial-gradient(
    115% 115% at 85% 10%,
    #e3d2ff 0%,
    #c7a6ff 28%,
    #a778ff 60%,
    #8b5cf6 86%,
    #a07bff 100%
  );
  color: #1b1230;
}
.wel-card--orange {
  background: radial-gradient(
    125% 125% at 15% 0%,
    #ffe1c2 0%,
    #ffc18a 28%,
    #ff9f5a 58%,
    #ff7a3b 84%,
    #ffa36b 100%
  );
  color: #2b1204;
}

/* CARD CONTENT */
.wel-card__hdr {
  margin-bottom: 10px;
}
.wel-offer {
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0.9;
}
.wel-title {
  font-weight: 900;
  font-size: clamp(20px, 3.2vw, 28px);
  line-height: 1.12;
}
.wel-title span {
  display: block;
  background: linear-gradient(135deg, var(--light-green), var(--logo-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wel-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(0, 0, 0, 0.86);

  margin: 10px 0 14px;
}
.wel-card--pink .wel-list,
.wel-card--purple .wel-list,
.wel-card--orange .wel-list {
  color: rgba(0, 0, 0, 0.78);
}
@media (max-width: 640px) {
  .wel-list {
    font-size: 0.975rem;
  }
}

.wel-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 640px) {
  .wel-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

.wel-tag {
  font-weight: 700;
  color: var(--light-green);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
}

@media (hover: hover) {
  .wel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
  .wel-btn:active {
    transform: translateY(0);
    opacity: 0.96;
  }
}
@media (max-width: 640px) {
  .wel-btn {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
}

/* HIGHLIGHT */
.wb-highlight {
  margin-top: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 216, 120, 0.08),
    rgba(255, 216, 120, 0.02)
  );
  border: 1px solid rgba(240, 126, 65, 0.506);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text-light);
}
.wb-ico {
  font-size: 20px;
}
.wb-hl-body {
  font-size: 0.975rem;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .wb-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .wb-ico {
    display: none;
  }
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}

.payment-method {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.payment-method:hover {
  transform: translateY(-5px);
}

.payment-method img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  margin-bottom: 10px;
  display: block;
}

.payment-method p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.button-wrapper {
  margin-top: 2.5rem;
  text-align: center;
}

.button-primary {
  display: inline-block;
  background: var(--btn-gradient-blue);
  color: var(--medium-green);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 15px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.button-primary:hover {
  background: var(--secondary-gold);
  transform: translateY(-2px);
}

.button-primary.large {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}
@media (max-width: 480px) {
  .button-primary.large {
    font-size: 14px;
    padding: 0.7rem 1.1rem;
  }
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    gap: 0.625rem;
  }

  .payment-method {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 1200px) {
  .bonus-card {
    padding: 28px 22px;
    border-radius: 22px;
  }
}

@media (max-width: 992px) {
  .bonus-card {
    padding: 26px 20px;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .bonus-card {
    padding: 22px 18px;
    border-radius: 18px;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .bonus-offer {
    font-size: 1.125rem;
  }
}
@media (max-width: 992px) {
  .bonus-offer {
    font-size: 1.0625rem;
  }
}
@media (max-width: 640px) {
  .bonus-offer {
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .bonus-big {
    font-size: 2.25rem;
  }
}
@media (max-width: 992px) {
  .bonus-big {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  .bonus-big {
    font-size: 1.75rem;
  }
}
@media (max-width: 400px) {
  .bonus-big {
    font-size: 1.6rem;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

.mobile-app-section {
  padding: 60px 20px;
  border-radius: 16px;
  background: var(--section-bg, transparent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.app-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.app-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 2rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.75rem;
}

.app-text h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.app-text p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  align-items: center;
}

.app-feature {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  width: 100%;
  max-width: 500px;
  text-align: left;
}

.app-feature span {
  font-size: 1.2rem;
  margin-right: 6px;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-button {
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  text-decoration: none;
  width: 160px;
  transition: background 0.3s;
}

.store-button strong {
  font-size: 1rem;
}

.store-button.apple::before {
  content: "";
  font-size: 1.4rem;
  margin-right: 8px;
}

.store-button.google::before {
  content: "▶";
  font-size: 1.2rem;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .app-text h2 {
    font-size: 2rem;
  }

  .app-text p {
    font-size: 0.95rem;
  }

  .app-feature {
    text-align: center;
  }

  .store-button {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }
}

.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--light-green);
  border: 2px solid var(--primary-gold);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 3rem;
  color: var(--text-light);
  backdrop-filter: blur(8px);
  position: relative;
}

.highlight-icon {
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-gold);
}

.highlight-content {
  font-size: 1rem;
  line-height: 1.5;
}

.highlight-content strong {
  color: var(--secondary-gold);
  font-size: 1.1rem;
}

.highlight-amount {
  font-weight: bold;
  color: var(--primary-gold);
  font-size: 1.2rem;
  padding: 0 4px;
}

.highlight-callout {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .highlight-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlight-icon {
    font-size: 1.6rem;
  }

  .highlight-content {
    font-size: 0.95rem;
  }

  .highlight-amount {
    font-size: 1.1rem;
  }
}

.highlight {
  color: var(--secondary-gold);
  font-weight: 600;
}

.glow {
  color: var(--light-green);
  text-shadow: 0 0 8px rgba(56, 160, 201, 0.5);
}

.about-content em {
  color: var(--primary-gold);
  font-style: normal;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  color: var(--text-light);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px rgba(56, 201, 119, 0.4));
}

.about-note {
  margin-top: 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
}

.bonus-section {
  padding: 80px 20px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 1200px) {
  .bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.bonus-card {
  background: var(--light-green);
  border-radius: 24px;
  border: 2px solid var(--highlight-color);
  padding: 32px 24px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-8px);
}

.bonus-offer {
  font-size: 1.25rem;
  color: var(--secondary-gold);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.bonus-big {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-light);
}

@keyframes text-pulse {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.08);
  }
  40% {
    transform: scale(0.96);
  }
  60% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.bonus-big span {
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: text-pulse 3.5s ease-in-out infinite;
}
.bonus-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 1rem;
  line-height: 1.6;
}

.bonus-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-tag {
  background: var(--primary-gold);
  color: var(--medium-green);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.bonus-button {
  background: var(--btn-gradient-blue);
  color: var(--medium-green);
  padding: 14px 24px;
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.4), 0 0 10px rgba(255, 102, 0, 0.3);
  transition: all 0.2s ease;
}

.bonus-button:hover {
  transform: scale(1.05);
}
.demo-banner {
  background: linear-gradient(145deg, #ffffff, #fffbfb, #fdfaf2);

  border-top: 2px solid var(--primary-gold);
  border-bottom: 2px solid var(--secondary-gold);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.demo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
}

.demo-text {
  flex: 1;
  min-width: 300px;
  color: var(--text-light);
}

.demo-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 16px;
}

.demo-desc {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.demo-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.demo-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  color: var(--text-light);
}
.demo-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
}
.demo-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 600px;
}
.demo-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background-color: #000;
  text-decoration: none;
}

.demo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-6px);
  border: 2px solid var(--primary-gold);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.4);
}

.demo-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .demo-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .demo-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .demo-title {
    font-size: 1.5rem;
  }
  .bonus-big {
    font-size: 2rem;
  }
  .demo-desc {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .demo-list {
    margin-bottom: 18px;
  }
  .demo-list li {
    padding-left: 10px;
  }
}

.vip-promo {
  background: radial-gradient(
      120% 120% at 20% 0%,
      rgba(255, 184, 0, 0.06) 0%,
      transparent 60%
    ),
    var(--dark-bg);
  padding-top: 20px;
}

.vip-card {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgb(255, 255, 255), rgb(255, 249, 249));
  border: 2px solid var(--highlight-color);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 24px;
  color: var(--text-light);
}

.vip-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--text-light);
  margin: 0 0 8px 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.vip-sub {
  margin: 0 0 18px 0;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
  color: #333;
}

.vip-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.vip-stat {
  border-radius: 16px;
  padding: 16px 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 227, 160, 0.05),
    rgba(255, 227, 160, 0.02)
  );
  border: 1px solid rgba(255, 198, 102, 0.28);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.vip-stat b {
  display: inline-block;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 900;
  letter-spacing: 0.3px;
  color: var(--dark-green);
}

.vip-stat small {
  font-size: clamp(12px, 1.6vw, 14px);
  line-height: 1.3;
  color: var(--text-light);
  opacity: 0.92;
}

.vip-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.vip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
  color: var(--text-light);
  text-decoration: none;
  background: var(--btn-gradient-indigo);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 204, 0, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.vip-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: saturate(1.05);
}

.vip-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

/* Адаптив */
@media (max-width: 1024px) {
  .vip-card {
    padding: 22px;
  }
  .vip-stats {
    gap: 12px;
  }
}

@media (max-width: 860px) {
  .vip-stats {
    grid-template-columns: 1fr;
  }
  .vip-actions {
    justify-content: center;
  }
  .vip-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 520px) {
  .vip-card {
    padding: 18px;
    border-radius: 16px;
  }
  .vip-title {
    text-align: left;
  }
  .vip-sub {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .vip-stat {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 6px;
  }
  .vip-stat b {
    justify-self: center;
  }
}
/* Layout */
.why-sloto {
  position: relative;
  padding: 56px 0 72px;
  background: radial-gradient(
      120% 120% at 15% -10%,
      rgba(255, 184, 0, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      80% 80% at 90% 10%,
      rgba(244, 244, 244, 0.05) 0%,
      transparent 65%
    ),
    var(--dark-bg);
  color: var(--text-light);
}

.why-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Head */
.why-pill {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--btn-gradient-indigo);
  border: 1px solid rgba(255, 204, 0, 0.6);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.why-title {
  margin: 14px 0 6px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--text-light);
}

.why-lead {
  color: var(--text-light);
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.7;
  margin: 0 0 24px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

/* Left card */
.why-copy {
  border-radius: 18px;
  padding: 22px 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 216, 120, 0.16);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.why-copy p {
  margin: 0 0 14px 0;
  color: #333;
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.75;
}

.why-copy b {
  color: var(--text-light);
}
.why-copy em {
  color: var(--secondary-gold);
  font-style: normal;
}
.why-copy .why-strong {
  margin-top: 10px;
  font-weight: 800;
  color: var(--text-light);
}

/* Right media */
.why-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin: 0;
  border: 1px solid rgba(255, 216, 120, 0.16);
  background: var(--medium-green);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
}

.why-media img {
  display: block;
  width: 100%;
  height: min(52vh, 520px);
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.why-tags {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.why-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.66rem;
  font-size: 0.82rem;
  border-radius: 999px;
  color: var(--text-light);
  background: var(--btn-gradient-indigo);
  border: 1px solid rgba(255, 204, 0, 0.55);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-media img {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .why-sloto {
    padding: 42px 0 56px;
  }
  .why-media img {
    height: 300px;
  }
  .why-copy {
    padding: 18px;
    border-radius: 16px;
  }
  .why-media {
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .why-tags {
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 6px;
  }
  .why-tags span {
    font-size: 0.78rem;
    padding: 0.36rem 0.58rem;
  }
}
.info-section {
  background: var(--dark-bg);
  padding: 60px 0 80px;
  color: var(--text-light);
}

.info-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.info-container h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--text-light);
}

.info-lead {
  color: #333;
  margin-bottom: 28px;
  font-size: 1rem;
}

.info-box {
  border: 1px solid rgba(255, 204, 0, 0.25);
  border-radius: 12px;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.info-tabs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.info-tab {
  flex: 1;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 204, 0, 0.35);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.info-tab.active,
.info-tab:hover {
  background: var(--btn-gradient-indigo);
  color: var(--text-light);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
}

.info-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(59, 59, 59, 0.08);
  font-size: 0.95rem;
  color: #333;
}

.info-table td:first-child {
  font-weight: 600;
  color: var(--secondary-gold);
  width: 38%;
}

.info-table a {
  color: var(--secondary-gold);
  text-decoration: none;
  font-weight: 600;
}

.info-footer {
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .info-tabs {
    flex-wrap: wrap;
  }
  .info-tab {
    flex: 1 1 48%;
  }
}

@media (max-width: 480px) {
  .info-tab {
    flex: 1 1 100%;
  }
  .info-table td {
    display: block;
    width: 100%;
  }
  .info-table tr {
    margin-bottom: 12px;
    display: block;
  }
}

.steps-section {
  padding: clamp(48px, 8vw, 88px) 0;
  color: var(--text-light);
}
.steps-container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}
.steps-head h2 {
  font-size: clamp(28px, 4.6vw, 48px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--text-light);
  letter-spacing: -0.01em;
}
.steps-lead {
  margin: 0 0 8px;
  color: #333;
}
.steps-note {
  margin: 8px 0 20px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 216, 128, 0.08),
    rgba(255, 216, 128, 0.03)
  );
  border: 1px solid rgba(247, 143, 52, 0.573);
  color: var(--text-light);
}

.steps-box {
  border: 1px solid rgba(255, 216, 128, 0.25);
  border-radius: 18px;
  background: radial-gradient(
      120% 140% at 10% 0%,
      rgba(247, 247, 247, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(237, 237, 237, 0.797), rgba(0, 0, 0, 0.12));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: clamp(14px, 2.8vw, 20px);
}

.step {
  border: 1px solid rgba(255, 216, 128, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  margin: clamp(10px, 1.4vw, 14px) 0;
  overflow: hidden;
}
.step[open] {
  background: linear-gradient(180deg, #ffffff, hwb(20 96% 0%));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(0, 0, 0, 0.35);
}
.step-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.step-summary::-webkit-details-marker {
  display: none;
}
.step-summary:focus {
  outline: none;
}
.step-summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(214, 166, 74, 0.35);
  border-radius: 10px;
}

.step-bullet {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-weight: 800;
  border-radius: 999px;
  color: #1a1a1a;
  background: linear-gradient(
    135deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.step-title {
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.01em;
}

.step-body {
  padding: 12px 16px 16px 56px;
  color: var(--text-light);
  opacity: 0.95;
  border-top: 1px dashed rgba(255, 216, 128, 0.22);
}

/* CTA */
.steps-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(14px, 3vw, 22px);
}
.steps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: #1a1a1a;
  background: var(--btn-gradient-blue);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 216, 128, 0.45);
}
.steps-btn:hover {
  transform: translateY(-1px);
}
.steps-btn:active {
  transform: none;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 900px) {
  .step-body {
    padding-left: 52px;
  }
}
@media (max-width: 640px) {
  .steps-head h2 {
    text-align: center;
  }
  .steps-lead,
  .steps-note {
    text-align: center;
  }
  .step-summary {
    padding: 14px;
  }
  .step-body {
    padding: 12px 14px 16px 50px;
  }
  .steps-btn {
    width: 100%;
    max-width: 320px;
  }
}
.faq-section {
  padding: clamp(40px, 6vw, 88px) 0;
  background: var(--dark-bg);
  color: var(--text-light);
}
.faq-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 32px);
}
.faq-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(250, 148, 71, 0.599);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.faq-head h2 {
  margin: 10px 0 6px;
  font-size: clamp(24px, 4.2vw, 40px);
  line-height: 1.12;
}
.faq-lead {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.faq-list {
  margin-top: clamp(18px, 3vw, 28px);
  display: grid;
  gap: 12px;
}
.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.faq-q {
  cursor: pointer;
  list-style: none;
  padding: 18px 18px 18px 54px;
  position: relative;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q::before {
  content: "＋";
  position: absolute;
  left: 18px;
  top: 18px;
  font-weight: 900;
  opacity: 0.8;
}
.faq-item[open] .faq-q::before {
  content: "—";
}
.faq-a {
  padding: 0 18px 18px 54px;
  opacity: 0.94;
}
.faq-a a {
  color: var(--danger-red);
  text-decoration: none;
}

@media (max-width: 720px) {
  .faq-q {
    padding: 16px 14px 16px 50px;
  }
  .faq-a {
    padding: 0 14px 16px 50px;
  }
  .faq-head h2 {
    font-size: clamp(22px, 6vw, 30px);
  }
  .faq-lead {
    font-size: 0.97rem;
  }
}
/* Payments section */
.pay-sec {
  padding: clamp(48px, 6vw, 84px) 0;
  background: var(--dark-bg);
  color: var(--text-light);
}
.pay-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}
.pay-left h2 {
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.pay-lead {
  color: #333;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  margin: 0 0 20px;
}
.pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 8px 0 18px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  color: var(--text-light);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.2s ease;
}
.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadowSoft);
}

.pay-bullets {
  margin: 14px 0 0;
  padding-left: 1.1em;
  display: grid;
  gap: 10px;
  font-size: 16px;
}
.pay-bullets li {
  line-height: 1.55;
  color: #333;
}

.pay-card {
  background: linear-gradient(180deg, var(--surface), var(--surfaceAlt));
  border: 1px solid rgba(214, 166, 74, 0.22);
  border-radius: 18px;
  padding: clamp(18px, 2.6vw, 26px);
  box-shadow: var(--shadow);
}
.pay-card h3 {
  font-size: clamp(20px, 2.6vw, 28px);
  margin: 0 0 8px;
  color: var(--text-light);
}
.pay-card p {
  margin: 0 0 10px;
  color: var(--textDim);
}
.card-list {
  margin: 8px 0 16px;
  padding-left: 1.1em;
  display: grid;
  gap: 8px;
}
.card-list li {
  line-height: 1.55;
}

.pay-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  color: #000;
  background: var(--btn-gradient-blue);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-ghost {
  color: var(--text-light);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
}
.btn-ghost:hover {
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .pay-wrap {
    grid-template-columns: 1fr;
  }
  .pay-card {
    order: 2;
  }
  .pay-left {
    order: 1;
  }
}
@media (max-width: 640px) {
  .pay-chips {
    justify-content: center;
  }
  .pay-cta {
    justify-content: center;
  }
  .pay-bullets {
    font-size: 15px;
  }
}
/* Responsible Play / Support */
.safe-sec {
  padding: clamp(48px, 6vw, 92px) 0;
  background: var(--dark-bg);
  color: var(--text-light);
}
.safe-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.safe-head {
  text-align: center;
  margin-bottom: clamp(24px, 4.2vw, 40px);
}
.safe-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(239, 165, 73, 0.647);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-light);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}
#safe-title {
  font-size: clamp(26px, 4.6vw, 44px);
  line-height: 1.1;
  margin: 0 0 10px;
}
.safe-lead {
  max-width: 920px;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.65;
  font-size: clamp(16px, 1.7vw, 18px);
}

.safe-grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 24px);
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(20px, 3vw, 28px);
}
.safe-card {
  background: linear-gradient(180deg, var(--light-green), var(--dark-bg));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(16px, 2.2vw, 22px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.safe-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.safe-card__hdr {
  display: flex;
  align-items: center;
  gap: 10px;
}
.safe-card__hdr .icon {
  font-size: 22px;
}
.safe-card h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
}

.safe-list {
  margin: 2px 0 6px;
  padding-left: 1.1em;
  display: grid;
  gap: 8px;
  color: var(--text-light);
  line-height: 1.55;
  font-size: 15.5px;
}
.safe-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Buttons */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.btn-primary {
  color: #000;
  background: var(--btn-gradient-blue);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
}
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-small {
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
}

/* Callout */
.safe-callout {
  margin-top: clamp(22px, 3.6vw, 36px);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.call-ico {
  font-size: 18px;
}
.call-body {
  flex: 1;
  color: var(--text-light);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 992px) {
  .safe-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .safe-head {
    text-align: left;
  }
  .safe-grid {
    grid-template-columns: 1fr;
  }
  .safe-callout {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
.site-footer {
  background: linear-gradient(180deg, var(--medium-green), var(--medium-green));
  color: var(--light-green);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.ft-title {
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: var(--highlight-color);
  text-transform: uppercase;
}
.ft-brand {
  grid-column: span 5;
}
.ft-legal {
  grid-column: span 4;
}
.ft-responsible {
  grid-column: span 3;
}

.ft-copy {
  margin: 0 0 12px;
  line-height: 1.7;
  color: rgba(255, 248, 225, 0.9); /* --text-light, слегка приглушённый */
}
.ft-copy.dim {
  color: rgba(255, 248, 225, 0.7);
}

.ft-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0 0;
  margin: 0;
  list-style: none;
}
.ft-badges li {
  border: 1px solid rgba(255, 216, 120, 0.35);
  color: var(--light-green);
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 216, 120, 0.08),
    rgba(255, 216, 120, 0.02)
  );
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) inset;
}

.ft-list {
  margin: 6px 0 10px;
  padding-left: 18px;
  color: rgba(255, 248, 225, 0.9);
}
.ft-list li {
  margin: 6px 0;
}

.ft-divider {
  height: 1px;
  max-width: 1200px;
  margin: 8px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 216, 120, 0.35),
    transparent
  );
}

.ft-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px 36px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.ft-small {
  font-size: 0.85rem;
  color: rgba(255, 248, 225, 0.7);
}

/* Subtle glow ring */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    60% 40% at 50% 0%,
    rgba(214, 166, 74, 0.18),
    transparent 70%
  );
  mix-blend-mode: screen;
}
.site-footer {
  position: relative;
  overflow: hidden;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .ft-brand {
    grid-column: span 6;
  }
  .ft-legal {
    grid-column: span 6;
  }
  .ft-responsible {
    grid-column: span 12;
  }
}
@media (max-width: 720px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 16px;
  }
  .ft-brand,
  .ft-legal,
  .ft-responsible {
    grid-column: 1 / -1;
  }
  .ft-bottom {
    padding: 12px 16px 28px;
  }
  .ft-badges {
    gap: 6px;
  }
  .ft-badges li {
    font-size: 0.8rem;
    padding: 6px 9px;
  }
}
