:root {
  /* Фоны */
  --bg: #0f1026;
  --bg-soft: #14153a;

  /* Основной акцент (Leebet orange) */
  --accent: #ff8a1e;
  --accent-dark: #e56f00;
  --accent-soft: #ffb469;

  /* Текст */
  --text: #f2f3ff;
  --muted: #9aa0ff;
}


/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.content a {
  color: #f3d18b;
  text-decoration: none;
  background-image: linear-gradient(
    to top,
    rgba(255, 193, 94, 0.25) 0%,
    rgba(255, 193, 94, 0.25) 100%
  );
  background-size: 100% 0.12em;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: all 0.25s ease;
}

.content a:hover {
  color: #ffffff;
  background-size: 100% 0.45em;
}

/* ================= HEADER ================= */

.header {
  background: linear-gradient(
    90deg,
    rgba(76, 26, 109, 0.92),
    rgba(24, 43, 92, 0.92)
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 138, 30, 0.18);
}


.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 42px;
  display: block;
}

/* NAV */

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  position: relative;
  margin: 0 16px;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* HEADER BUTTON */

.btn-header {
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-dark)
  );
  color: #1a0e00;
  box-shadow:
    0 0 18px rgba(255, 138, 30, 0.45),
    inset 0 0 8px rgba(255, 255, 255, 0.25);
}

.btn-header:hover {
  box-shadow:
    0 0 30px rgba(255, 138, 30, 0.75),
    inset 0 0 12px rgba(255, 255, 255, 0.35);
}


/* ================= HERO ================= */

.hero {
  background-image:
    linear-gradient(
      120deg,
      rgba(92, 24, 130, 0.85),
      rgba(28, 45, 110, 0.85),
      rgba(10, 80, 130, 0.85)
    ),
    url("/assets/images/hero-leebet.webp");

  background-size: cover;
  background-position: center;
}



.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1,
.content h1,
.content h2 {
  color: var(--accent);
}


.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

/* HERO BUTTONS */

.hero-buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-gold-big,
.btn-header,
.slot-btn {
  background: linear-gradient(
    180deg,
    #ff9a2f 0%,
    #ff7a18 50%,
    #e65f00 100%
  );
  color: #1a0e00;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 28px;

  box-shadow:
    0 10px 30px rgba(255, 122, 24, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    inset 0 -3px 6px rgba(0, 0, 0, 0.25);

  transition: all 0.25s ease;
}

.btn-gold-big:hover,
.btn-header:hover,
.slot-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 38px rgba(255, 122, 24, 0.65),
    inset 0 2px 0 rgba(255, 255, 255, 0.45);
}

.btn-gold-big:active,
.btn-header:active,
.slot-btn:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 18px rgba(255, 122, 24, 0.45),
    inset 0 2px 6px rgba(0, 0, 0, 0.35);
}



/* ================= CONTENT ================= */

.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content h1,
.content h2 {
  color: var(--gold);
  margin-top: 32px;
  margin-bottom: 12px;
}

.content p {
  color: var(--text);
  font-size: 16px;
}

/* ================= MIRROR PAGE ================= */

.mirror-box {
  padding: 100px 20px;
  text-align: center;
}

.mirror-links {
  margin-top: 32px;
}

.mirror-links a {
  margin: 0 12px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* ================= FOOTER ================= */

.footer {
  border-top: 1px solid #1e1e1e;
  text-align: center;
  padding: 24px 20px;
  font-size: 14px;
  color: #777;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 15px;
  }

  .btn-gold-big,
  .btn-outline {
    min-width: 100%;
  }

  .btn-header {
    padding: 9px 18px;
    font-size: 14px;
  }
}
/* ===== FIX mirror page spacing ===== */

.mirror-box h1 {
  margin-bottom: 18px;
}

.mirror-box p {
  margin-bottom: 32px;
  font-size: 17px;
  color: var(--muted);
}

