:root {
  --bg: #0B0D0E;
  --bg-card: #151819;
  --bg-sidebar: #0F1214;
  --accent: #08AD5B;
  --accent-h: #0BC967;
  --text-1: #FFFFFF;
  --text-2: #C0C8CC;
  --text-3: #5A6670;
  --header-h: 60px;
  --sidebar-w: 64px;
  --radius: 6px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--text-2);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none }

button { cursor: pointer; border: none; background: none; font: inherit }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 16px;
}

.nowrap { white-space: nowrap }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease-std), transform 0.15s var(--ease-std);
  white-space: nowrap;
  min-height: 44px;
}

.btn:hover { background: var(--accent-h) }
.btn:active { transform: scale(0.98) }
.btn:focus-visible { box-shadow: 0 0 0 3px rgba(8,173,91,0.45) }

.btn--lg { padding: clamp(8px, 2vw, 14px) clamp(16px, 4vw, 32px); font-size: clamp(0.85rem, 2vw, 1.1rem) }
.btn--sm { padding: 8px 14px; font-size: 0.9rem }

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.js-enabled .section-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.js-enabled .section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sidebar {
  display: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  position: sticky;
  top: 0;
  z-index: 300;
  height: var(--header-h);
  background: rgba(11,13,14,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.header__logo img { height: 22px; width: auto }

.header__nav {
  display: none;
  gap: 4px;
  margin-left: auto;
}

.header__nav-link {
  padding: 6px 12px;
  font-size: 0.9rem;
  color: var(--text-2);
  border-radius: var(--radius);
  transition: color 0.2s var(--ease-std), background 0.2s var(--ease-std);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.header__nav-link:hover { color: var(--text-1); background: rgba(255,255,255,0.05) }
.header__nav-link:focus-visible { box-shadow: 0 0 0 2px var(--accent) }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px 10px;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease-std);
}

.header__burger span {
  display: block;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.header__burger:hover { background: rgba(255,255,255,0.08) }
.header__burger:focus-visible { box-shadow: 0 0 0 2px var(--accent) }

.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0 }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

.mobile-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  padding: 8px 16px 16px;
  gap: 4px;
  transition: opacity 0.25s var(--ease-out), visibility 0.25s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__link {
  padding: 12px 8px;
  font-size: 1rem;
  color: var(--text-2);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu__link:hover { color: var(--text-1); background: rgba(255,255,255,0.05) }

.mobile-menu__cta { margin-top: 8px; align-self: flex-start }

.hero {
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero__slider {
  position: relative;
  overflow: hidden;
}

.hero__track {
  display: flex;
  transform: translateX(calc(-100% * var(--slide-index, 0)));
  transition: transform 0.5s var(--ease-out);
}

.hero__slide {
  flex: 0 0 100%;
  position: relative;
}

.hero__slide img {
  width: 100%;
  height: clamp(180px, 36vw, 400px);
  object-fit: cover;
  display: block;
}

.hero__slide-cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__slide-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
}

.hero__slide-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(.9rem, 3vw, 1.6rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.hero__slide-subtitle {
  font-size: clamp(.78rem, 1.8vw, .95rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 16px;
  line-height: 1.4;
}

.hero__prev,
.hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: clamp(28px, 4vw, 44px);
  height: clamp(28px, 4vw, 44px);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border-radius: 50%;
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease-std), opacity 0.2s;
}

.hero__prev { left: 12px }
.hero__next { right: 12px }
.hero__prev:hover, .hero__next:hover { background: rgba(8,173,91,0.75) }
.hero__prev:focus-visible, .hero__next:focus-visible { box-shadow: 0 0 0 2px var(--accent) }
.hero__prev.is-hidden, .hero__next.is-hidden { opacity: 0; pointer-events: none }

.hero__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.2s var(--ease-std), transform 0.2s var(--ease-std);
  min-height: unset;
}

.hero__dot.is-active { background: var(--accent); transform: scale(1.3) }
.hero__dot:focus-visible { box-shadow: 0 0 0 2px var(--accent) }

.slots {
  padding: 40px 0;
}

.slots__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.slots__header .section-label { margin-bottom: 0 }

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

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-1);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease-std), border-color 0.2s;
}

.carousel-btn:hover { background: var(--accent); border-color: var(--accent) }
.carousel-btn:focus-visible { box-shadow: 0 0 0 2px var(--accent) }
.carousel-btn.is-hidden { opacity: 0.3; pointer-events: none }

.slots__list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.slots__list::-webkit-scrollbar { display: none }

.slots__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 140px;
}

.slots__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  transition: transform 0.25s var(--ease-out);
}

.slots__card:hover { transform: translateY(-3px) }
.slots__card:focus-visible { box-shadow: 0 0 0 2px var(--accent) }

.slots__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.slots__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease-out);
}

.slots__card:hover .slots__img-wrap img { transform: scale(1.04) }

.slots__name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0 8px 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.promos {
  padding: 40px 0;
  background: var(--bg-card);
}

.promos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.promos__card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.promos__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(8,173,91,0.12);
}

