:root {
  --bg-deep: #0b101b;
  --bg-panel: rgba(15, 24, 42, 0.72);
  --accent-a: #0084ff;
  --accent-b: #00c6ff;
  --text: #f4f7ff;
  --text-muted: #9aa4b8;
  --glass-border: rgba(0, 198, 255, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --glow: 0 0 24px rgba(0, 132, 255, 0.45), 0 0 48px rgba(0, 198, 255, 0.2);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.ref-link {
  cursor: pointer;
}

/* ——— Breadcrumbs ——— */
.breadcrumbs {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 20px 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 2px;
  opacity: 0.45;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--accent-b);
}

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

.breadcrumbs-current {
  color: var(--text-muted);
}

/* вЂ”вЂ”вЂ” Header вЂ”вЂ”вЂ” */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 16, 27, 0.85);
  border-bottom: 1px solid var(--glass-border);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 20px;
  font-size: 12px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
}

.header-top a.ref-link {
  color: var(--accent-b);
}

.header-top a.ref-link:hover {
  text-decoration: underline;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.logo-o {
  width: 26px;
  height: 32px;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  color: var(--accent-b);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.icon-btn:hover {
  transform: scale(1.05);
  background: rgba(0, 198, 255, 0.12);
  box-shadow: var(--glow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #fff;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.08);
}

.btn-ghost {
  background: rgba(20, 28, 45, 0.9);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: rgba(30, 40, 62, 0.95);
  transform: translateY(-1px);
}

/* вЂ”вЂ”вЂ” Hero вЂ”вЂ”вЂ” */
.hero {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 20px 36px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/vodka.jpg") center/cover no-repeat;
  filter: saturate(1.05) brightness(0.55);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 16, 27, 0.92) 0%,
    rgba(11, 16, 27, 0.55) 45%,
    rgba(60, 20, 90, 0.35) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-copy h2.tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.hero-copy h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-offer {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-offer-sub {
  color: var(--accent-b);
  font-weight: 600;
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.countdown-item {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--bg-panel);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: center;
  min-width: 64px;
}

.countdown-item .num {
  font-size: 1.5rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.countdown-item .lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-cta-row a.more {
  color: var(--accent-b);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-cta-row a.more:hover {
  text-decoration: underline;
}

.hero-slider-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-slider-bar span {
  display: block;
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  box-shadow: var(--glow);
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media (max-width: 900px) {
  .hero-art {
    display: none;
  }
}

.hero-art img {
  max-height: 340px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* вЂ”вЂ”вЂ” Filters & search вЂ”вЂ”вЂ” */
.tools {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 20px 12px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.filter-pill .badge {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.filter-pill:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.filter-pill.is-active {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow);
}

.filter-pill.is-active .badge {
  background: rgba(255, 255, 255, 0.2);
}

.provider-select {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

.search-wrap {
  position: relative;
}

.search-wrap input {
  width: 100%;
  padding: 14px 18px 14px 48px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 26, 42, 0.85);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.search-wrap input:focus {
  border-color: rgba(0, 198, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.15);
}

.search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}

/* вЂ”вЂ”вЂ” Game grid вЂ”вЂ”вЂ” */
.section-games {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 20px 40px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
}

@media (min-width: 600px) {
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(15, 22, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  color: inherit;
}

.game-card:hover {
  transform: scale(1.04);
  border-color: rgba(0, 198, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), var(--glow);
}

.game-card .thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.game-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card .meta {
  padding: 12px 12px 14px;
}

.game-card .title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.25;
}

.game-card .provider {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* вЂ”вЂ”вЂ” Carousel popular вЂ”вЂ”вЂ” */
.section-popular {
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 20px 48px;
}

.popular-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}

.popular-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(0, 132, 255, 0.15);
  border: 1px solid rgba(0, 198, 255, 0.25);
  font-weight: 700;
  font-size: 14px;
}

.popular-nav {
  display: flex;
  gap: 8px;
}

.popular-nav a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.popular-nav a:hover {
  background: rgba(0, 198, 255, 0.2);
  transform: scale(1.05);
  box-shadow: var(--glow);
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-a) rgba(255, 255, 255, 0.06);
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  border-radius: 4px;
}

.carousel-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
}

@media (min-width: 500px) {
  .carousel-card {
    flex: 0 0 220px;
  }
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(11, 16, 27, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  pointer-events: none;
}

.carousel-card .overlay .c-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
  line-height: 1.2;
}

.carousel-card .overlay .c-prov {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

.carousel-hover {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 27, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.carousel-card:hover .carousel-hover {
  opacity: 1;
}

.play-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  display: grid;
  place-items: center;
  box-shadow: var(--glow);
  margin-bottom: auto;
  margin-top: auto;
}

.play-circle svg {
  margin-left: 4px;
}

.demo-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* вЂ”вЂ”вЂ” SEO article вЂ”вЂ”вЂ” */
.article-seo {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}

.article-seo h1 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.3;
  margin: 0 0 16px;
}

.article-seo h2 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--accent-b);
}

.article-seo h2.article-seo-main {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.3;
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--text);
}

.article-seo p {
  margin: 0 0 14px;
  color: #c8d0e0;
  font-size: 15px;
}

/* вЂ”вЂ”вЂ” Footer вЂ”вЂ”вЂ” */
.site-footer {
  background: #0d111b;
  border-top: 1px solid var(--glass-border);
  padding: 40px 20px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-apps {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 24px;
  padding-left: 18px;
}

.footer-apps li {
  margin-bottom: 6px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

.footer-col h3 {
  font-size: 14px;
  margin: 0 0 14px;
  color: var(--text);
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col a.ref-link:hover {
  color: var(--accent-b);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 12px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.provider-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

a.provider-cell:hover {
  color: var(--accent-b);
  border-color: rgba(0, 198, 255, 0.25);
  background: rgba(0, 132, 255, 0.08);
}

.payments-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pay-badge {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

a.pay-badge:hover {
  color: var(--accent-b);
  background: rgba(0, 132, 255, 0.12);
}

/* ——— FAQ (details — ответы в DOM для поисковиков) ——— */
.section-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.section-faq > h2 {
  font-size: 1.25rem;
  margin: 0 0 20px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 22, 38, 0.6);
  overflow: hidden;
}

.faq-item summary.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 44px 16px 18px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  position: relative;
  list-style: none;
}

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

.faq-item summary.faq-q::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--accent-b);
}

.faq-item[open] summary.faq-q::after {
  content: "\2212";
}

.faq-a {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
