:root {
  --bg: #170B1C;
  --bg-alt: #1F1026;
  --card: #291731;
  --accent: #D9A441;
  --accent-hover: #EFC477;
  --secondary: #B07DE0;
  --text: #F7EDF9;
  --muted: #AC92B8;
  --border: #331D3D;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --radius: 18px;
  --shadow: 0 18px 44px rgba(5, 2, 8, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1100px 720px at 88% -6%, rgba(176, 125, 224, 0.16), transparent 62%),
    radial-gradient(880px 640px at -8% 34%, rgba(217, 164, 65, 0.08), transparent 58%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

::selection {
  background: rgba(217, 164, 65, 0.35);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

section {
  scroll-margin-top: 86px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-accent {
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
  color: #170B1C;
  box-shadow: 0 10px 26px rgba(217, 164, 65, 0.22);
}

.btn-accent:hover {
  box-shadow: 0 14px 32px rgba(217, 164, 65, 0.34);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(41, 23, 49, 0.4);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--secondary);
  color: #ffffff;
}

.btn-outline {
  background: rgba(217, 164, 65, 0.06);
  border-color: rgba(217, 164, 65, 0.55);
  color: var(--accent-hover);
}

.btn-outline:hover {
  background: rgba(217, 164, 65, 0.14);
  border-color: var(--accent);
}

.btn-lg {
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 11, 28, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(5, 2, 8, 0.5);
}

.header-inner {
  width: min(1180px, 94%);
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(5, 2, 8, 0.5);
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(100deg, var(--accent-hover), var(--accent) 55%, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(176, 125, 224, 0.12);
}

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

.header-actions .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background-color: var(--bg);
  background-image:
    linear-gradient(115deg, rgba(23, 11, 28, 0.93) 30%, rgba(31, 16, 38, 0.66) 62%, rgba(23, 11, 28, 0.82)),
    url("../img/banners/hero-main.webp");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

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

.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 8px 16px;
  border: 1px solid rgba(176, 125, 224, 0.4);
  border-radius: 999px;
  background: rgba(176, 125, 224, 0.08);
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  background: linear-gradient(100deg, var(--accent-hover) 0%, var(--accent) 48%, var(--secondary) 105%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-pluses {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.hero-pluses li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.plus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(217, 164, 65, 0.09);
  border: 1px solid rgba(217, 164, 65, 0.28);
}

.plus-icon svg {
  width: 22px;
  height: 22px;
}

.hero-card {
  position: relative;
  background: linear-gradient(165deg, rgba(41, 23, 49, 0.92), rgba(31, 16, 38, 0.94));
  border: 1px solid rgba(217, 164, 65, 0.35);
  border-radius: 22px;
  padding: 34px 32px 30px;
  text-align: center;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(247, 237, 249, 0.06);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(217, 164, 65, 0.65), transparent 40%, rgba(176, 125, 224, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.hero-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}

.hero-card-title {
  font-size: clamp(40px, 4.6vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--accent-hover);
  text-shadow: 0 8px 30px rgba(217, 164, 65, 0.25);
  margin-bottom: 12px;
}

.hero-card-plus {
  color: var(--secondary);
}

.hero-card-fs {
  font-size: 0.55em;
  color: var(--secondary);
}

.hero-card-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.section-lead {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 660px;
  margin-bottom: 38px;
}

.slots {
  background:
    radial-gradient(900px 460px at 12% 0%, rgba(176, 125, 224, 0.09), transparent 60%),
    var(--bg-alt);
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--border);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.slot-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.slot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 164, 65, 0.55);
  box-shadow: var(--shadow);
}

.slot-media {
  position: relative;
  overflow: hidden;
}

.slot-media img {
  width: 100%;
  transition: transform 0.45s ease;
}

.slot-card:hover .slot-media img {
  transform: scale(1.06);
}

.slot-play {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #170B1C;
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
  border-radius: 10px;
  padding: 11px 12px;
  opacity: 0.94;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.slot-play:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.slot-body {
  padding: 14px 16px 16px;
}

.slot-name {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.slot-provider {
  font-size: 13px;
  color: var(--muted);
}

.promo {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(90deg, rgba(23, 11, 28, 0.94) 26%, rgba(23, 11, 28, 0.72) 58%, rgba(41, 23, 49, 0.58)),
    url("../img/banners/promo-bg.webp");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.promo-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.promo-copy h2 {
  max-width: 480px;
}

.promo-note {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 560px;
  padding-left: 16px;
  border-left: 2px solid rgba(217, 164, 65, 0.5);
}

.promo-card {
  background: rgba(41, 23, 49, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px dashed rgba(217, 164, 65, 0.6);
  border-radius: 22px;
  padding: 34px 34px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.promo-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.promo-code {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-hover);
  margin-bottom: 20px;
}

.promo-card .btn.copied {
  background: linear-gradient(180deg, #7fd8a2, #4cae7d);
  box-shadow: 0 10px 26px rgba(76, 174, 125, 0.25);
}

.promo-hint {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  min-height: 20px;
}

.games {
  background:
    radial-gradient(760px 420px at 88% 8%, rgba(217, 164, 65, 0.07), transparent 60%),
    var(--bg-alt);
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--border);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 125, 224, 0.55);
  box-shadow: var(--shadow);
}

.game-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: var(--accent);
  background: rgba(217, 164, 65, 0.09);
  border: 1px solid rgba(217, 164, 65, 0.3);
  margin-bottom: 20px;
}

.game-icon svg {
  width: 30px;
  height: 30px;
}

.game-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.game-text {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}

.game-link {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--accent-hover);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(217, 164, 65, 0.45);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.game-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.app {
  padding: 92px 0;
  border-bottom: 1px solid var(--border);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 60px;
  align-items: center;
}

.app-list {
  margin: 4px 0 30px;
  display: grid;
  gap: 12px;
}

.app-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 15.5px;
}

.app-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent-hover), var(--accent));
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.14);
}

.app-visual {
  display: flex;
  justify-content: center;
}

.phone {
  width: 272px;
  border-radius: 40px;
  padding: 10px;
  background: linear-gradient(170deg, #3a2246, #1c0e23);
  border: 1px solid rgba(217, 164, 65, 0.4);
  box-shadow: var(--shadow), 0 0 0 8px rgba(23, 11, 28, 0.65);
}

.phone-top {
  display: flex;
  justify-content: center;
  padding: 6px 0 10px;
}

.phone-speaker {
  width: 64px;
  height: 5px;
  border-radius: 4px;
  background: rgba(23, 11, 28, 0.8);
}

.phone-screen {
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(320px 220px at 80% -10%, rgba(176, 125, 224, 0.28), transparent 65%),
    #1F1026;
  padding: 14px 14px 12px;
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.phone-logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(140deg, var(--accent-hover), var(--accent));
  box-shadow: 0 4px 12px rgba(217, 164, 65, 0.35);
}

.phone-btn {
  width: 58px;
  height: 20px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
}

.phone-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.tile {
  height: 64px;
  border-radius: 12px;
  border: 1px solid rgba(51, 29, 61, 0.9);
}

.tile-a { background: linear-gradient(150deg, rgba(217, 164, 65, 0.75), rgba(122, 78, 31, 0.4)); }
.tile-b { background: linear-gradient(150deg, rgba(176, 125, 224, 0.7), rgba(74, 44, 107, 0.4)); }
.tile-c { background: linear-gradient(150deg, rgba(217, 164, 65, 0.5), rgba(176, 125, 224, 0.35)); }
.tile-d { background: linear-gradient(150deg, rgba(148, 84, 178, 0.65), rgba(41, 23, 49, 0.5)); }
.tile-e { background: linear-gradient(150deg, rgba(239, 196, 119, 0.55), rgba(150, 96, 42, 0.35)); }
.tile-f { background: linear-gradient(150deg, rgba(176, 125, 224, 0.5), rgba(217, 164, 65, 0.3)); }

.phone-cta {
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
  box-shadow: 0 8px 18px rgba(217, 164, 65, 0.28);
  margin-bottom: 12px;
}

.phone-nav {
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
}

.phone-nav span {
  width: 30px;
  height: 6px;
  border-radius: 4px;
  background: rgba(172, 146, 184, 0.4);
}

.phone-nav span:first-child {
  background: rgba(217, 164, 65, 0.8);
}

.about {
  background:
    radial-gradient(820px 500px at 8% 4%, rgba(176, 125, 224, 0.08), transparent 62%),
    var(--bg-alt);
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--border);
}

.about h2 {
  max-width: 760px;
}

.about p {
  color: var(--muted);
  font-size: 16px;
  max-width: 860px;
  margin-bottom: 18px;
}

.about h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 34px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.about ol {
  counter-reset: steps;
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 6px 0 10px;
}

.about ol li {
  counter-increment: steps;
  position: relative;
  padding: 12px 16px 12px 52px;
  background: rgba(41, 23, 49, 0.65);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  font-size: 15px;
}

.about ol li::before {
  content: counter(steps);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13.5px;
  font-weight: 700;
  color: #170B1C;
  background: linear-gradient(140deg, var(--accent-hover), var(--accent));
}

.about ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 6px;
}

