/* =====================================
   GLOBAL STYLES — WPLAY COLOR THEME
   ===================================== */

:root {
  /* --- Wplay Brand Palette --- */
  --site-bg-darkest: #000A1A;        /* тёмный глубокий фон */
  --site-bg-dark: #021E44;           /* тёмно-синий */
  --site-bg-light: #E6F1FF;          /* светлый текст/фон */
  --site-border: #1A2C47;            /* холодный сине-серый бордер */
  --site-text: #E6F1FF;              /* светлый текст */

  /* --- Accent colors --- */
  --site-accent: #0A3B90;            /* фирменный синий Wplay */
  --site-accent-light: #1557C0;      /* hover акцент */
  --site-accent-hover: #1E6DFF;      /* ещё светлее при наведении */
  --site-highlight: #FBC02D;         /* фирменный золотой */

  /* --- Layout & Typography --- */
  --site-radius: 8px;
  --site-font: 'Inter', 'Segoe UI', Roboto, sans-serif;
  --site-line-height: 1.65;
  --site-transition: 0.25s ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- HTML / Body --- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: linear-gradient(
      180deg,
      #021E44 0%,
      #0A3B90 100%
  );
  color: var(--site-text);
  font-family: var(--site-font);
  font-size: 1rem;
  line-height: var(--site-line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 88px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: #FBC02D; /* заголовки золотым */
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

p, li, td, th {
  color: #D7E6FF;
  font-weight: 400;
}

a {
  color: var(--site-highlight); /* золотой */
  text-decoration: none;
  transition: color var(--site-transition), opacity var(--site-transition);
}

a:hover {
  color: var(--site-accent-light); /* светлее синий */
  opacity: 0.9;
}

/* =====================================
   LAYOUT & CONTAINERS
   ===================================== */
.container {
  width: 100%;
  margin-inline: auto;
}

.section {
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--site-border);
  padding: 60px 0;
}

/* =====================================
   MEDIA QUERIES
   ===================================== */
@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
    padding-top: 70px;
  }

  h1 {
    font-size: 1.75rem;
  }
}

/* =====================================
   HEADER — Premium, unified, adaptive
   ===================================== */

body {
  padding-top: 70px;
  transition: background 0.3s ease;
}

body.menu-open {
  overflow: hidden;
}

/* --- Основной контейнер --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #021A3A 90%, #031124); /* глубокий тёмно-синий без фиолетовых тонов */
  border-bottom: 1px solid rgba(255, 214, 90, 0.25); /* золотистый мягкий отблеск */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.header.is-hidden {
  transform: translateY(-100%);
}

/* --- Внутренний блок --- */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 28px;
  min-height: 68px;
}

/* --- Логотип --- */
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 214, 90, 0.35)); /* мягкое золотистое свечение */
  transition: filter 0.3s ease;
}
.header-logo img:hover {
  filter: drop-shadow(0 0 12px rgba(255, 214, 90, 0.75)); /* ярче при наведении */
}

/* =====================================
   HEADER LOGO — Gold Deep Blue Style
   ===================================== */

.header-logo a {
  display: inline-block;
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFD65A; /* золотистый */
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(251, 192, 45, 0.35); /* золото-свечение */
}

.header-logo a:hover {
  color: #FFF7D1; /* почти белое золото */
  text-shadow: 0 0 16px rgba(255, 214, 90, 0.85);
  transform: scale(1.03);
}

.header-logo a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #FFD65A, #0A3B90); /* золото → фирменный синий */
  border-radius: 2px;
  transition: width 0.35s ease;
}

.header-logo a:hover::after {
  width: 100%;
}

/* адаптив */
@media (max-width: 768px) {
  .header-logo a {
    font-size: 1.3rem;
    letter-spacing: 0.4px;
  }
}

/* =====================================
   BUTTONS — Wplay Blue + Gold
   ===================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

/* --- Primary (Registrarse / Sign Up) --- */
.btn-primary {
  background: #0A3B90; /* главный фирменный синий */
  color: #FFF7D1; /* золотисто-белый текст */
}
.btn-primary:hover {
  background: #1E6DFF; /* яркий неон-синий hover */
}
.btn-primary:active {
  background: #5C95FF; /* мягкое голубое нажатие */
}

