/* Водка Казино — оригинальная вёрстка, не копия референсов */
:root {
  --bg: #080d16;
  --bg-elev: #0f1929;
  --card: #121c2c;
  --line: rgba(32, 150, 255, 0.22);
  --accent: #2096ff;
  --accent-2: #2ee59d;
  --violet: #6d4ad6;
  --text: #e8f0ff;
  --muted: #94a3b8;
  --radius: 16px;
  --radius-sm: 12px;
  --glow: 0 0 0 1px rgba(32, 150, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% 0%, rgba(32, 150, 255, 0.12), transparent 50%),
    radial-gradient(900px 500px at 100% 20%, rgba(109, 74, 214, 0.1), transparent 45%), var(--bg);
  line-height: 1.5;
  font-size: 16px;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: 8px;
}
.skip:focus {
  left: 8px;
}

.ribbon {
  background: linear-gradient(90deg, #0a1626, #132a44);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.ribbon__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 1.25rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
}
.badge strong {
  color: var(--accent-2);
  font-weight: 600;
}
.ribbon a.ref {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(32, 150, 255, 0.12);
  border: 1px solid var(--line);
}
.ribbon a.ref:hover {
  background: rgba(32, 150, 255, 0.2);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(8, 13, 22, 0.85);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
}
.logo__name > span {
  color: var(--accent);
}
.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2096ff, #5b21b6);
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(32, 150, 255, 0.3);
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.65rem 1.1rem;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.btn--search {
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.btn--search:hover {
  border-color: var(--accent);
}
.btn--menu {
  width: 44px;
  height: 44px;
  padding: 0;
  background: linear-gradient(180deg, rgba(32, 150, 255, 0.2), rgba(8, 13, 22, 0.9));
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--primary {
  background: linear-gradient(180deg, #2fa3ff, #0d7ad4);
  color: #fff;
  box-shadow: 0 8px 28px rgba(32, 150, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn--primary:hover {
  text-decoration: none;
  box-shadow: 0 10px 36px rgba(32, 150, 255, 0.45);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  background: rgba(32, 150, 255, 0.12);
  text-decoration: none;
  border-color: var(--accent);
}
.btn--accent2 {
  background: linear-gradient(180deg, #34d399, #0f9a6c);
  color: #0a1620;
}
.btn--block {
  width: 100%;
}

/* Уникальная сетка героя: смещённая панель + “стек” карточек */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
.hero__panel {
  position: relative;
  padding: 1.75rem 1.75rem 1.5rem;
  background: linear-gradient(145deg, #0e1828 0%, #0a0f18 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--glow);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
  overflow: hidden;
}
.hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(32, 150, 255, 0.08) 0%, transparent 50%, rgba(109, 74, 214, 0.07) 100%);
  pointer-events: none;
}
.hero__kicker {
  color: var(--accent-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 2.2vw + 0.6rem, 2.1rem);
  line-height: 1.2;
  max-width: 18ch;
}
.lead {
  color: var(--muted);
  margin: 0 0 1.2rem;
  max-width: 50ch;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.2rem;
}
.pill {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: #dbe7ff;
}
.pill b {
  color: var(--accent-2);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.timer {
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.timer span {
  background: #0a0f19;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.35rem 0.55rem;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--accent-2);
}

/* Визуальный блок справа */
.hero__visual {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.75rem;
}
.fan {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #0a1220;
  padding: 0.75rem;
  overflow: hidden;
}
.fan::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg at 50% 0%, #2096ff, #6d4ad6, #2096ff);
  opacity: 0.25;
  z-index: 0;
  filter: blur(20px);
}
.fan__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  align-items: end;
}
.fan__img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111a28;
  aspect-ratio: 3/4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(0) rotate(0);
  transition: transform 0.2s;
}
.fan__img:hover {
  transform: translateY(-3px) scale(1.02);
}
.fan__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fan__img--tall {
  grid-row: span 1;
  transform: rotate(-2deg);
}
.fan__img--tall:nth-child(2) {
  transform: rotate(1.5deg) scale(1.04);
  z-index: 2;
}
.fan__img--tall:nth-child(3) {
  transform: rotate(2deg);
}

.ticker {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 0.25rem;
  margin: 0 -0.5rem 1.75rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.ticker__card {
  flex: 0 0 160px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.5rem;
  font-size: 12px;
  color: var(--muted);
}
.ticker__img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: #111a28;
}
.ticker__tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.15rem;
}
.ticker__tag--e {
  color: #f472b6;
}
.ticker__tag--s {
  color: #34d399;
}
.ticker__tag--m {
  color: #fbbf24;
}
.ticker b {
  color: var(--text);
  display: block;
  font-size: 13px;
  font-weight: 700;
}

/* Категории: боковой акцент */
.section {
  margin-bottom: 2rem;
}
.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.section__title {
  margin: 0;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.scroller {
  display: flex;
  gap: 0.4rem;
}
.scroller button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
}
.scroller button:hover {
  border-color: var(--accent);
}

.cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.cats a,
.cats .chip--active {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--line);
  background: #0a1220;
  color: var(--muted);
  text-decoration: none;
}
.cats a:hover,
.cats .chip--active {
  color: var(--text);
  background: linear-gradient(180deg, rgba(32, 150, 255, 0.25), rgba(8, 13, 22, 0.7));
  border-color: var(--accent);
  text-decoration: none;
}
.chip--active {
  font-weight: 700;
}

.search-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  background: #0a101c;
  border: 1px solid var(--line);
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 14px;
}
.search-line input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--text);
  font: inherit;
  outline: none;
}
.search-line input::placeholder {
  color: #64748b;
}

