/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Exo 2', sans-serif;
  background: #020025;
  color: #e8e8ff;
  line-height: 1.6;
  font-size: 16px;
}

/* ===== CSS VARIABLES ===== */
:root {
  --yellow: #FAFF06;
  --dark: #070126;
  --white: #FFFFFF;
  --purple: #D702DC;
  --bg-dark: #020025;
  --bg-card: #111031;
  --border: rgba(250,255,6,0.18);
  --border-purple: rgba(215,2,220,0.3);
  --shadow-yellow: 0 0 20px rgba(250,255,6,0.4);
  --shadow-purple: 0 0 20px rgba(215,2,220,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --header-h: 72px;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: 'Rajdhani', sans-serif; line-height: 1.2; overflow-wrap: anywhere; word-break: break-word; }
p { overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  min-width: 0;
}

/* ===== SECTION COMMON ===== */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), #a000a5);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.section-title span { color: var(--yellow); }
.section-desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(232,232,255,0.75);
  max-width: 680px;
}

/* ===== MEDIA CARD ===== */
.mediaCard {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  max-width: 100%;
}
.mediaCard img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
  object-fit: contain;
  max-height: 480px;
  transition: transform 0.3s ease;
}
.mediaCard:hover img { transform: scale(1.02); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
  text-align: center;
}
.btn--primary {
  background: linear-gradient(135deg, var(--yellow) 0%, #d4d800 100%);
  color: #0a0020;
  box-shadow: 0 4px 20px rgba(250,255,6,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  border: 2px solid transparent;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(250,255,6,0.65), inset 0 1px 0 rgba(255,255,255,0.25);
  background: linear-gradient(135deg, #fff44f 0%, var(--yellow) 100%);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(250,255,6,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  box-shadow: 0 0 12px rgba(250,255,6,0.15);
}
.btn--ghost:hover {
  background: rgba(250,255,6,0.1);
  box-shadow: 0 0 24px rgba(250,255,6,0.3);
  transform: translateY(-2px);
}
.btn--xl { font-size: 1.05rem; padding: 15px 36px; min-height: 54px; }
.btn--glow {
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(250,255,6,0.45); }
  50% { box-shadow: 0 4px 40px rgba(250,255,6,0.8), 0 0 60px rgba(250,255,6,0.3); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2,0,37,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img {
  max-height: 44px;
  width: auto;
  max-width: 160px;
  display: block;
}
.header__nav { flex: 1; overflow: hidden; }
.header__nav-list {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.header__nav-list::-webkit-scrollbar { display: none; }
.header__nav-link {
  color: rgba(232,232,255,0.8);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}
.header__nav-link:hover, .header__nav-link.nav-link--highlight {
  color: var(--yellow);
  background: rgba(250,255,6,0.08);
}
.header__actions { display: flex; gap: 10px; flex-shrink: 0; }
.header__actions .btn { min-height: 38px; padding: 8px 18px; font-size: 0.85rem; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.3s;
}
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.header__mobile-menu {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(2,0,37,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  z-index: 999;
}
.header__mobile-menu.open { display: block; }
.header__mobile-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.header__mobile-nav a {
  color: rgba(232,232,255,0.85);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  display: block;
  transition: all 0.2s;
}
.header__mobile-nav a:hover { color: var(--yellow); background: rgba(250,255,6,0.08); }
.header__mobile-actions { display: flex; flex-direction: column; gap: 10px; }
.header__mobile-actions .btn { width: 100%; }

/* ===== HERO ===== */
.hero { position: relative; background: var(--dark); overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(215,2,220,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(250,255,6,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero__bg-image {
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  position: relative;
}
.hero__banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 0 70px;
  text-align: center;
}
.hero__inner { max-width: 780px; margin: 0 auto; }
.hero__label {
  display: inline-block;
  background: rgba(215,2,220,0.2);
  border: 1px solid var(--border-purple);
  color: var(--purple);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease both;
}
.hero__title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  animation: fadeInDown 0.7s ease 0.1s both;
}
.hero__amount {
  color: var(--yellow);
  text-shadow: 0 0 40px rgba(250,255,6,0.6);
}
.hero__spins {
  color: var(--purple);
  text-shadow: 0 0 40px rgba(215,2,220,0.6);
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(232,232,255,0.85);
  margin-bottom: 36px;
  animation: fadeInDown 0.7s ease 0.2s both;
}
.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease 0.3s both;
}
.hero__trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 0.7s ease 0.4s both;
}
.hero__trust-item {
  color: rgba(232,232,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ADVANTAGES ===== */
.advantages {
  background: var(--bg-dark);
  padding: 80px 0;
}
.advantages__header { text-align: center; margin-bottom: 50px; }
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s ease;
  min-width: 0;
}
.adv-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(250,255,6,0.12);
  transform: translateY(-4px);
}
.adv-card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.adv-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.adv-card__text { color: rgba(232,232,255,0.7); font-size: 0.92rem; margin-bottom: 14px; }
.adv-card__link { color: var(--yellow); font-size: 0.85rem; font-weight: 700; transition: opacity 0.2s; }
.adv-card__link:hover { opacity: 0.8; }

/* ===== PROMO ===== */
.promo {
  background: linear-gradient(180deg, var(--dark) 0%, var(--bg-card) 100%);
  padding: 80px 0;
}
.promo__header { text-align: center; margin-bottom: 50px; }
.promo__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 50px;
  min-width: 0;
}
.promo__featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), #a000a5);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.promo__featured-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.promo__featured-title span { color: var(--yellow); }
.promo__featured-desc { color: rgba(232,232,255,0.75); margin-bottom: 20px; font-size: 0.95rem; }
.promo__featured-list { margin-bottom: 28px; }
.promo__featured-list li {
  color: rgba(232,232,255,0.85);
  font-size: 0.92rem;
  padding: 4px 0;
  font-weight: 500;
}
.promo__featured-image { min-width: 0; }
.promo__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.promo-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 0;
}
.promo-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}
.promo-card__icon { font-size: 2rem; margin-bottom: 8px; }
.promo-card__type {
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.promo-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.promo-card__desc { color: rgba(232,232,255,0.65); font-size: 0.88rem; }

/* ===== HOW TO ===== */
.howto { background: var(--bg-dark); padding: 80px 0; }
.howto__header { text-align: center; margin-bottom: 50px; }
.howto__steps { max-width: 800px; margin: 0 auto 48px; }
.howto__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.howto__step:hover { border-color: var(--yellow); }
.howto__step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.8;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}
.howto__step-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.howto__step-content p { color: rgba(232,232,255,0.7); font-size: 0.92rem; }
.howto__cta { text-align: center; }
.howto__note { color: rgba(232,232,255,0.45); font-size: 0.8rem; margin-top: 12px; }

/* ===== CASINO ===== */
.casino { background: var(--dark); padding: 80px 0; }
.casino__header { text-align: center; margin-bottom: 40px; }
.casino__image { margin-bottom: 48px; }
.casino__categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.cat-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 0;
}
.cat-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-4px);
}
.cat-card__icon { font-size: 2rem; margin-bottom: 10px; }
.cat-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.cat-card p { color: rgba(232,232,255,0.65); font-size: 0.88rem; }
.casino__providers { text-align: center; margin-bottom: 36px; }
.casino__providers-title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.casino__providers-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.provider-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: rgba(232,232,255,0.75);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}
.provider-badge:hover { border-color: var(--yellow); color: var(--yellow); }
.casino__text { max-width: 860px; margin: 0 auto 36px; }
.casino__text p { color: rgba(232,232,255,0.7); font-size: 0.95rem; margin-bottom: 14px; }
.casino__cta { text-align: center; }