/* --- Ghost (Ingresar / Login) --- */
.btn-ghost {
  background: #031124; /* глубокий тёмно-синий */
  color: #FFD65A; /* золотой текст */
  border: 1px solid #0A3B90; /* синий контур */
}
.btn-ghost:hover {
  background: #062042; /* подсветка */
  border-color: #1E6DFF; /* яркий синий при наведении */
}
.btn-ghost:active {
  background: #021A3A;
}

/* =====================================
   BURGER — Wplay Gold Deep Blue
   ===================================== */

.burger {
  position: relative;
  z-index: 2001;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 214, 90, 0.35); /* золотой мягкий контур */
  background: #031124; /* глубокий тёмно-синий */
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.burger:hover {
  background: #062042; /* чуть светлее navy */
  border-color: rgba(255, 214, 90, 0.55);
}

.burger:focus-visible {
  outline: 2px solid #FBC02D;
  outline-offset: 2px;
}

.burger-box {
  position: relative;
  width: 20px;
  height: 16px;
}

.burger-line,
.burger-line::before,
.burger-line::after {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #FFF6D0; /* тёплая светлая линия вместо голубой */
  content: "";
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger-line {
  top: 50%;
  transform: translateY(-50%);
}
.burger-line::before {
  top: -6px;
}
.burger-line::after {
  top: 6px;
}

/* --- Открытое состояние (крестик) --- */
.burger[aria-expanded="true"] {
  background: #FBC02D; /* золотой */
  border-color: #FBC02D;
  transform: rotate(90deg);
}
.burger[aria-expanded="true"] .burger-line {
  transform: rotate(45deg);
}
.burger[aria-expanded="true"] .burger-line::before {
  opacity: 0;
}
.burger[aria-expanded="true"] .burger-line::after {
  transform: rotate(-90deg);
}
.burger[aria-expanded="true"] .burger-line,
.burger[aria-expanded="true"] .burger-line::before,
.burger[aria-expanded="true"] .burger-line::after {
  background: #031124; /* тёмный navy на крестике */
}

/* =====================================
   MOBILE MENU — Wplay Gold Deep Blue
   ===================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 100vh;
  background: #021A3A; /* глубокий navy */
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  z-index: 999;
  padding-top: 80px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* открытое состояние */
.mobile-menu.is-open {
  transform: translateY(0);
  border-top: 1px solid rgba(255, 214, 90, 0.25); /* золотой акцент */
}

/* затемнение фона */
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  backdrop-filter: blur(3px);
  transition: opacity 0.3s ease;
}

/* --- логотип --- */
.mobile-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0 10px;
  background: #031124;
  border-bottom: 1px solid rgba(255, 214, 90, 0.22);
}

/* =====================================
   MOBILE LOGO — Gold Glow
   ===================================== */

.mobile-logo a {
  display: inline-block;
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFD65A; /* золото */
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 0 6px rgba(255, 214, 90, 0.35); /* золотое свечение */
}

.mobile-logo a:hover {
  color: #FFF6D0;
  text-shadow: 0 0 14px rgba(255, 214, 90, 0.75);
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .mobile-logo a {
    font-size: 1.2rem;
  }
}

.mobile-logo img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255, 214, 90, 0.35));
}

/* --- список ссылок --- */
.mobile-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  padding: 22px 18px 120px;
}

.mobile-link {
  display: block;
  background: #062042; /* глубокий navy-blue */
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #FFF6D0; /* тёплый светлый текст */
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.mobile-link:hover {
  background: #FBC02D; /* золото */
  border-color: #FBC02D;
  color: #031124;
  transform: translateY(-2px);
}

/* --- нижние кнопки --- */
.mobile-actions {
  padding: 18px;
  display: grid;
  gap: 12px;
  background: #021A3A;
  position: sticky;
  bottom: 0;
  border-top: 1px solid rgba(255, 214, 90, 0.15);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.mobile-actions .btn {
  border-radius: 5px;
  font-size: 0.9rem;
}

.mobile-actions .btn:hover {
  color: #FFD65A;
}

/* анимация */
.mobile-menu.is-open .mobile-link {
  animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1080px) {
  .mobile-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
  }
  .mobile-link {
    font-size: 16px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .mobile-list {
    grid-template-columns: 1fr;
  }
  .mobile-link {
    font-size: 15px;
  }
}

body:not(.menu-open)::before {
  opacity: 0;
  pointer-events: none;
}

/* =====================================
   HERO SECTION — Wplay Gold Eclipse Style
   ===================================== */

.page-hero-simple {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 10%;
  background: linear-gradient(
    90deg,
    #041A33 0%,
    #031124 40%,
    #020C19 100%
  ); /* глубокий золотисто-синий градиент */
  border-bottom: 1px solid rgba(255, 214, 90, 0.25); /* золотая грань */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.page-hero-simple p {
  color: #FFE9A6; /* мягкий теплый текст */
}

.page-hero-simple h1 {
  color: #FFD65A; /* золотой заголовок */
}

/* --- gold glow вместо голубого --- */
.page-hero-simple::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255, 214, 90, 0.22) 0%, transparent 70%),
              radial-gradient(circle at 10% 80%, rgba(252, 200, 120, 0.18) 0%, transparent 75%);
  opacity: 0.9;
  pointer-events: none;
}

