:root {
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body-bg: #0A0A1A;
  --color-bg: #0A0A1A;
  --color-bg-alt: #0A0A1A;
  --color-surface: #111827;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-text: #e5e7eb;
  --color-muted: #5D5FA8;
  --color-border: #1f2937;
  --container-width: 1920px;
  --radius-base: 12px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-main);
  background: var(--body-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

/* Responsive typography for content headings */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffffe0;
}

h1 { font-size: clamp(26px, 2.4vw, 40px); }
h2 { font-size: clamp(22px, 2.0vw, 34px); }
h3 { font-size: clamp(20px, 1.7vw, 28px); }
h4 { font-size: clamp(18px, 1.4vw, 24px); }
h5 { font-size: clamp(16px, 1.2vw, 20px); }
h6 { font-size: clamp(14px, 1.0vw, 18px); }

@media (max-width: 640px) {
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 20px; }
  h4 { font-size: 18px; }
  h5 { font-size: 16px; }
  h6 { font-size: 14px; }
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 8px 0 16px;
  font-size: 13px;
  color: var(--color-muted);
}

.breadcrumbs a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumbs a:hover {
  color: #e5e7eb;
}

.breadcrumbs span[property="name"] {
  color: #e5e7eb;
}

.breadcrumbs .breadcrumb_last,
.breadcrumbs span[property="itemListElement"]:last-child span[property="name"] {
  color: #e5e7eb;
  font-weight: 500;
}

.breadcrumbs .separator {
  margin: 0 6px;
  color: rgba(148, 163, 184, 0.8);
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.25s ease;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 240px;
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 15;
  backdrop-filter: blur(18px);
  /* По умолчанию свернут, видна полоса с кнопкой */
  transform: translateX(calc(-100%));
  transition: transform 0.25s ease;
}

.page--sidebar-open .sidebar {
  transform: translateX(0);
}

.page--sidebar-open {
  margin-left: 240px;
}

.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sidebar__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar__title {
  font-size: 14px;
  font-weight: 600;
}

.sidebar__toggle {
  border: none;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  color: var(--color-muted);
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  background: #0E0E24;
  border-radius: 10px;
  padding: 10px;
}
.sidebar__nav ul{
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar__nav a {
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--color-muted);
  text-decoration: none;
}

.sidebar__nav a:hover {
  color: #e5e7eb;
}

.sidebar-fab {
  position: fixed;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 14;
}

.page--sidebar-open .sidebar-fab {
  display: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav__link {
  font-size: 14px;
  text-decoration: none;
  color: var(--color-muted);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #6366f1, #ec4899);
  transition: width 0.2s ease;
}

.nav__link:hover {
  color: #e5e7eb;
}

.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.header-quick-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 6px;
}

.header-quick-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.header-quick-menu__icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: rgba(229, 231, 235, 0.9);
}

.header-quick-menu__link:hover {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(148, 163, 184, 0.35);
}

.header__actions-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__balance-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 13px;
}

.header__balance-main {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__balance-value {
  font-weight: 600;
}

.header__balance-limit {
  color: var(--color-muted);
  font-size: 12px;
}

.header-game-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;

  text-decoration: none;
  color: var(--color-text);
}

.header-game-link__image {
  border-radius: 10px;
}

.header-game-link__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-game-link__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.header-game-link__title {
  font-size: 12px;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-game-link__level {
  padding: 0 6px;
  border-radius: 999px;
  background: #1f2937;
  font-size: 10px;
  color: #22c55e;
  text-transform: uppercase;
}

.header-game-link__progress {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #1f2937;
  overflow: hidden;
}

.header-game-link__progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #4ade80);
}

.header__search {
  position: relative;
  margin-right: auto;
}
.header-search-input {
  width: 200px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: #131430;
  color: var(--color-text);
  font-size: 16px;
}

.header-search-input::placeholder {
  color: var(--color-muted);
}