.mirror-box .btn-gold-big {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .mirror-box {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/* ===== Site sections (navigation block) ===== */

.site-sections {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.site-sections h2 {
  color: var(--gold);
  text-align: center;
  margin-bottom: 32px;
}

.sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.section-card {
  background: linear-gradient(
    180deg,
    rgba(255, 138, 30, 0.06),
    rgba(15, 18, 45, 0.85)
  );
  border: 1px solid rgba(255, 138, 30, 0.18);
}

.section-card:hover {
  box-shadow: 0 0 28px rgba(255, 138, 30, 0.25);
}


.section-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-desc {
  font-size: 14px;
  color: var(--muted);
}
/* === FORCE FIX site sections === */

.site-sections {
  display: block;
}

.sections-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 20px !important;
}

.section-card {
  display: block !important;
  white-space: normal !important;
}
/* ===== Mirror CTA block ===== */

.mirror-cta {
  margin: 80px 0;
  padding: 0 20px;
}

.mirror-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 177, 74, 0.08),
    rgba(0, 0, 0, 0.6)
  );
  border: 1px solid rgba(255, 177, 74, 0.25);
  border-radius: 18px;
}

.mirror-cta-inner h2 {
  color: var(--gold);
  margin-bottom: 14px;
}

.mirror-cta-inner p {
  color: var(--muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 26px;
}
/* ===== Header menu improvement ===== */

.nav a {
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  color: var(--gold);
}

.nav a.active::after {
  width: 100%;
}

/* subtle header accent */
.header {
  box-shadow: 0 6px 30px rgba(0,0,0,0.45);
}
/* Ограничение ширины (если нет общего контейнера) */
.content-width {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Блок полезных ссылок */
.useful-links {
  margin: 60px 0;
  padding: 32px 28px;
  background: radial-gradient(
    circle at top,
    #151515 0%,
    #0b0b0b 70%
  );
  border: 1px solid rgba(255, 193, 94, 0.22);
  border-radius: 18px;
  box-shadow:
    0 0 40px rgba(255, 193, 94, 0.05),
    inset 0 0 30px rgba(0, 0, 0, 0.6);
}

/* Заголовок */
.useful-links h3 {
  margin-bottom: 26px;
  font-size: 21px;
  text-align: center;
  color: #ffc15e; /* золото как в лого */
  letter-spacing: 0.3px;
}

/* Сетка */
.useful-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

/* Кнопки-ссылки */
.useful-links-grid a {
  display: block;
  padding: 14px 18px;
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(255, 193, 94, 0.06),
    rgba(255, 193, 94, 0.02)
  );
  border: 1px solid rgba(255, 193, 94, 0.28);
  border-radius: 12px;
  color: #ffc15e;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Hover */
.useful-links-grid a:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 193, 94, 0.18),
    rgba(255, 193, 94, 0.08)
  );
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 193, 94, 0.25);
}
.lead {
  font-size: 18px;
  color: #f3d18b;
  margin-bottom: 24px;
  line-height: 1.6;
}

.text-block {
  margin-bottom: 26px;
}

.seo-list {
  margin: 20px 0 30px;
  padding-left: 20px;
}

.seo-list li {
  margin-bottom: 10px;
  color: #e6e6e6;
  position: relative;
}

.seo-list li::before {
  content: "•";
  color: #ffc15e;
  position: absolute;
  left: -14px;
}
.mini-faq {
  margin: 60px 0;
  padding: 34px 28px;
  background: linear-gradient(180deg, #0c0c0c, #141414);
  border: 1px solid rgba(255, 193, 94, 0.18);
  border-radius: 18px;
}

.mini-faq h2 {
  text-align: center;
  margin-bottom: 28px;
  color: #ffc15e;
  font-size: 22px;
}

.faq-item {
  margin-bottom: 22px;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #ffc15e;
}

.faq-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #e0e0e0;
}
/* ================= КНОПКА ВВЕРХ================= */
#scrollTopBtn {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  /* ЖЁСТКО задаём Leebet-оранжевый */
  background: linear-gradient(
    135deg,
    #ff7a18,
    #ff9a3c
  ) !important;

  color: #1a0e00 !important;
  font-size: 22px;
  font-weight: bold;

  border: none !important;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  /* убираем золотое свечение */
  box-shadow:
    0 6px 20px rgba(255, 122, 24, 0.45),
    inset 0 1px 4px rgba(255, 255, 255, 0.35) !important;

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.3s ease;

  z-index: 99999;
}

#scrollTopBtn.show {
  opacity: 0.7;
  transform: translateY(0);
  pointer-events: auto;
}

#scrollTopBtn:hover {
  opacity: 1;
  background: linear-gradient(
    135deg,
    #ff8f2b,
    #ffb067
  ) !important;

  box-shadow:
    0 8px 30px rgba(255, 143, 43, 0.75),
    inset 0 2px 6px rgba(255, 255, 255, 0.45) !important;
}
@media (max-width: 768px) {
  #scrollTopBtn {
    width: 42px;
    height: 42px;
    right: 16px;
    bottom: 18px;
    font-size: 20px;

    box-shadow:
      0 4px 16px rgba(255, 122, 24, 0.45),
      inset 0 1px 3px rgba(255, 255, 255, 0.35) !important;
  }
}