/* ===== MOBILE SECTION ===== */
.mobile-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(215,2,220,0.08) 100%);
  padding: 80px 0;
  border-top: 1px solid var(--border-purple);
  border-bottom: 1px solid var(--border-purple);
}
.mobile-section__content .section-title { margin-bottom: 20px; }
.mobile-section__content p { color: rgba(232,232,255,0.75); margin-bottom: 16px; font-size: 0.95rem; }
.mobile-section__features { margin-bottom: 28px; }
.mobile-section__features li {
  color: rgba(232,232,255,0.8);
  font-size: 0.92rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(250,255,6,0.06);
}
.mobile-section__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== PAYMENTS ===== */
.payments { background: var(--bg-dark); padding: 80px 0; }
.payments__header { text-align: center; margin-bottom: 48px; }
.payments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.3s;
  min-width: 0;
}
.payment-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-yellow); transform: translateY(-3px); }
.payment-card__icon { font-size: 2rem; margin-bottom: 10px; }
.payment-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.payment-card p { color: rgba(232,232,255,0.65); font-size: 0.88rem; margin-bottom: 12px; }
.payment-card__tag {
  display: inline-block;
  background: rgba(250,255,6,0.12);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.payments__info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 36px;
}
.payments__info-item { font-size: 0.9rem; color: rgba(232,232,255,0.75); }
.payments__info-item strong { color: var(--yellow); }
.payments__cta { text-align: center; }

