* {
  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: 140px;
  height: 46px; 
  min-width: 120px;
  display: block;
  flex-shrink: 0;
}


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

.nav {
  display: flex;
  align-items: center;
  gap: 18px; 
  color: #fff;
  font-size: 16px; 
  font-weight: 700; 
  flex-shrink: 1;
  flex-wrap: nowrap; 
}

.nav a {
  white-space: nowrap; 
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.7;
}

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

.button {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.button:hover {
  opacity: 0.8;
}

.button.primary {
  background: #d80400;
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  white-space: nowrap;
}

.flag {
  width: 20px;
  height: 14px;
  display: inline-block;
  background: #ccc; 
}

.chevron {
  font-size: 12px;
}

.lang-pill,
.button {
  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, .32);
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
  border: none;
}

.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;
  border: none;
}

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 {
    align-items: center; 
    padding: 10px 16px;
    min-height: 60px;
    gap: 10px;
    justify-content: space-between;
  }
  
  .logo {
    width: 110px;
    height: 36px;
    min-width: 90px;
  }
  
  .nav {
    display: none; 
  }
  
  .header-actions {
    width: auto; 
    display: flex; 
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }

  
  .lang-pill {
    grid-column: auto; 
    padding: 2px 6px;
    font-size: 12px;
  }
  
  .flag {
    width: 22px;
    height: 22px;
  }
  
  .chevron {
    font-size: 10px;
  }
  
  .burger-btn {
    display: flex;
    width: 24px;
    height: 18px;
    gap: 3px;
  }
  
  .burger-btn span {
    height: 2px;
  }
  
  .button.secondary,
  .button.primary {
    min-width: auto;
    width: auto;
    font-size: 14px;
  }
  
  .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;
  }
}

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

.general-ol li {
  counter-increment: step; 
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  background: #0d0d14;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: #b9bac7;
  list-style: none;
}

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

.general-ul {
  margin: 18px 0;
  padding-left: 24px;
  color: #b9bac7;
}

.general-ul li { 
  margin-bottom: 8px;
}


.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: 140px;
  height: 46px;
  min-width: 140px;
  max-width: 140px;
  display: block;
  flex-shrink: 0;
}

.logo img {
  height: 46px;
  width: auto;
  display: block;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 1;
  flex-wrap: nowrap;
}

.nav a {
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.7;
}

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

.button {
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.button:hover {
  opacity: 0.8;
}

.button.primary {
  background: #d80400;
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.chevron {
  font-size: 12px;
  flex-shrink: 0;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 30px;
  height: 24px;
  min-width: 30px;
  max-width: 30px;
  min-height: 24px;
  max-height: 24px;
  justify-content: center;
  flex-shrink: 0;
  align-items: center;
  text-decoration: none;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  min-height: 2px;
  max-height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  display: block;
  transition: opacity 0.3s;
}

.overlay[hidden] {
  display: none;
}

.mobileMenu {
  position: fixed;
  top: 0;
  right: -100%;
  display: block;
  z-index: 100;
  background: linear-gradient(135deg, #272638 0, #1e1e24 100%);
  width: 100%;
  min-height: 100vh;
  max-width: 320px;
  padding: 20px;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobileMenu.open {
  right: 0;
}

.mobileMenuTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobileMenuTop .logo {
  width: 140px;
  height: 46px;
  min-width: 140px;
  max-width: 140px;
}

.mobileMenuTop .logo img {
  height: 46px;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
  transition: transform 0.3s;
  line-height: 1;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.mobileMenuLinks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.mobileMenuLinks a {
  color: #fff;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobileMenuLinks a:hover {
  color: #d80400;
}

.mobileMenuButtons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobileMenuButtons .button {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 16px;
}

@media (max-width: 1300px) {
  .nav {
    display: none;
  }
  
  .burger-btn {
    display: flex;
  }
  
  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-actions .button {
    display: none;
  }
  
  .header-inner {
    padding: 10px 16px;
    min-height: 66px;
    gap: 10px;
  }
  
  .header-actions {
    gap: 6px;
    margin-left: auto;
  }
  
  .lang-pill {
    padding: 2px 6px;
    font-size: 12px;
    min-width: 70px;
    min-height: 45px;
  }
  
  .chevron {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .header-actions .button {
    display: none;
  }
  
  .header-inner {
    padding: 8px 12px;
    min-height: 62px;
    gap: 8px;
  }
  
  .header-actions {
    gap: 5px;
    margin-left: auto;
  }
  
  .lang-pill {
    padding: 2px 5px;
    font-size: 11px;
    border-radius: 4px;
  }
  
  .chevron {
    font-size: 9px;
  }
  
  .mobileMenu {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .header-inner {
    padding: 6px 10px;
    min-height: 58px;
    gap: 6px;
  }
  
  .header-actions {
    gap: 4px;
    margin-left: auto;
  }
  
  .lang-pill {
    padding: 2px 4px;
    font-size: 10px;
    border-radius: 4px;
    gap: 2px;
  }
  
  .chevron {
    font-size: 8px;
  }
}

@media (max-width: 320px) {
  .header-inner {
    padding: 4px 6px;
    min-height: 54px;
    gap: 4px;
  }
  
  .header-actions {
    gap: 3px;
    margin-left: auto;
  }
  
  .lang-pill {
    padding: 1px 3px;
    font-size: 9px;
    border-radius: 3px;
    gap: 2px;
    border-width: 1px;
  }
  
  .chevron {
    font-size: 7px;
  }
  
  .mobileMenu {
    max-width: 100%;
    padding: 12px;
  }
  
  .close-btn {
    font-size: 20px;
    padding: 2px 6px;
  }
  
  .mobileMenuLinks a {
    font-size: 13px;
    padding: 6px 0;
    gap: 14px;
  }
  
  .mobileMenuButtons .button {
    padding: 8px;
    font-size: 13px;
  }
}