/* ================= ПЛАШКА С ВЫИГРАШЕМ================= */
.live-activity {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  z-index: 999;
  background: rgba(15, 15, 15, 0.96);
  border: 1px solid rgba(245, 178, 74, 0.28);
  color: #eaeaea;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  box-shadow: 0 12px 35px rgba(0,0,0,.65);
}

.live-activity.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.live-activity span {
  color: #f5b24a;
  font-weight: 600;
}

/* На мобилке можно скрыть */
@media (max-width: 768px) {
  .live-activity {
    display: none;
  }
}
/* ================= ПЛАШКА С ВЫИГРАШЕМ================= */

.status-bar {
  margin: 20px auto;
  max-width: 520px;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(245,178,74,.25);
  color: #eaeaea;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}
.status-bar span {
  color: #4caf50;
  font-weight: 600;
}
.status-bar {
  margin: 20px auto;
  max-width: 520px;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(245,178,74,.25);
  color: #eaeaea;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}

/* Цвет статуса */
.status-bar span {
  color: #4caf50;
  font-weight: 600;
}

/* ❌ Полностью отключаем на мобильных */
@media (max-width: 768px) {
  .status-bar {
    display: none !important;
  }
}
.casino-specs {
  margin: 60px 0;
}

.casino-specs h2 {
  margin-bottom: 20px;
  color: #f5b24a;
}

.casino-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15,15,15,0.9);
  border: 1px solid rgba(245,178,74,.25);
  border-radius: 12px;
  overflow: hidden;
}

.casino-table th,
.casino-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}

.casino-table th {
  width: 40%;
  text-align: left;
  color: #cfcfcf;
  font-weight: 500;
}

.casino-table td {
  color: #ffffff;
}

.casino-table tr:last-child th,
.casino-table tr:last-child td {
  border-bottom: none;
}

/* мобильная версия */
@media (max-width: 768px) {
  .casino-table th,
  .casino-table td {
    font-size: 13px;
    padding: 10px;
  }
}
.sticky-mirror-btn {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 999;

  background: linear-gradient(
    135deg,
    rgba(245, 178, 74, 0.85),
    rgba(216, 154, 43, 0.85)
  );

  color: #000;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0,0,0,.45);

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .4s ease,
    transform .4s ease,
    filter .3s ease;

  pointer-events: none;
}

/* появление */
.sticky-mirror-btn.show {
  opacity: 0.9; /* 👈 лёгкая прозрачность */
  transform: translateY(0);
  pointer-events: auto;
}

/* hover — становится ярче */
.sticky-mirror-btn:hover {
  filter: brightness(1.1);
  opacity: 1;
}
/* ================= Интерактив «Крутить бонус»================= */
.slot-box {
  margin: 60px auto;
  max-width: 900px;
  padding: 24px;
  text-align: center;
  background: rgba(15,15,15,.85);
  border: 1px solid rgba(245,178,74,.25);
  border-radius: 16px;
}

.slot-box h2 {
  color: #f5b24a;
  margin-bottom: 20px;
}

/* слот */
.slot-machine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.reel {
  height: 64px;
  overflow: hidden;
  background: #0f0f0f;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  font-size: 36px;
  line-height: 64px;
}