/* Сетка игр */
.grid-games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.game {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0b1422;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem;
  text-decoration: none;
  color: inherit;
  min-height: 0;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  overflow: hidden;
}
.game:hover {
  text-decoration: none;
  border-color: rgba(32, 150, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}
.game__thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #111a28;
  margin-bottom: 0.5rem;
  aspect-ratio: 1;
}
.game__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.game:hover .game__thumb img {
  transform: scale(1.04);
}
.game__title {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.game__sub {
  margin: 0;
  color: #64748b;
  font-size: 12px;
}
.game__play {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(32, 150, 255, 0.9);
  color: #0a1620;
  font-size: 0.7rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.2s;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.game:hover .game__play {
  opacity: 1;
  transform: translateY(0);
}
.game:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Слайдер-ряд */
.h-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  margin: 0 -0.2rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--line) transparent;
}
.h-scroll .card-v {
  flex: 0 0 150px;
  scroll-snap-align: start;
}
.card-v {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0c1524;
  border: 1px solid var(--line);
  min-height: 200px;
  text-decoration: none;
  color: #fff;
}
.card-v__img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s;
}
.card-v::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.card-v:hover .card-v__img {
  transform: scale(1.05);
}
.card-v__cap {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.55rem;
}
.card-v__title {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.1rem;
  text-transform: uppercase;
}
.card-v__prov {
  margin: 0;
  color: #94a3b8;
  font-size: 10px;
}