.promos__card img { width: 100%; aspect-ratio: 2/1; object-fit: cover }

.promos__card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promos__card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
}

.promos__card-text {
  font-size: 0.9rem;
  color: var(--text-2);
  flex: 1;
}

.content {
  padding: 48px 0;
}

.content h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.2;
  margin-bottom: 32px;
}

.text-wrapper h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.25;
  margin: 36px 0 14px;
}

.text-wrapper h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
  margin: 24px 0 10px;
}

.text-wrapper p {
  color: var(--text-2);
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.text-wrapper ul,
.text-wrapper ol {
  padding-left: 1.4em;
  margin-bottom: 14px;
}
.text-wrapper ul { list-style: disc }
.text-wrapper ol { list-style: decimal }

.text-wrapper li {
  color: var(--text-2);
  font-size: 0.97rem;
  padding-bottom: 5px;
}

.text-wrapper a { color: var(--accent); text-decoration: underline }
.text-wrapper a:hover { color: var(--accent-h) }

.text-wrapper hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 24px 0 }

.text-wrapper table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;
  font-size: 0.9rem;
}

.text-wrapper__table-wrap { overflow-x: auto; margin-bottom: 14px; scrollbar-width: thin; scrollbar-color: var(--text-3) var(--bg-card) }
.text-wrapper__table-wrap::-webkit-scrollbar { height: 6px }
.text-wrapper__table-wrap::-webkit-scrollbar-track { background: var(--bg-card) }
.text-wrapper__table-wrap::-webkit-scrollbar-thumb { background: var(--text-3); border-radius: 3px }

.text-wrapper th,
.text-wrapper td { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.08); text-align: left }

.text-wrapper th { background: var(--bg-card); color: var(--text-1); font-weight: 600 }

.text-wrapper blockquote {
  padding: 14px 20px;
  border-left: 3px solid var(--accent);
  font-style: italic;
  color: var(--text-2);
  margin-bottom: 14px;
}

.text-wrapper code {
  font-family: monospace;
  background: var(--bg-card);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}

.text-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.text-wrapper pre {
  background: var(--bg-card);
  padding: 16px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--text-3) var(--bg-card);
}

.text-wrapper pre::-webkit-scrollbar { height: 6px }
.text-wrapper pre::-webkit-scrollbar-track { background: var(--bg-card) }
.text-wrapper pre::-webkit-scrollbar-thumb { background: var(--text-3); border-radius: 3px }

.faq {
  padding: 48px 0;
  background: var(--bg-card);
}

.faq__heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 28px;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq__q {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  color: var(--text-1);
  font-size: 0.97rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  transition: color 0.2s var(--ease-std);
}

.faq__q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}

.faq__q[aria-expanded="true"]::after { transform: rotate(45deg) }
.faq__q:hover { color: var(--accent) }
.faq__q:focus-visible { box-shadow: 0 0 0 2px var(--accent) }

.faq__a {
  padding: 0 0 18px;
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.65;
}

.footer {
  margin-top: auto;
  background: #060809;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer__logo img { height: 18px; width: auto }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer__link {
  font-size: 0.88rem;
  color: var(--text-3);
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer__link:hover { color: var(--text-2) }
.footer__link:focus-visible { box-shadow: 0 0 0 2px var(--accent) }

.footer__copy {
  font-size: 0.82rem;
  color: var(--text-3);
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: var(--text-3);
  opacity: 0.7;
}

@media (min-width: 480px) {
  .container { padding-inline: 20px }
  .slots__item { width: 160px }
}

@media (min-width: 768px) {
  .container { padding-inline: 24px }

  .header__nav { display: flex }
  .header__burger { display: none }
  .header__actions .btn { display: inline-flex }

  .slots { padding: 56px 0 }
  .slots__item { width: 180px }

  .promos { padding: 56px 0 }

  .content { padding: 64px 0 }

  .faq { padding: 64px 0 }

  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: flex-start }

  .hero__dots { bottom: 16px }
}

@media (min-width: 1024px) {
  .sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: var(--sidebar-w);
    background: var(--bg-sidebar);
    z-index: 200;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: calc(var(--header-h) + 24px) 0 24px;
    gap: 8px;
    justify-content: flex-start;
  }

  .page-wrap { padding-left: var(--sidebar-w) }

  .sidebar__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 4px;
    flex: 1;
  }

  .sidebar__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 10px 4px;
    color: var(--text-3);
    transition: color 0.2s var(--ease-std), background 0.2s var(--ease-std);
    border-radius: 0;
    min-height: 56px;
    justify-content: center;
  }

  .sidebar__link:hover { color: var(--text-1); background: rgba(255,255,255,0.05) }
  .sidebar__link:focus-visible { box-shadow: inset 0 0 0 2px var(--accent) }

  .sidebar__label {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    display: block;
  }

  .sidebar__cta {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    min-height: unset;
    margin-top: auto;
    margin-bottom: 8px;
  }

  .slots__item { width: 160px }
}

@media (min-width: 1280px) {
  .slots__item { width: 170px }
}
