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

:root {
  --bg: #050509;
  --bg-soft: #0d0d14;
  --surface: #15151f;
  --surface-2: #1f202d;
  --text: #ffffff;
  --muted: #b9bac7;
  --muted-2: #8d8fa3;
  --accent: #d80400;
  --accent-hover: #ff2a20;
  --wine: #5a0820;
  --gold: #f7cf4d;
  --gold-hover: #ffd84f;
  --border: rgba(255, 255, 255, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

body {
  background: #050509;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

@keyframes pulseButton {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(247, 207, 77, 0);
  }
  50% {
    transform: scale(1.045);
    box-shadow: 0 0 28px rgba(247, 207, 77, 0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(247, 207, 77, 0);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 9, 0.98),
      rgba(45, 6, 8, 0.9),
      rgba(5, 5, 9, 0.98)
    ),
    radial-gradient(circle at 80% 0, rgba(216, 4, 0, 0.38), transparent 32%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.logo {
  width: 172px;
  height: 58px;
  min-width: 172px;
  display: block;
}

.logo img {
  height: 58px;
  display: block;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 46px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

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

.lang-pill,
.button {
  min-height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
  border: 0;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.lang-pill {
  min-width: 92px;
  gap: 10px;
  background: #202332;
  color: #fff;
}

.flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  background: linear-gradient(
    to bottom,
    #000 0 33%,
    #dd0000 33% 66%,
    #ffce00 66%
  );
}

.chevron {
  color: var(--gold);
  font-size: 16px;
}

.button.secondary {
  min-width: 150px;
  padding: 0 32px;
  background: var(--wine);
  color: #fff;
}

.button.primary {
  min-width: 170px;
  padding: 0 36px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 34px rgba(216, 4, 0, 0.32);
}

.button:hover,
.promo-btn:hover {
  background: var(--gold-hover);
  color: #15110a;
  animation: pulseButton 0.85s ease-in-out infinite;
}

.promo-banner {
  max-width: 1180px;
  margin: 36px auto 0;
  padding: 0 20px;
}

.promo-card {
  min-height: 330px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(255, 220, 120, 0.22),
      transparent 22%
    ),
    linear-gradient(135deg, #5d0010 0%, #b10012 48%, #ff4a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 42px 32px;
  box-shadow: var(--shadow);
}

.promo-content {
  max-width: 760px;
}

.promo-label {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #fff;
}

.promo-value {
  font-size: 64px;
  line-height: 1.08;
  font-weight: 900;
  color: #fff;
  margin-bottom: 26px;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(216, 4, 0, 0.32);
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 20px 40px;
}

.intro {
  text-align: center;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  text-align: center;
}

h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  text-align: center;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.section-label {
  color: #fff;
  font-weight: 800;
  margin: 20px 0 12px;
}

.section {
  margin: 26px 0;
  padding: 32px;
  background: rgba(21, 21, 31, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  margin: 18px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--muted);
}

th {
  color: #fff;
  background: #202130;
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 10px;
  margin: 18px 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
}

.steps li::before {
  content: counter(step);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.bullet-list {
  margin: 18px 0;
  padding-left: 24px;
  color: var(--muted);
}

.bullet-list li {
  margin-bottom: 8px;
}

.game-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 18px 0;
}

.game-card {
  background: linear-gradient(180deg, #171821 0%, #10111a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
  min-height: 140px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}

.game-card-title {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.game-card-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.app-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 18px 0;
}

.app-card {
  background: linear-gradient(180deg, #171821 0%, #10111a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
  min-height: 170px;
}

.app-card-title {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
}

.app-card-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: #fff;
}

details p {
  margin-top: 12px;
  margin-bottom: 0;
}

.footer {
  background: #030306;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 34px 20px 28px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  color: var(--muted-2);
  font-size: 14px;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #1b1d28;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.footer-strip {
  background: #171821;
  border-radius: 10px;
  padding: 15px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.footer-logo-text {
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  opacity: 0.92;
}

.footer-providers {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px 18px;
  margin: 20px 0;
  align-items: center;
  text-align: center;
}

.provider-name {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.88;
}

.footer-responsible {
  background: #171821;
  border-radius: 10px;
  padding: 14px 16px;
  color: #d7d8e2;
  font-size: 13px;
  margin-top: 18px;
}

.footer-copy {
  background: #171821;
  border-radius: 10px;
  padding: 14px 16px;
  color: #b4b6c5;
  font-size: 12px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 17px;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .lang-pill {
    grid-column: 1 / -1;
    width: 100%;
  }

  .button.secondary,
  .button.primary {
    min-width: 0;
    width: 100%;
    font-size: 17px;
  }

  .promo-banner {
    margin-top: 22px;
    padding: 0 14px;
  }

  .promo-card {
    min-height: auto;
    padding: 28px 18px;
  }

  .promo-label {
    font-size: 22px;
  }

  .promo-value {
    font-size: 40px;
  }

  .promo-btn {
    width: 100%;
  }

  main {
    padding: 24px 14px 36px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 25px;
  }

  .section {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .game-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .game-card-title {
    text-align: center;
  }

  .app-text {
    grid-template-columns: 1fr;
  }

  .footer-top {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .footer-strip {
    gap: 12px;
  }

  .footer-inner {
    text-align: center;
  }
}