/* --- left content --- */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  z-index: 1;
}

/* --- breadcrumbs --- */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  color: #FFF6D0;
}

.breadcrumbs a {
  color: #FBC02D; /* золотой акцент */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.breadcrumbs a:hover {
  color: #FFD65A;
}

.breadcrumbs span {
  color: #FFE9A6;
  font-weight: 500;
}

.breadcrumbs .current {
  color: #FFF6D0;
  font-weight: 700;
}

/* --- Title small span --- */
.page-hero-simple span {
  color: #FFD65A;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

/* --- CTA Button (Gold + Wplay Blue) --- */
.hero-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FBC02D 0%, #FFD65A 100%);
  color: #031124;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 28px;
  border-radius: 6px;
  border: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(252, 200, 90, 0.25);
}

.hero-btn:hover {
  background: linear-gradient(180deg, #FFD65A 0%, #FBC02D 100%);
  box-shadow: 0 6px 16px rgba(255, 214, 90, 0.35);
  color: #041A33;
}

.hero-btn:active {
  background: #FFD65A;
  transform: scale(0.97);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .page-hero-simple {
    flex-direction: column;
    gap: 10px;
    padding: 24px 20px;
  }

  .hero-left {
    align-items: flex-start;
    gap: 6px;
  }

  .breadcrumbs {
    font-size: 0.78rem;
  }

  .hero-btn {
    align-self: center;
    padding: 8px 26px;
    font-size: 0.85rem;
  }
}
/* =====================================
   ARTICLE BODY — Wplay Gold Eclipse Style
   ===================================== */

.article-body {
  max-width: 880px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  color: #FFE9A6; /* тёплый светлый текст вместо холодного */
  font-size: 1.06rem;
  line-height: 1.8;
  letter-spacing: 0.1px;
  background-color: transparent;
  font-family: var(--site-font);
}

/* --- Headings --- */
.article-body h1,
.article-body h2,
.article-body h3 {
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 22px;
  font-weight: 700;
  color: #FFF6D0; /* золотисто-белые заголовки */
  text-wrap: balance;
}

/* --- Главный заголовок --- */
.article-body h1 {
  font-size: clamp(2rem, 4.8vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  color: #FFD65A; /* золотой */
  letter-spacing: 0.2px;
  line-height: 1.25;
  border-bottom: 2px solid rgba(255, 214, 90, 0.45);
  padding-bottom: 14px;
}

/* --- Второй уровень --- */
.article-body h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 700;
  color: #FBC02D; /* чистое золото */
  padding-left: 14px;
  border-left: 3px solid rgba(255, 214, 90, 0.55);
  background: linear-gradient(90deg, rgba(255, 214, 90, 0.12), transparent);
  border-radius: 2px;
}

/* --- Третий уровень --- */
.article-body h3 {
  position: relative;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFE9A6;
  margin-top: 44px;
  padding-top: 10px;
  letter-spacing: 0.3px;
}
.article-body h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: #FBC02D;
  border-radius: 2px;
}

/* --- Paragraphs --- */
.article-body p {
  margin-bottom: 20px;
  color: #F7ECCD; /* мягкий теплый */
}

.article-body strong {
  color: #FFD65A; /* золото для выделения */
  font-weight: 700;
}

/* --- Links --- */
.article-body a {
  color: #FBC02D; /* золото */
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 214, 90, 0.45);
  transition: all 0.25s ease;
}
.article-body a:hover {
  color: #FFD65A;
  border-color: rgba(255, 214, 90, 0.75);
}