/* кнопки */
.slot-btn {
  background: linear-gradient(135deg,#f5b24a,#d89a2b);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.slot-result {
  margin-top: 14px;
  color: #eaeaea;
}

.slot-claim {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg,#f5b24a,#d89a2b);
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

/* 📱 мобилка */
@media (max-width: 600px) {
  .slot-machine {
    grid-template-columns: repeat(3, 1fr);
  }
  .reel {
    font-size: 30px;
    height: 56px;
    line-height: 56px;
  }
}
/* ❌ по умолчанию кнопка скрыта */
.slot-claim {
  display: none;
}

/* ✅ показываем ТОЛЬКО при выигрыше */
.slot-claim.show {
  display: inline-block;
}


@media (max-width: 768px) {

  .slot-box {
    padding: 16px;
    margin: 30px 12px;
  }

  .slot-box h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .slot-machine {
    gap: 8px;
    margin-bottom: 12px;
  }

  .reel {
    height: 48px;
    font-size: 26px;
    line-height: 48px;
    border-radius: 10px;
  }

}
@media (max-width: 768px) {

  .slot-btn,
  .slot-claim {
    width: 100%;
    max-width: 260px;
    margin: 10px auto 0;
    display: block;
  }

}
@media (max-width: 768px) {

  .slot-claim {
    font-size: 14px;
    padding: 10px 16px;
    opacity: 0.9;
  }

}
@media (max-width: 360px) {
  .slot-box {
    display: none;
  }
}
/* по умолчанию скрыт */
.slot-mobile {
  display: none;
}

/* ❌ полностью отключаем слот-блок на мобильных */
@media (max-width: 768px) {
  .slot-box {
    display: none !important;
  }
}


/* ================= Интерактив «Крутить бонус»================= */

/* ===== LEEBET BUTTONS (dark orange + white text) ===== */

.btn-gold-big,
.btn-header,
.slot-btn {
  background: linear-gradient(
    180deg,
    #ff7a18 0%,
    #e35c00 55%,
    #c94f00 100%
  );

  color: #ffffff !important;
  font-weight: 700;
  font-size: 16px;

  border-radius: 14px;
  padding: 14px 30px;
  border: none;

  box-shadow:
    0 10px 28px rgba(255, 122, 24, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    inset 0 -3px 6px rgba(0, 0, 0, 0.35);

  transition: all 0.25s ease;
}
.btn-gold-big:hover,
.btn-header:hover,
.slot-btn:hover {
  background: linear-gradient(
    180deg,
    #ff8f2b 0%,
    #f26a00 55%,
    #d85a00 100%
  );

  transform: translateY(-1px);

  box-shadow:
    0 14px 38px rgba(255, 122, 24, 0.65),
    inset 0 2px 0 rgba(255, 255, 255, 0.35);
}
.btn-gold-big:active,
.btn-header:active,
.slot-btn:active {
  transform: translateY(1px);

  box-shadow:
    0 6px 18px rgba(255, 122, 24, 0.45),
    inset 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btn-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  padding: 14px 26px;
  background: transparent;

  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
}
.btn-gold-big,
.btn-header,
.btn-outline,
.slot-btn {
  text-decoration: none !important;
}
.hero h1 {
  display: inline-block;
  margin: 0 auto 20px;
  padding: 16px 32px;

  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(255, 122, 24, 0.18),
    rgba(255, 122, 24, 0.06)
  );

  border-radius: 18px;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.45);
}
.hero p {
  color: rgba(235, 240, 255, 0.92);
  font-size: 17px;
  line-height: 1.65;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.45);
}
.slot-box {
  background: linear-gradient(
    180deg,
    rgba(20, 20, 60, 0.65),
    rgba(10, 15, 40, 0.8)
  );
}

.slot-machine {
  opacity: 0.85;
}

.reel {
  opacity: 0.9;
}
/* ===== LEEBET BUTTONS — semi-transparent ===== */

.btn-gold-big,
.btn-header,
.slot-btn {
  background: linear-gradient(
    180deg,
    rgba(255, 122, 24, 0.92) 0%,
    rgba(227, 92, 0, 0.92) 55%,
    rgba(201, 79, 0, 0.92) 100%
  );
}
.btn-gold-big:hover,
.btn-header:hover,
.slot-btn:hover {
  background: linear-gradient(
    180deg,
    rgba(255, 143, 43, 0.97) 0%,
    rgba(242, 106, 0, 0.97) 55%,
    rgba(216, 90, 0, 0.97) 100%
  );
}
.hero h1 {
  display: block;
  width: fit-content;

  margin: 0px auto 22px; /* auto = центр, 24px = опускаем вниз */

  text-align: center;
}
.hero-inner {
  padding-top: 40px;
}
.hero h1 {
  color: #ffffff !important;
}
.casino-table a {
  color: #ff9a2f !important;
  text-decoration: none;
  font-weight: 500;
}

.casino-table a:hover {
  color: #ffb55a;
  text-decoration: underline;
}
.mini-faq a,
.faq-item a,
.content a {
  color: #ff9a2f;
  text-decoration: none;
  font-weight: 500;
}
/* ===== TOP NAV HOVER EFFECT ===== */

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #7f6cff,
    #4fc3ff
  );
  opacity: 0;
  transform: scaleX(0.6);
  transition: all 0.25s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
/* ===== PRIMARY BUTTONS — PURPLE / BLUE STYLE ===== */