/* ===== SUPPORT ===== */
.support {
  background: linear-gradient(180deg, var(--dark) 0%, var(--bg-dark) 100%);
  padding: 80px 0;
}
.support__header { text-align: center; margin-bottom: 48px; }
.support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  min-width: 0;
}
.support-card:hover { border-color: var(--purple); box-shadow: var(--shadow-purple); transform: translateY(-4px); }
.support-card__icon { font-size: 2.5rem; margin-bottom: 14px; }
.support-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.support-card p { color: rgba(232,232,255,0.7); font-size: 0.9rem; margin-bottom: 20px; }
.support__extra { max-width: 760px; margin: 0 auto; text-align: center; color: rgba(232,232,255,0.6); font-size: 0.92rem; }

/* ===== FAQ ===== */
.faq { background: var(--bg-dark); padding: 80px 0; }
.faq__header { text-align: center; margin-bottom: 48px; }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item.open { border-color: var(--yellow); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--yellow); }
.faq__arrow { font-size: 0.75rem; color: var(--yellow); flex-shrink: 0; transition: transform 0.3s; }
.faq__item.open .faq__arrow { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq__answer p { color: rgba(232,232,255,0.7); font-size: 0.92rem; padding-bottom: 20px; }
.faq__item.open .faq__answer { max-height: 300px; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #0e0040 0%, var(--dark) 50%, #1a0050 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(215,2,220,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.final-cta__badge {
  display: inline-block;
  background: rgba(215,2,220,0.2);
  border: 1px solid var(--border-purple);
  color: var(--purple);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.final-cta__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta__desc { color: rgba(232,232,255,0.75); font-size: 1rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta__bonus {
  background: rgba(250,255,6,0.08);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 20px 32px;
  margin-bottom: 32px;
  display: inline-block;
}
.final-cta__bonus-text { color: rgba(232,232,255,0.7); font-size: 0.85rem; margin-bottom: 6px; }
.final-cta__bonus-amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--yellow);
  text-shadow: var(--shadow-yellow);
}
.final-cta .btn { display: block; width: 100%; max-width: 440px; margin: 0 auto 14px; }
.final-cta__disclaimer { color: rgba(232,232,255,0.4); font-size: 0.78rem; margin-bottom: 28px; }
.final-cta__image { max-width: 700px; margin: 0 auto; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__logo { display: block; margin-bottom: 16px; }
.footer__logo img { max-height: 48px; width: auto; max-width: 180px; }
.footer__tagline { color: rgba(232,232,255,0.5); font-size: 0.9rem; line-height: 1.6; }
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.footer__col h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  color: rgba(232,232,255,0.55);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--yellow); }
.footer__middle {
  text-align: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.footer__payments-title { color: rgba(232,232,255,0.5); font-size: 0.8rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer__payment-icons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pay-icon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: rgba(232,232,255,0.6);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}
.footer__responsible { padding: 28px 0; border-bottom: 1px solid var(--border); }
.footer__resp-icons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 16px; }
.resp-badge {
  background: rgba(215,2,220,0.12);
  border: 1px solid var(--border-purple);
  color: rgba(232,232,255,0.6);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}