/* --- Images --- */
.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 26px auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* --- Lists --- */
.article-body ul,
.article-body ol {
  margin: 24px 0 32px 28px;
  padding: 0;
}

.article-body li {
  margin-bottom: 10px;
  line-height: 1.75;
  color: #FFE9A6;
}

.article-body ul li::marker {
  color: #FBC02D; /* золотые маркеры */
}

.article-body ol li::marker {
  color: #FFD65A;
}

/* --- Tables (basic) --- */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 0.95rem;
}

.article-body th,
.article-body td {
  border: 1px solid rgba(255, 214, 90, 0.1);
  padding: 10px 14px;
  text-align: left;
}

.article-body th {
  background: #041A33;
  color: #FFD65A;
  font-weight: 700;
}

.article-body tr:nth-child(even) {
  background: #031124;
}

/* =====================================
   ARTICLE BODY — Wplay Gold Eclipse table style
   ===================================== */

.article-body table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 36px 0;
  font-size: 0.95rem;
  background: #020C19; /* глубокий тёмный */
  border: 1px solid rgba(255, 214, 90, 0.35);
  border-radius: var(--site-radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.article-body thead {
  background: linear-gradient(180deg, #041A33 0%, #020C19 100%);
}

.article-body th {
  padding: 14px 18px;
  text-align: left;
  color: #FFD65A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 214, 90, 0.35);
  white-space: nowrap;
}

.article-body td {
  padding: 12px 18px;
  color: #FFF6D0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.25s ease;
}

.article-body tr:nth-child(even) {
  background: #031124;
}

.article-body tr:hover td {
  background: rgba(255, 214, 90, 0.12);
}

/* --- Rounded corners --- */
.article-body table tr:first-child th:first-child {
  border-top-left-radius: var(--site-radius);
}
.article-body table tr:first-child th:last-child {
  border-top-right-radius: var(--site-radius);
}
.article-body table tr:last-child td:first-child {
  border-bottom-left-radius: var(--site-radius);
}
.article-body table tr:last-child td:last-child {
  border-bottom-right-radius: var(--site-radius);
}

/* --- Responsive Tables --- */
@media (max-width: 768px) {
  .article-body table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 8px;
  }

  .article-body th,
  .article-body td {
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* =====================================
   QUOTES — Wplay Gold Eclipse Style
   ===================================== */

.article-body blockquote {
  background: #041A33; /* глубокий синий */
  border-left: 4px solid #FBC02D; /* золото слева */
  margin: 28px 0;
  padding: 18px 22px;
  font-style: italic;
  color: #FFE9A6; /* тёплый светлый текст */
  border-radius: var(--site-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.article-body blockquote p:last-child {
  margin-bottom: 0;
}

/* =====================================
   IMAGES & FIGURES — Wplay Gold Contrast
   ===================================== */

.article-body img {
  display: block;
  margin: 32px auto;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  max-height: 300px;
}

.article-body figure {
  text-align: center;
  margin: 36px 0;
}

.article-body figcaption {
  color: #FFD65A; /* золотистая подпись вместо голубой */
  font-size: 0.9rem;
  margin-top: 8px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .article-body {
    font-size: 1rem;
    padding: 5px 16px 60px;
  }

  .article-body h1 {
    font-size: 1.8rem;
  }

  .article-body h2 {
    font-size: 1.4rem;
    padding-left: 10px;
  }

  .article-body h3 {
    font-size: 1rem;
  }
}

/* =====================================
   FAQ SECTION — Wplay Gold Premium Q&A
   ===================================== */

.faq-list {
  max-width: 860px;
  margin: 0 auto 90px;
  padding: 0 20px;
}

/* --- Заголовок блока --- */
.faq-list h2 {
  text-align: center;
  color: #FFD65A; /* золото */
  font-size: clamp(1.6rem, 4vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #FBC02D, #FFD65A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Item --- */
.faq-item {
  background: #020C19; /* глубокий чёрно-синий */
  border-radius: var(--site-radius);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 214, 90, 0.25); /* золотой контур */
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 214, 90, 0.55);
  background: #041A33; /* чуть светлее navy */
}

/* --- Summary --- */
.faq-item summary {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  color: #FFF6D0; /* золотисто-белый */
  padding: 18px 48px 18px 20px;
  background: #031124; 
  border-radius: var(--site-radius);
  transition: background 0.3s ease, color 0.3s ease;
  list-style: none;
  user-select: none;
}

.faq-item summary:hover {
  background: #062042;
  color: #FFD65A; /* золото */
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* --- Icon (+ / -) --- */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #FBC02D; /* золотой плюс */
  font-weight: 800;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
  opacity: 0.9;
}

.faq-item[open] summary::after {
  content: "–";
  color: #FFD65A; /* светлое золото */
  transform: translateY(-50%) rotate(180deg);
}

/* --- Content --- */
.faq-content {
  padding: 0 20px 18px;
  font-size: 15.5px;
  color: #FFE9A6; /* тёплый текст */
  line-height: 1.65;
  border-top: 1px solid rgba(255, 214, 90, 0.12);
  background: #020C19;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-item summary {
    padding: 14px 40px 14px 16px;
    font-size: 15px;
  }
  .faq-content {
    font-size: 15px;
  }
}

/* =====================================
   AUTHOR CARD — Wplay Gold Eclipse Style
   ===================================== */

.author-card {
  max-width: 860px;
  margin: 80px auto 100px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: #020C19; /* глубокий navy-black */
  border: 1px solid rgba(255, 214, 90, 0.25); /* золотая рамка */
  border-radius: var(--site-radius);
  color: #FFE9A6;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.author-card:hover {
  border-color: #FFD65A;
  background: #041A33; /* подсветка navy */
}

/* --- Фото --- */
.author-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FBC02D; /* золото */
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 214, 90, 0.25);
}

/* --- Текст --- */
.author-info {
  flex: 1;
}

.author-name {
  color: #FFD65A;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.author-bio {
  font-size: 15px;
  line-height: 1.65;
  color: #FFF6D0;
  margin-bottom: 10px;
}

/* --- Ссылка --- */
.author-info a {
  color: #FBC02D;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 214, 90, 0.35);
  transition: all 0.25s ease;
}

.author-info a:hover {
  color: #FFD65A;
  border-color: rgba(255, 214, 90, 0.55);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .author-card {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 22px;
  }

  .author-photo {
    width: 78px;
    height: 78px;
  }

  .author-name {
    font-size: 1.05rem;
  }

  .author-bio {
    font-size: 14px;
  }
}

/* =====================================
   FOOTER — Wplay Gold Eclipse Premium
   ===================================== */

.footer {
  background: #020C19;
  padding: 60px 20px;
  color: #FFE9A6;
  border-top: 1px solid rgba(255, 214, 90, 0.25);
  position: relative;
}

.footer .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* --- Заголовки колонок --- */
.footer h5 {
  color: #FFD65A;
  font-size: 1.05rem;
  margin-bottom: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 2px solid #FBC02D;
  display: inline-block;
  padding-bottom: 4px;
}

/* --- Списки ссылок --- */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
  margin-right: 5px;
}

.footer-list a {
  color: #FFD65A;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.footer-list a:hover {
  color: #FFF6D0;
  border-color: rgba(255, 214, 90, 0.4);
}

/* --- Текст подвала --- */
.footer p {
  margin-top: 12px;
  font-size: 14px;
  color: #F7ECCD;
  line-height: 1.5;
}

/* --- Низ подвала --- */
.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 214, 90, 0.25);
  font-size: 13.5px;
  color: #FFF6D0;
}