.btn-gold-big,
.btn-header {
  background: linear-gradient(
    180deg,
    #6f63ff 0%,
    #4b5cff 55%,
    #2e3fae 100%
  );

  color: #ffffff !important;

  box-shadow:
    0 10px 30px rgba(90, 95, 255, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    inset 0 -3px 6px rgba(0, 0, 0, 0.35);
}
.btn-gold-big:hover,
.btn-header:hover {
  background: linear-gradient(
    180deg,
    #8076ff 0%,
    #5a6cff 55%,
    #3848c9 100%
  );

  box-shadow:
    0 14px 38px rgba(90, 95, 255, 0.65),
    inset 0 2px 0 rgba(255, 255, 255, 0.35);
}
.slot-box h2 {
  color: rgba(255, 255, 255, 0.95) !important;
}
/* ===== SLOT BUTTON — PURPLE / BLUE STYLE ===== */

.slot-btn {
  background: linear-gradient(
    180deg,
    #6f63ff 0%,
    #4b5cff 55%,
    #2e3fae 100%
  );

  color: #ffffff !important;
  font-weight: 700;
  font-size: 16px;

  border-radius: 14px;
  padding: 14px 36px;
  border: none;

  box-shadow:
    0 10px 30px rgba(90, 95, 255, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    inset 0 -3px 6px rgba(0, 0, 0, 0.35);

  transition: all 0.25s ease;
}
.slot-btn:hover {
  background: linear-gradient(
    180deg,
    #8076ff 0%,
    #5a6cff 55%,
    #3848c9 100%
  );

  transform: translateY(-1px);

  box-shadow:
    0 14px 38px rgba(90, 95, 255, 0.65),
    inset 0 2px 0 rgba(255, 255, 255, 0.35);
}
.slot-btn:active {
  transform: translateY(1px);

  box-shadow:
    0 6px 18px rgba(90, 95, 255, 0.45),
    inset 0 3px 6px rgba(0, 0, 0, 0.4);
}
.useful-links {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.85)
  );

  backdrop-filter: blur(2px);
}
.useful-links a {
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.55),
    rgba(10, 10, 10, 0.75)
  );

  border: 1px solid rgba(255, 154, 47, 0.35);
}
.useful-links a:hover {
  background: linear-gradient(
    180deg,
    rgba(25, 25, 25, 0.75),
    rgba(15, 15, 15, 0.9)
  );

  border-color: rgba(255, 154, 47, 0.55);
}
.useful-links a:hover {
  transform: translateY(-1px);
}
.useful-links a:hover {
  transform: translateY(-1px);
}
.useful-links h3 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 24px;

  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.45);
}
.useful-links a {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );

  color: #ffb55a;

  border-radius: 14px;
  padding: 14px 18px;

  border: 1px solid rgba(255, 154, 47, 0.25);

  text-decoration: none;

  transition: all 0.25s ease;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 6px 18px rgba(0, 0, 0, 0.35);
}
.useful-links a:hover {
  color: #ffffff;

  background: linear-gradient(
    180deg,
    rgba(111, 99, 255, 0.25),
    rgba(75, 92, 255, 0.15)
  );

  border-color: rgba(111, 99, 255, 0.55);

  transform: translateY(-2px);

  box-shadow:
    0 14px 34px rgba(90, 95, 255, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
/* ===== USEFUL LINKS CARDS — WHITE TEXT BY DEFAULT ===== */

.useful-links a {
  color: #ffffff !important;
}
/* ===== LEGAL INFO BLOCK ===== */

.legal-info {
  margin-top: 60px;
  padding: 28px 20px;

  background: linear-gradient(
    180deg,
    rgba(10, 12, 35, 0.85),
    rgba(5, 7, 20, 0.95)
  );

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-inner {
  max-width: 1200px;
  margin: 0 auto;

  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.legal-inner p {
  margin-bottom: 10px;
}

.legal-inner strong {
  color: #ffffff;
  font-weight: 500;
}

.legal-inner a {
  color: #ffb55a;
  text-decoration: none;
}

.legal-inner a:hover {
  text-decoration: underline;
}

.legal-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.legal-icons .age {
  width: 36px;
  height: 36px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 13px;
  color: #ffffff;

  background: linear-gradient(
    180deg,
    #6f63ff,
    #4b5cff
  );
}

.legal-icons .license {
  font-size: 16px;
  color: #6fff9f;
}