.footer__license { color: rgba(232,232,255,0.35); font-size: 0.75rem; line-height: 1.6; text-align: center; max-width: 900px; margin: 0 auto; }
.footer__bottom {
  text-align: center;
  padding: 20px 0;
  color: rgba(232,232,255,0.3);
  font-size: 0.8rem;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== CATFISH ===== */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, rgba(7,1,38,0.97) 0%, rgba(17,16,49,0.97) 100%);
  border-top: 2px solid var(--yellow);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(250,255,6,0.2);
  transition: transform 0.4s ease;
}
.catfish.hidden { transform: translateY(110%); }
.catfish__inner {
  max-width: calc(var(--container) - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 100%;
}
.catfish__text {
  flex: 1;
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  color: rgba(232,232,255,0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.catfish__btn { flex-shrink: 0; min-height: 38px; padding: 8px 18px; font-size: 0.85rem; }
.catfish__close {
  background: none;
  border: none;
  color: rgba(232,232,255,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
}
.catfish__close:hover { color: var(--white); }

/* ===== EXIT POPUP ===== */
.exit-popup { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
.exit-popup.active { display: flex; }
.exit-popup__overlay { position: absolute; inset: 0; background: rgba(2,0,37,0.88); backdrop-filter: blur(6px); cursor: pointer; }
.exit-popup__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--dark) 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 480px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 0 60px rgba(250,255,6,0.25);
  animation: popIn 0.3s ease;
}
@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.exit-popup__close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: rgba(232,232,255,0.5);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.exit-popup__close:hover { color: var(--white); }
.exit-popup__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), #a000a5);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.exit-popup__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.exit-popup__title span { color: var(--yellow); }
.exit-popup__bonus {
  color: rgba(232,232,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.exit-popup__bonus strong { color: var(--yellow); }
.exit-popup__btn { width: 100%; margin-bottom: 12px; }
.exit-popup__note { color: rgba(232,232,255,0.35); font-size: 0.75rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo__featured { grid-template-columns: 1fr; }
  .promo__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .casino__categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header__nav { display: none; }
  .header__actions { display: none; }
  .header__burger { display: flex; }
  .advantages__grid { grid-template-columns: 1fr; gap: 16px; }
  .promo__grid { grid-template-columns: 1fr; }
  .casino__categories { grid-template-columns: 1fr; }
  .payments__grid { grid-template-columns: 1fr; }
  .support__grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn { width: 100%; }
  .mobile-section__btns { flex-direction: column; }
  .mobile-section__btns .btn { width: 100%; }
  .howto__step { flex-direction: column; gap: 12px; }
  .howto__step-num { min-width: auto; }
  .catfish__text { white-space: normal; }
  .payments__info { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .advantages { padding: 50px 0; }
  .promo { padding: 50px 0; }
  .howto { padding: 50px 0; }
  .casino { padding: 50px 0; }
  .mobile-section { padding: 50px 0; }
  .payments { padding: 50px 0; }
  .support { padding: 50px 0; }
  .faq { padding: 50px 0; }
  .final-cta { padding: 60px 0; }
  .footer__links { grid-template-columns: 1fr; }
  .promo__featured { padding: 24px 18px; }
  .hero__content { padding: 40px 0 50px; }
  .faq__question { padding: 16px 18px; font-size: 0.92rem; }
  .footer__bottom { flex-direction: column; gap: 6px; }
  .header__logo-img { max-height: 36px; }
  .catfish__inner { flex-wrap: nowrap; }
  .catfish__text { font-size: 0.75rem; }
  .catfish__btn { padding: 8px 12px; font-size: 0.78rem; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
}
.slotoro-deepdive {
background: linear-gradient(180deg, #050132 0%, #0a0140 100%);
color: #e8e8ff;
padding: 3rem 1rem;
font-family: 'Exo 2', sans-serif;
line-height: 1.65;
border-top: 1px solid rgba(250, 255, 6, 0.18);
border-bottom: 1px solid rgba(215, 2, 220, 0.3);
}
.slotoro-deepdive * {
box-sizing: border-box;
}
.slotoro-deepdive__header {
max-width: 60rem;
margin: 0 auto 2.5rem;
text-align: left;
padding: 0 0.25rem;
}
.slotoro-deepdive__eyebrow {
display: inline-block;
background: linear-gradient(135deg, #d702dc, #a000a5);
color: #fff;
font-size: 0.7rem;
font-weight: 800;
letter-spacing: 0.15em;
padding: 0.35rem 0.9rem;
border-radius: 1.2rem;
text-transform: uppercase;
margin-bottom: 1rem;
}
.slotoro-deepdive__title {
font-family: 'Rajdhani', sans-serif;
font-size: clamp(1.5rem, 5vw, 2.4rem);
font-weight: 700;
color: #fff;
margin: 0 0 1rem;
line-height: 1.2;
}
.slotoro-deepdive__lead {
font-size: 1rem;
color: rgba(232, 232, 255, 0.85);
margin: 0;
max-width: 45rem;
}
.slotoro-deepdive__lead strong {
color: #faff06;
font-weight: 700;
}
.slotoro-deepdive__block {
max-width: 60rem;
margin: 0 auto 1.75rem;
background: rgba(17, 16, 49, 0.65);
border: 1px solid rgba(250, 255, 6, 0.12);
border-radius: 0.9rem;
padding: 1.5rem 1.25rem;
position: relative;
}
.slotoro-deepdive__block::before {
content: '';
position: absolute;
top: 0;
left: 1.25rem;
width: 2.5rem;
height: 2px;
background: linear-gradient(90deg, #faff06, transparent);
border-radius: 2px;
}
.slotoro-deepdive__h3 {
font-family: 'Rajdhani', sans-serif;
font-size: clamp(1.2rem, 3.5vw, 1.55rem);
font-weight: 700;
color: #fff;
margin: 0 0 0.85rem;
line-height: 1.25;
}
.slotoro-deepdive__h4 {
font-family: 'Rajdhani', sans-serif;
font-size: clamp(1.05rem, 2.8vw, 1.2rem);
font-weight: 600;
color: #faff06;
margin: 1.25rem 0 0.6rem;
line-height: 1.3;
}
.slotoro-deepdive__block p {
font-size: 0.95rem;
color: rgba(232, 232, 255, 0.78);
margin: 0 0 0.85rem;
}
.slotoro-deepdive__block p:last-child {
margin-bottom: 0;
}
.slotoro-deepdive__block strong {
color: #faff06;
font-weight: 700;
}
.slotoro-deepdive__block em {
color: #ffb1ff;
font-style: normal;
font-weight: 600;
}
.slotoro-deepdive__list {
margin: 0.75rem 0 0;
padding-left: 0;
list-style: none;
counter-reset: deepdive-counter;
}
.slotoro-deepdive__list li {
position: relative;
padding: 0.45rem 0 0.45rem 1.75rem;
font-size: 0.92rem;
color: rgba(232, 232, 255, 0.82);
border-bottom: 1px solid rgba(250, 255, 6, 0.06);
}
.slotoro-deepdive__list li:last-child {
border-bottom: none;
}
ol.slotoro-deepdive__list li::before {
counter-increment: deepdive-counter;
content: counter(deepdive-counter);
position: absolute;
left: 0;
top: 0.45rem;
width: 1.3rem;
height: 1.3rem;
background: linear-gradient(135deg, #faff06, #d4d800);
color: #0a0020;
font-family: 'Rajdhani', sans-serif;
font-weight: 700;
font-size: 0.8rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
ul.slotoro-deepdive__list li::before {
content: '';
position: absolute;
left: 0.35rem;
top: 0.95rem;
width: 0.5rem;
height: 0.5rem;
background: #d702dc;
border-radius: 50%;
box-shadow: 0 0 0.6rem rgba(215, 2, 220, 0.6);
}
.slotoro-deepdive__table {
width: 100%;
border-collapse: collapse;
margin: 1rem 0;
font-size: 0.88rem;
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.slotoro-deepdive__table thead {
background: linear-gradient(135deg, rgba(215, 2, 220, 0.25), rgba(160, 0, 165, 0.25));
}
.slotoro-deepdive__table th {
font-family: 'Rajdhani', sans-serif;
font-size: 0.85rem;
font-weight: 700;
color: #faff06;
letter-spacing: 0.05em;
text-transform: uppercase;
padding: 0.75rem 0.85rem;
text-align: left;
border-bottom: 2px solid rgba(250, 255, 6, 0.25);
white-space: nowrap;
}
.slotoro-deepdive__table td {
padding: 0.75rem 0.85rem;
border-bottom: 1px solid rgba(250, 255, 6, 0.08);
vertical-align: top;
color: rgba(232, 232, 255, 0.8);
}
.slotoro-deepdive__table tr:last-child td {
border-bottom: none;
}
.slotoro-deepdive__table tbody tr:hover {
background: rgba(250, 255, 6, 0.04);
}
.slotoro-deepdive__aside {
max-width: 60rem;
margin: 0 auto 1.75rem;
background: linear-gradient(135deg, rgba(215, 2, 220, 0.12), rgba(7, 1, 38, 0.6));
border: 1px solid rgba(215, 2, 220, 0.3);
border-left: 3px solid #d702dc;
border-radius: 0.9rem;
padding: 1.5rem 1.25rem;
box-shadow: 0 0 1.5rem rgba(215, 2, 220, 0.1);
}
.slotoro-deepdive__aside .slotoro-deepdive__h3 {
color: #faff06;
margin-bottom: 0.75rem;
}
.slotoro-deepdive__footer {
max-width: 60rem;
margin: 2rem auto 0;
padding: 1.25rem 1.25rem 0;
border-top: 1px dashed rgba(250, 255, 6, 0.18);
text-align: center;
}
.slotoro-deepdive__footer p {
font-size: 0.9rem;
color: rgba(232, 232, 255, 0.6);
margin: 0;
}
.slotoro-deepdive__footer em {
color: #d702dc;
font-style: normal;
font-weight: 600;
}
@media (min-width: 48rem) {
.slotoro-deepdive {
padding: 4.5rem 2rem;
}
.slotoro-deepdive__block {
padding: 2rem 2rem;
}
.slotoro-deepdive__block::before {
width: 4rem;
}
.slotoro-deepdive__aside {
padding: 2rem 2rem;
}
.slotoro-deepdive__list li {
font-size: 0.95rem;
}
.slotoro-deepdive__table {
display: table;
overflow-x: visible;
font-size: 0.92rem;
}
.slotoro-deepdive__table th,
.slotoro-deepdive__table td {
padding: 0.9rem 1.1rem;
}
}
@media (min-width: 64rem) {
.slotoro-deepdive {
padding: 5rem 2.5rem;
}
.slotoro-deepdive__header {
margin-bottom: 3rem;
}
.slotoro-deepdive__lead {
font-size: 1.05rem;
}
.slotoro-deepdive__block p {
font-size: 1rem;
}
}