.footer-bottom a {
  color: #FFD65A;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: #FBC02D;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer h5 {
    font-size: 1rem;
  }

  .footer p {
    font-size: 13.5px;
  }
}

/* =====================================
   FLOATING CTA — Wplay Gold Eclipse
   ===================================== */

.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FBC02D 0%, #FFD65A 100%); /* золото */
  color: #020C19; /* тёмный navy */
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 26px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(255, 214, 90, 0.35);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  z-index: 999;
}

.floating-cta:hover {
  background: linear-gradient(180deg, #FFD65A 0%, #FBC02D 100%);
  box-shadow: 0 8px 22px rgba(255, 214, 90, 0.45);
  color: #041A33;
}

.floating-cta:active {
  background: #FFD65A;
  box-shadow: 0 4px 10px rgba(255, 214, 90, 0.3);
  color: #020C19;
}

/* Animation */
@keyframes fadeInCta {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.floating-cta {
  animation: fadeInCta 0.6s ease 0.2s both;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 18px;
    padding: 8px 28px;
    font-size: 0.78rem;
    border-radius: 34px;
    box-shadow: 0 5px 14px rgba(255, 214, 90, 0.3);
  }
}

/* =====================================
   BASE FORM STYLES — Wplay Gold Eclipse
   ===================================== */

form {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  background: #020C19; /* глубокий navy-black */
  border: 1px solid rgba(255, 214, 90, 0.25); /* золото */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  color: #FFF6D0;
  font-size: 15px;
}

/* --- Labels --- */
label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #FFD65A; /* золото */
  line-height: 1.3;
}

