:root {
  --bg: #111111;
  --card: #1a1110;
  --card2: #2b1512;
  --text: #ffffff;
  --muted: #cfcfcf;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #ff5a1f;
  --accent2: #e83018;
  --dark: #070707;
  --radius: 22px;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 90, 31, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at top right,
      rgba(232, 48, 24, 0.16),
      transparent 34%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
}

h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-top: 24px;
}

.header {
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}

.headerInner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.logo {
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.logo img {
  display: block;
  width: 148px;
  max-width: 100%;
  height: auto;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.headerButtons {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.casinoBtn,
.mainBtn,
.darkBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.18),
    inset 0 -3px 8px rgba(0, 0, 0, 0.28),
    0 8px 20px rgba(0, 0, 0, 0.3);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, #ff7a2d 0%, #ff5a1f 48%, #c82b13 100%);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.18),
    inset 0 -3px 8px rgba(0, 0, 0, 0.28),
    0 8px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

.button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.casinoBtn.register,
.mainBtn {
  background: linear-gradient(180deg, #ff7a2d 0%, #ff5a1f 48%, #c82b13 100%);
}

.casinoBtn.login,
.darkBtn {
  background: linear-gradient(180deg, #333 0%, #171717 58%, #050505 100%);
}

.mainContent {
  width: 100%;
}

.content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.contentMain {
  width: 100%;
}

.firstScreen,
.content-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 90, 31, 0.18),
      transparent 36%
    ),
    linear-gradient(145deg, rgba(48, 22, 18, 0.98), rgba(14, 14, 14, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.firstScreen {
  padding: 34px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.firstScreen::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.34), transparent 70%);
  pointer-events: none;
}

.introDescription {
  max-width: 940px;
  margin: 0 auto 16px;
  font-size: 18px;
  color: #f3f3f3;
  text-align: center;
  position: relative;
  z-index: 1;
}

.articleMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px auto 22px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid var(--line);
  width: fit-content;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.articleMeta strong {
  color: #fff;
  font-weight: 800;
}

.articleMeta time {
  margin-left: 8px;
  color: var(--muted);
}

.heroActions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 4px;
  position: relative;
  z-index: 1;
}

.keyFactsMini {
  margin: 24px 0 0;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.keyFactsMini dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.keyFactsMini dl div {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.keyFactsMini dt {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.keyFactsMini dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--muted);
}

.content-section {
  padding: 30px;
  margin: 22px 0;
}

.content-section.highlight {
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.12), rgba(232, 48, 24, 0.12)),
    linear-gradient(145deg, rgba(48, 22, 18, 0.98), rgba(14, 14, 14, 0.98));
}

.tableWrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.general-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.general-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.general-table th,
.general-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.general-table th {
  background: rgba(255, 90, 31, 0.14);
  color: #fff;
  font-weight: 900;
}

.general-table td {
  color: var(--muted);
}

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

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

.steps li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  color: var(--muted);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 14px;
  left: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.promoBox {
  margin: 20px 0;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 90, 31, 0.18),
      transparent 36%
    ),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 90, 31, 0.24);
}

.promoGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.promoCard {
  min-height: 145px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.promoCard strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}

.promoCard span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.categoryTag {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.24);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.gamesCategoriesBox {
  max-width: 920px;
  margin: 22px auto;
  padding: 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(255, 90, 31, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.sectionLabel {
  display: block;
  margin: 20px 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

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

.infoCard {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.infoCard h3 {
  margin-top: 0;
}

.infoCard p:last-child {
  margin-bottom: 0;
}

.appChoiceGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.appChoiceCard {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.appChoiceTitle {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.appChoiceCard p {
  margin-bottom: 0;
}

.appPathBox {
  margin: 22px 0;
  padding: 20px;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 90, 31, 0.18),
      transparent 36%
    ),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 90, 31, 0.24);
}

.appPathBox h3 {
  margin-top: 0;
}

.appBulletList {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.appBulletList li {
  position: relative;
  padding: 16px 18px 16px 42px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-weight: 700;
}

.appBulletList li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.13);
}

.reviewsHeader {
  position: relative;
  padding-right: 150px;
}

.ratingBadge {
  position: absolute;
  top: 0;
  right: 0;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 25%,
      rgba(255, 255, 255, 0.22),
      transparent 28%
    ),
    linear-gradient(145deg, #ff7a2d 0%, #ff5a1f 48%, #c82b13 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 3px 8px rgba(255, 255, 255, 0.18),
    inset 0 -8px 18px rgba(0, 0, 0, 0.22),
    0 14px 30px rgba(255, 90, 31, 0.26);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.ratingBadge strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.ratingBadge span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.reviewList {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.reviewItem {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 90, 31, 0.55);
}

.reviewItem strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
}

.reviewItem p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.faqItem {
  margin: 18px 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
}

.faqItem h3 {
  margin-top: 0;
  text-align: left;
}

.faqItem p {
  margin-bottom: 0;
}

.footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 16px;
  color: var(--muted);
  text-align: center;
}

.footerInner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footerInfo {
  margin: 0 auto 12px;
  max-width: 980px;
  font-size: 14px;
  line-height: 1.55;
}

.footerInfo strong {
  color: #fff;
}

.footerDisclaimer {
  margin: 0 auto 12px;
  max-width: 920px;
  font-size: 14px;
  line-height: 1.5;
}

.copyright {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .headerInner {
    flex-direction: column;
    justify-content: center;
  }

  .headerButtons {
    width: 100%;
    justify-content: center;
  }

  .casinoBtn {
    flex: 1;
    min-width: 0;
  }

  .twoCol,
  .promoGrid,
  .appChoiceGrid {
    grid-template-columns: 1fr;
  }

  .reviewsHeader {
    padding-right: 0;
    padding-top: 134px;
  }

  .ratingBadge {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .content {
    width: min(100% - 22px, var(--max));
    padding-top: 16px;
  }

  .firstScreen,
  .content-section {
    padding: 22px;
    border-radius: 18px;
  }

  .keyFactsMini dl {
    grid-template-columns: 1fr;
  }

  .articleMeta {
    display: block;
    text-align: center;
  }

  .articleMeta time {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }

  .general-table th,
  .general-table td {
    padding: 12px;
  }

  .promoCard {
    min-height: auto;
    text-align: center;
  }

  .categories {
    justify-content: flex-start;
  }

  .categoryTag {
    font-size: 13px;
    padding: 8px 11px;
  }

  .faqItem h3 {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .headerButtons,
  .heroActions {
    flex-direction: column;
  }

  .casinoBtn,
  .mainBtn,
  .darkBtn {
    width: 100%;
  }

  h1 {
    font-size: 32px;
  }
}