.jackpot {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.5rem 1.25rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(110deg, #0c1828, #0c1422 50%, #132a38);
  border: 1px solid rgba(32, 150, 255, 0.35);
  box-shadow: inset 0 0 40px rgba(32, 150, 255, 0.1);
  margin: 0 0 1.5rem;
}
@media (max-width: 720px) {
  .jackpot {
    grid-template-columns: 1fr;
  }
}
.jackpot__art {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.jackpot__art img {
  max-height: 100px;
  width: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0a1220;
  object-fit: cover;
}
.jk-title {
  margin: 0 0 0.2rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.jk-sum {
  margin: 0 0 0.2rem;
  color: var(--accent-2);
  font-size: 1.35rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.jk-line {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  max-width: 38ch;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 0 0 1.5rem;
}
@media (max-width: 800px) {
  .bento {
    grid-template-columns: 1fr;
  }
}
.bento a {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: #0a1220;
  border: 1px solid var(--line);
  text-decoration: none;
  color: #fff;
  min-height: 100px;
  position: relative;
  overflow: hidden;
}
.bento a:hover {
  text-decoration: none;
  border-color: var(--accent);
}
.bento a img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.3s;
}
.bento a:hover img {
  opacity: 0.5;
  transform: scale(1.03);
}
.bento a span {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 0.75rem;
  font-weight: 800;
  text-shadow: 0 2px 8px #000;
}

/* SEO-статья */
.seo-article {
  position: relative;
  margin: 2.5rem 0 0;
  padding: 1.5rem 1.25rem 1.5rem;
  background: #070b12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.seo-article h2,
.seo-article h3 {
  color: #f1f5f9;
  line-height: 1.3;
  margin: 1.1rem 0 0.5rem;
  font-size: 1.25rem;
}
.seo-article h2:first-of-type {
  margin-top: 0;
  font-size: 1.45rem;
}
.seo-article h3 {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-top: 1.25rem;
}
.seo-article p,
.seo-article li {
  color: #9fb0c4;
  font-size: 0.98rem;
  margin: 0.55rem 0;
}
.seo-article ul {
  margin: 0.4rem 0 0.4rem 1.1rem;
  padding: 0;
}
.seo-article strong {
  color: #e2e8f0;
  font-weight: 600;
}

/* Футер */
footer {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #64748b;
  font-size: 0.9rem;
}
.foot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 1.2rem;
}
@media (max-width: 800px) {
  .foot {
    grid-template-columns: 1fr;
  }
}
.foot a {
  color: #a8b4c4;
  display: block;
  margin: 0.2rem 0;
}
.foot a:hover {
  color: #fff;
}
.foot__col h4 {
  margin: 0 0 0.4rem;
  color: #94a3b8;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.disclaimer {
  max-width: 50ch;
  line-height: 1.5;
  font-size: 0.82rem;
  color: #64748b;
}

.fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #111a28;
  color: #f8fafc;
  padding: 0.55rem 0.8rem 0.55rem 0.6rem;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--glow);
  border: 1px solid var(--line);
}
.fab:hover {
  text-decoration: none;
  border-color: var(--accent);
  color: #fff;
}
.fab svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* Карточка «+2500 ₽» под рядом превью */
.deposit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  padding: 1rem 1.25rem 1.1rem;
  border-radius: 18px;
  text-decoration: none;
  color: #f8fafc;
  text-align: center;
  background: linear-gradient(145deg, #1a0f2e 0%, #0f172a 45%, #0c4a6e 100%);
  border: 1px solid rgba(250, 204, 21, 0.45);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}
.deposit-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
}
.deposit-card__brand {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #93c5fd;
}
.deposit-card__offer {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  color: #fde047;
  background: linear-gradient(180deg, #fef9c3, #facc15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 #854d0e);
}
@supports not (background-clip: text) {
  .deposit-card__offer {
    color: #fde047;
    background: none;
    filter: none;
  }
}
.deposit-card__note {
  font-size: 0.75rem;
  color: #94a3b8;
  max-width: 28ch;
}
.deposit-card__btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 22rem);
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #0a1620;
  background: linear-gradient(180deg, #38bdf8, #0284c7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.5);
}
.deposit-card:hover .deposit-card__btn {
  box-shadow: 0 10px 32px rgba(14, 165, 233, 0.55);
}

/* FAQ Водка Казино */
.faq-vodka {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}
.faq-vodka h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: #e2e8f0;
}
.faq-vodka__item {
  margin-bottom: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0a101c;
  overflow: hidden;
}
.faq-vodka__item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.faq-vodka__item summary::-webkit-details-marker {
  display: none;
}
.faq-vodka__item summary::after {
  content: "＋";
  font-weight: 400;
  color: var(--accent);
  font-size: 1.1rem;
}
.faq-vodka__item[open] summary::after {
  content: "－";
}
.faq-vodka__body {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(32, 150, 255, 0.12);
}
.faq-vodka__body p {
  margin: 0.65rem 0 0;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 480px) {
  .nav .btn--ghost {
    display: none;
  }
  .pills {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