/* --- Input fields --- */
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 214, 90, 0.25);
  border-radius: 8px;
  background: #031124;
  color: #FFE9A6;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #FBC02D;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 214, 90, 0.35);
}

/* --- Textarea --- */
textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Checkbox --- */
input[type="checkbox"] {
  accent-color: #FBC02D; /* золото */
  margin-right: 6px;
}

/* --- Row --- */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.form-field {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

/* --- Submit button --- */
.form-actions {
  margin-top: 22px;
  text-align: center;
}

.form-actions .button {
  font-size: 15px;
  padding: 10px 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FBC02D 0%, #FFD65A 100%); /* золото */
  color: #020C19;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.form-actions .button:hover {
  background: linear-gradient(180deg, #FFD65A 0%, #FBC02D 100%);
  box-shadow: 0 3px 10px rgba(255, 214, 90, 0.35);
  color: #041A33;
}

.form-actions .button:active {
  background: #FFD65A;
  box-shadow: 0 2px 6px rgba(255, 214, 90, 0.25);
}

/* --- Small text --- */
.text-muted {
  margin-top: 10px;
  font-size: 13px;
  color: #FFE9A6;
  line-height: 1.4;
}

label a {
  color: #FBC02D;
  text-decoration: underline;
}
label a:hover {
  color: #FFD65A;
}

/* --- Responsive --- */
@media (max-width: 600px) {
  form {
    padding: 18px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .form-field {
    margin-bottom: 12px;
  }
}

/* =====================================
   TOC — Wplay Gold Eclipse
   ===================================== */

#toc {
  background: #020C19;
  border: 1px solid rgba(251, 192, 45, 0.35); /* gold */
  border-radius: 10px;
  padding: 22px 26px;
  margin: 40px auto;
  max-width: 760px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

#toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 26px;
}

#toc li {
  margin-bottom: 10px;
}

/* Links */
#toc a {
  color: #FFD65A; /* gold */
  text-decoration: none;
  position: relative;
  padding-left: 14px;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Arrow */
#toc a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #FBC02D;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}

#toc a:hover {
  color: #FFE9A6;
  transform: translateX(3px);
}
#toc a:hover::before {
  color: #FFD65A;
  transform: translateX(5px);
}

/* Title */
#toc h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: #FFD65A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-bottom: 2px solid #FBC02D;
  display: inline-block;
  padding-bottom: 4px;
}

@media (max-width: 768px) {
  #toc {
    padding: 16px 18px;
  }
  #toc ul {
    columns: 1;
  }
  #toc a {
    display: inline-block;
    font-size: 15px;
  }
}

/* =====================================
   SCROLLBAR & SELECTION — Gold Eclipse
   ===================================== */

::selection {
  background: #FBC02D;
  color: #020C19;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #020C19;
}

::-webkit-scrollbar-thumb {
  background: #FBC02D;
  border-radius: 6px;
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFD65A;
}

/* =====================================
   PAGE FADE-IN
   ===================================== */

.main-content,
.header,
.footer {
  animation: fadePage 0.6s ease;
}