.about ul li {
  position: relative;
  padding: 11px 14px 11px 34px;
  background: rgba(41, 23, 49, 0.65);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  font-size: 15px;
}

.about ul li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: linear-gradient(140deg, var(--accent-hover), var(--accent));
  border-radius: 2px;
}

.faq {
  padding: 88px 0 96px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px 22px;
  transition: border-color 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(217, 164, 65, 0.5);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
}

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

.faq-item summary::after {
  content: "+";
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 19px;
  font-weight: 500;
  color: #170B1C;
  background: linear-gradient(140deg, var(--accent-hover), var(--accent));
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--muted);
  font-size: 15.5px;
  padding: 0 0 18px;
  max-width: 760px;
}

.site-footer {
  background: #120816;
  border-top: 1px solid var(--border);
  padding: 54px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.footer-brand img {
  border-radius: 10px;
  margin-bottom: 14px;
}

.footer-tag {
  font-size: 14px;
  color: var(--muted);
  max-width: 240px;
}

.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-nav a {
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--accent-hover);
}

.footer-info {
  display: grid;
  gap: 9px;
  justify-items: end;
  text-align: right;
}

.footer-pay {
  font-size: 14px;
  color: var(--muted);
}

.footer-mail {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-hover);
}

.footer-copy {
  font-size: 13.5px;
  color: var(--muted);
}

html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .hero-grid, .promo-inner, .app-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .games-grid {
    grid-template-columns: 1fr;
  }

  .app-visual {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-info {
    justify-items: start;
    text-align: left;
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 64px 0 72px;
  }

  .slots, .games, .about, .faq, .promo, .app {
    padding: 64px 0;
  }

  .slots-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .about ul {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-name {
    display: none;
  }

  .header-actions .btn-ghost {
    display: none;
  }
}