.header-search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.header__logo--mobile {
  display: none;
}

.sidebar__search {
  position: relative;
  margin-bottom: 8px;
}

.sidebar-search-input {
  width: 100%;
  padding: 8px 32px 8px 10px;
  border-radius: 999px;
  border: none;
  background: #131430;
  color: var(--color-text);
  font-size: 14px;
}

.sidebar-search-input::placeholder {
  color: var(--color-muted);
}

.sidebar-search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.main {
  flex: 1;
}

.hero {
  padding: 20px 0 72px;
}

.hero__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.hero__content {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 64px 36px;
  border-radius: 24px;
  color: var(--color-text);;
  background: url("../img/freepik__neutral-background-of-the-phoenix-universe-a-large__7856 1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: bold;
 
}
.hero__content:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/freepik__-this-digital-illustration-exemplifies-a-vibrant-h__5291-Photoroom\ 2\ 2.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  z-index: 1;
}
.hero__content:after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 274px;
  height:237px;
  background: url("../img/image\ 1007.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  z-index: 1;
 
}

.hero__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.1;
  z-index: 2;
}

.hero__title-gradient {
  background-image:
    linear-gradient(180deg, #E5913B 0%, #E56E3B 100%),
    linear-gradient(277.54deg, #EE5F22 39.7%, #EE7722 92.65%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 2;
}

.hero__subtitle {
  margin: 0;
  color: var(--color-text);
  z-index: 2;
}
.hero__subtitle span{
  font-size: 14px;
  color: var(--color-text);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  font-weight: normal;
  z-index: 2;
}

.hero__media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hero-block {
  background: #131430;
  border-radius: 24px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.hero-block--cashback {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-block__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
background: #191A40;
padding: 10px;
border-radius: 10px;
flex: 1 1 50%;

}
.hero-block__value {
  font-size: 16px;
  font-weight: 700;
}
.hero-block__label {
  font-size: 13px;
  color: var(--color-text);
}
.hero-block__label-big {
  font-size: 16px;
  font-weight: 700;
}
.hero-block__label-small {
  font-size: 13px;
  color: var(--color-text);
}
.hero-block--coins {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-block__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-block__row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
}
.hero-block__row--icon .hero-block__item{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.hero-block__label {
  color: var(--color-text);
}

.hero-block__value {
  font-weight: 600;
}

.hero-block__value--timer {
  color: #f97316;
}

.hero-block__value--bonus {
  color: #22c55e;
}

.hero-block__value--main {
  font-size: 22px;
  font-weight: 700;
}

.hero-block__label-big {
  font-size: 13px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-block__value--bonus-big {
  font-size: 18px;
  font-weight: 700;
  color: #f97316;
}

.hero-block__label-small {
  font-size: 12px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-block__value--level {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-block__fires {
  display: inline-flex;
  gap: 2px;
  margin-left: 4px;
}

.hero-block__fire svg {
  width: 14px;
  height: 16px;
}

.hero-block__button {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}
.hero__placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.45), transparent 60%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.45), transparent 60%),
    var(--color-surface);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-muted);
}

.hero--casino {
  padding-bottom: 20px;
}

.hero__inner--casino {
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero__tagline {
  margin: 0 0 8px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #facc15;
}

.hero__amount {
  color: #fbbf24;
}

.hero__media--casino {
  align-items: stretch;
}

.hero-banner {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  padding: 18px 18px 24px;
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.9), transparent 60%),
    linear-gradient(135deg, #f97316, #ef4444, #7c3aed);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #020617;
}

.hero-banner__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-banner__game {
  font-size: 18px;
  font-weight: 700;
}

.btn,
#wpmtst_submit_testimonial {
  border: none;
  cursor: pointer;
  font: inherit;
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.05s ease;
}

.btn--primary,
#wpmtst_submit_testimonial {
  background: linear-gradient(255.96deg, #EE7722 0%, #EE4D22 100%);
  color: #f9fafb;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}

.btn--primary:hover,
#wpmtst_submit_testimonial:hover {
  background: linear-gradient(255.96deg, #EE7722 0%, #EE4D22 100%);
  transform: translateY(-1px);
}

.btn--secondary {
  background: #191A40;
  color: var(--color-text);
}

.btn--secondary:hover {
  background: rgba(15, 23, 42, 1);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
}

.btn--small {
  padding: 8px 14px;
  font-size: 16px;
}
.btn--bell-icon {
  background: linear-gradient(135deg, #216DDF 0%, #0E3978 100%);

  color: var(--color-text);
  border: none;
}
.section {
  padding: 20px 0;
  background: transparent;
}

.section--alt {
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.35), transparent 55%);
}

.section__title {
  margin: 0 0 16px;
  font-size: 22px;
}

.section__text {
  margin: 0;
  font-size: 15px;
  color: var(--color-muted);
}

.section__text--wide {
  max-width: 560px;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.section__link {
  font-size: 16px;
  color: #38bdf8;
  text-decoration: none;
}

.section__link:hover {
  text-decoration: underline;
}

.games-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.games-tab {
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  cursor: pointer;
  background: #131430;
  color: var(--color-muted);
  text-decoration: none;
}

.games-tab--active {
  background: linear-gradient(255.96deg, #EE7722 0%, #EE4D22 100%);
  color: var(--color-text);;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.game-card {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
}

.game-card__image {
  width: 100%;
  height: 160px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f97316, #ec4899, #6366f1);
  object-fit: cover;
}

.game-card__title {
  margin: 10px 10px 12px;
  font-size: 14px;
}

/* Single slot page */
.single-slot__iframe-wrapper {
  margin: 24px 0 32px;
  border-radius: 10px;
  overflow: hidden;
  background: #050816;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.single-slot__iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: none;
  background: #000;
}

.single-slot__content {
  margin: 24px 0 32px;
  padding: 20px 24px;
  border-radius: 10px;
  background: var(--bg-color);
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffab;
}

.single-slot__content p {
  margin-bottom: 1em;
}

.related-slots {
  margin: 40px 0 20px;
}

.related-slots__title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffffe0;
}

.games__block-related {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.feature-card {
  padding: 20px 18px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.3), transparent 60%),
    rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.feature-card__title {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-card__text {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
}

.section--steps {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.steps {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.step__badge {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.step__title {
  margin: 0 0 4px;
  font-size: 15px;
}

.step__text {
  margin: 0;
  font-size: 14px;
  color: var(--color-muted);
}



.jackpot {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.3), transparent 55%),
    radial-gradient(circle at bottom right, rgba(234, 179, 8, 0.35), transparent 55%),
    rgba(15, 23, 42, 0.98);
}

.jackpot__info {
  flex: 1 1 260px;
}

.jackpot__values {
  flex: 1 1 260px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.jackpot-tier {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jackpot-tier__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #facc15;
}

.jackpot-tier__value {
  font-size: 14px;
  font-weight: 600;
}


.promos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promo-card {
  padding: 18px 16px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.promo-card__title {
  margin: 0 0 6px;
  font-size: 16px;
}

.promo-card__text {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--color-muted);
}


.article__subtitle {
  margin: 4px 0 8px;
  font-size: 16px;
}

.article__heading {
  margin: 16px 0 8px;
  font-size: 15px;
}

.article__list {
  margin: 0 0 8px 20px;
  padding: 0;
  font-size: 14px;
}

.article__bullets {
  margin: 8px 0 0 18px;
  padding: 0;
  font-size: 14px;
}

.table-wrapper {
  overflow-x: auto;
  margin: 8px 0 12px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  padding: 8px 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.table th {
  background: rgba(15, 23, 42, 0.9);
}

.quote {
  margin: 12px 0;
  padding: 10px 14px;
  border-left: 3px solid #38bdf8;
  background: rgba(15, 23, 42, 0.85);
  border-radius: 8px;
  font-size: 14px;
}

.quote footer {
  margin-top: 4px;
  font-size: 16px;
  color: var(--color-muted);
}



.review-form {
  margin-top: 12px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.form-field input,
.form-field textarea {
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--color-text);
  padding: 8px 10px;
  font-family: inherit;
  font-size: 14px;
  border: none;
  margin: 10px 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-muted);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.4), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.4), transparent 55%),
    rgba(15, 23, 42, 0.95);
}

.cta__content {
  max-width: 480px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}



.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 20px;
  padding: 24px 16px;
  font-size: 16px;
  color: var(--color-muted);
}

.footer__title {
  margin: 0 0 8px;
  font-size: 14px;
  color: #e5e7eb;
}

.footer__text {
  margin: 0;
}

.footer__nav ul,
.footer__payments ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__nav a {
  color: var(--color-muted);
  text-decoration: none;
}

.footer__nav a:hover {
  text-decoration: underline;
}

/* Footer: soft + payments */
.soft {
  padding: 16px 0;
}

.soft-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  justify-content: center;
}

.soft-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.soft-item img {
  height: 18px;
  width: auto;
  opacity: 0.85;
  /* filter: grayscale(1); */
}

.payments-list {
  padding: 12px 0 20px;
}

.payments-list__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: center;
  align-items: center;
}