@keyframes fadePage {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

a, button, summary {
  transition: all 0.25s ease;
}

/* =======================================
   CASINO CARDS — Wplay Gold Edition
   ======================================= */

.casino-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- CARD ---------- */
.casino-card {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  position: relative;

  background: radial-gradient(120% 120% at 70% 20%, rgba(255, 214, 90, 0.08), transparent 60%),
              linear-gradient(145deg, #031124 0%, #041A33 40%, #020C19 100%);

  border: 1px solid rgba(251, 192, 45, 0.25);
  box-shadow: 0 0 30px rgba(251, 192, 45, 0.08), inset 0 0 25px rgba(0,0,0,0.6);
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}

/* GOLD BORDER ANIMATION */
.casino-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1.5px;

  background: linear-gradient(115deg,
    #FBC02D, #FFD65A, #FFE9A6, #FBC02D, #FFD65A);
  background-size: 400% 400%;
  animation: borderGlow 7s linear infinite;

  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  opacity: 0.9;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(251, 192, 45, 0.3),
              0 0 70px rgba(255, 214, 90, 0.25);
}

/* ---------- STRUCTURE ---------- */

.casino-card-inner {
  display: grid;
  grid-template-columns: 200px 1fr 250px;
  align-items: center;
  gap: 32px;
  padding: 26px 38px;
  position: relative;
  z-index: 2;
}

/* ---------- LEFT ---------- */

.casino-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #FFD65A;
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 214, 90, 0.45);
  transition: all 0.3s ease;
}

.casino-left:hover {
  color: #FFE9A6;
  text-shadow: 0 0 14px rgba(255, 214, 90, 0.7);
  transform: scale(1.03);
}

.casino-left img {
  max-width: 200px;
}

/* LOGO */
.casino-logo {
  width: 130px;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(255, 214, 90, 0.4);
  background: linear-gradient(180deg, #041A33, #020C19);
  padding: 4px 6px;
  transition: transform 0.25s ease;
}
.casino-card:hover .casino-logo {
  transform: scale(1.03);
}

/* Rating */
.casino-rating {
  text-align: center;
  font-size: 13px;
  color: #D8CFA6;
}
.casino-rating span {
  color: #FFD65A;
  font-size: 18px;
  margin-bottom: 2px;
  display: block;
  text-shadow: 0 0 8px rgba(255, 214, 90, 0.4);
}

/* ---------- CENTER ---------- */

.casino-center {
  color: #FFE9A6;
  font-size: 15px;
  line-height: 1.6;
}

.casino-desc {
  color: #FFF6D0;
  font-weight: 600;
  margin-bottom: 8px;
}

.casino-center ul {
  list-style: none;
  padding: 0;
}

.casino-center li {
  margin-bottom: 4px;
  color: #D8CFA6;
  position: relative;
  padding-left: 12px;
}

.casino-center li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #FFD65A;
  font-size: 10px;
  top: 3px;
}

/* Payments */
.casino-payments img {
  height: 22px;
  opacity: 0.9;
  transition: all 0.25s ease;
}
.casino-payments img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ---------- RIGHT ---------- */

.casino-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Bonus box */
.bonus-box {
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 214, 90, 0.15), rgba(251, 192, 45, 0.20));
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.05),
              0 0 12px rgba(255,214,90,0.15);
}

.bonus-amount {
  color: #FFD65A;
  font-weight: 700;
  font-size: 17px;
  text-shadow: 0 0 10px rgba(255, 214, 90, 0.4);
}
.bonus-fs {
  color: #FFE9A6;
  font-weight: 700;
  font-size: 16px;
}

/* Button */
.btn-play {
  background: linear-gradient(90deg, #FBC02D, #FFD65A);
  color: #020C19;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 36px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 0 20px rgba(255, 214, 90, 0.25);
  transition: all 0.3s ease;
}

.casino-card:hover .btn-play {
  background: linear-gradient(90deg, #FFD65A, #FBC02D);
  box-shadow: 0 0 30px rgba(255,214,90,0.45);
  transform: translateY(-1px);
}

/* RESP */
@media (max-width: 900px) {
  .casino-card-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .bonus-box,
  .btn-play {
    max-width: 280px;
    width: 100%;
  }
}

/* ---- Sitemap ---- */
.sitemap-page {
  text-align: center;
}

.sitemap-list {
  background: #020C19;
  padding: 10px 0px;
}

.sitemap-list ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 14px 20px;
}

.sitemap-list a {
  display: block;
  background: rgba(251, 192, 45, 0.08);
  border: 1px solid rgba(251, 192, 45, 0.25);
  border-radius: 10px;
  padding: 10px 16px;
  color: #FFE9A6;
  font-weight: 500;
  transition: all 0.25s ease;
}

.sitemap-list a:hover {
  background: rgba(255, 214, 90, 0.15);
  border-color: rgba(251, 192, 45, 0.45);
  color: #FFF6D0;
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(251, 192, 45, 0.25);
}