.payments-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.payments-list__item img {
  height: 20px;
  width: auto;
  opacity: 0.8;
  /* filter: grayscale(1); */
}

.payments-list__item:hover img,
.soft-item:hover img {
  opacity: 1;
  filter: none;
}



.footer__bottom-inner {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-muted);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 0;
  z-index: 20;
  background: #191A40;
  border-radius: 10px;
  padding: 10px;
}

.cookie-banner__content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cookie-banner__text {
  margin: 0;
  font-size: 12px;
  color: var(--color-muted);
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
}

/* FAQ */
.faq {
  padding: 40px 0 48px;
}

.faq-title {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffffe0;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq details {
  padding: 15px 18px;
  border-radius: 10px;
  background: #0E0E24;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  word-break: break-all;
}

.faq details[open] {
  background: #0E0E24;
}

.faq details > summary {
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-right: 44px;
  color: #ffffffe0;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  background: #0E0E24;
  color: #69b5e0;
}

.faq details[open] summary::after {
  content: '−';
  background: #0E0E24;
  color: #ffffff;
}

.faq details p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffffc0;
}

@media (max-width: 900px) {
  .page--sidebar-open {
    margin-left: 0;
  }

  /* Когда сайдбар раскрыт на мобилке, сдвигаем основной контент,
     чтобы панель не перекрывала его */
  /* .page .header,
  .page .main,
  .page .footer {
    margin-left: 40px;
  } */

  .header-search-input {
    width: 160px;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
  }

  .hero__content {
    order: 1;
  }

  .hero__content::before,
  .hero__content::after {
    content: none;
    background: none;
  }

  .hero__media {
    order: 2;
    /* На мобилке блоки hero__media идут по одному в строку */
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .header__inner {
    gap: 12px;
  }

  /* Прячем баланс и карточку игры в шапке на мобилке */
  .header__balance-row,
  .header-game-link {
    display: none;
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  /* На мобилке вместо поиска показываем логотип */
  .header__search {
    display: none;
  }

  .header-quick-menu {
    display: none;
  }

  .header__logo--mobile {
    display: block;
  }

  /* Поиск доступен в сайдбаре на мобилке */
  .sidebar__search {
    display: block;
  }
}

@media (max-width: 640px) {
  .sidebar {
    width: 220px;
  }

  .header__inner {
    height: auto;
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 40px;
  }

  .hero__placeholder {
    max-width: 100%;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promos {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: minmax(0, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.strong-form-inner{
  padding: 0 !important; 
}