:root {
  --header-footer: #090709;
  --button: #ff9601;
  --bg: #050505;
  --panel: #111111;
  --panel-soft: #181818;
  --text: #f6f1e8;
  --muted: #c7b9a6;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.content-wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--header-footer);
  border-bottom: 1px solid rgba(255, 150, 1, 0.26);
}

.header-inner {
  width: min(1200px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand img,
.footer-brand img {
  width: 86px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--button);
}

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

.header-button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  background: var(--button);
  color: #150d03;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(255, 150, 1, 0.24);
  transition: transform 180ms ease, filter 180ms ease;
}

.header-button {
  min-width: 112px;
  padding: 0 18px;
}

.header-button:hover,
.cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.hero {
  padding: 28px 0 72px;
  text-align: center;
}

.hero-media {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  background: #111;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.22) 56%, rgba(5, 5, 5, 0.62)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.7), transparent 44%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: min(620px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: clamp(24px, 7vw, 92px);
  text-align: left;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--button);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.cta-button {
  min-width: 190px;
  margin-top: 28px;
  padding: 0 30px;
  font-size: 1.12rem;
}

.pulse {
  animation: pulse 1.75s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 150, 1, 0.45), 0 12px 24px rgba(255, 150, 1, 0.24);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(255, 150, 1, 0), 0 16px 30px rgba(255, 150, 1, 0.28);
  }
}

.section-heading {
  margin-bottom: 26px;
}

.games-section,
.seo-section,
.payments-section,
.reviews-section,
.faq-section,
.page-shell,
.updated-block {
  padding: 54px 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 44% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
}

.game-card h3 {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 10px;
  margin: 0;
  font-size: 0.95rem;
}

.game-card:hover img {
  transform: scale(1.05);
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.seo-content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.seo-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  max-width: 100%;
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
}

.seo-intro {
  background: rgba(255, 150, 1, 0.08);
  border-color: rgba(255, 150, 1, 0.28);
}

.seo-media-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: center;
}

.seo-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.seo-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.seo-block h2,
.seo-block h3,
.page-copy h1,
.page-copy h2,
.page-copy h3 {
  margin-top: 0;
}

.seo-block h3:not(:first-child),
.page-copy h2:not(:first-child),
.page-copy h3:not(:first-child) {
  margin-top: 28px;
}

.seo-section p,
.seo-section li,
.page-copy p,
.page-copy li {
  color: var(--muted);
}

.seo-section ul,
.seo-section ol,
.page-copy ul,
.page-copy ol {
  padding-left: 22px;
}

.page-copy {
  max-width: 980px;
  margin: 0 auto;
}

.page-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.page-copy a {
  color: var(--button);
  font-weight: 700;
}

.site-form {
  display: grid;
  gap: 16px;
  margin: 24px 0 30px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(255, 150, 1, 0.28);
  border-radius: 8px;
  background: rgba(255, 150, 1, 0.08);
}

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

.site-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.site-form input,
.site-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050505;
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
}

.site-form textarea {
  resize: vertical;
}

.site-form input:focus,
.site-form textarea:focus {
  outline: 2px solid rgba(255, 150, 1, 0.52);
  outline-offset: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.site-form .cta-button {
  border: 0;
  cursor: pointer;
}

.seo-panel,
.review-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.seo-panel {
  padding: 24px;
}

.table-wrap {
  max-width: 100%;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  color: var(--text);
}

caption {
  margin-bottom: 10px;
  color: var(--muted);
  text-align: left;
  font-weight: 700;
}

th,
td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

th {
  background: rgba(255, 150, 1, 0.12);
}

.logo-strip,
.trust-area,
.providers-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.payment-strip img,
.trust-area a,
.providers-area img {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f2ea;
}

.payment-strip img {
  width: 146px;
  height: 64px;
  padding: 12px;
  object-fit: contain;
}

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

.review-card {
  padding: 22px;
}

.review-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

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

.review-card strong {
  color: var(--button);
}

.review-card h3 {
  margin: 0;
  color: var(--button);
}

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

.faq-question {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--button);
  transform: translateY(-50%);
}

.faq-question span::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] span::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.updated-block {
  text-align: center;
}

.updated-block p {
  display: inline-flex;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(255, 150, 1, 0.28);
  border-radius: 8px;
  background: var(--panel-soft);
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  background: var(--header-footer);
  border-top: 1px solid rgba(255, 150, 1, 0.26);
}

.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 22px;
}

.trust-area {
  margin: 30px 0 24px;
}

.trust-area a {
  width: 168px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform 180ms ease, filter 180ms ease;
}

.trust-area a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.trust-area img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.providers-area {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.providers-area img {
  width: 132px;
  height: 58px;
  padding: 10px;
  object-fit: contain;
}

.copyright {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 58px;
    grid-template-columns: auto 1fr;
    gap: 12px;
    width: min(100% - 20px, 1200px);
  }

  .brand img {
    width: 48px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
    gap: 6px;
  }

  .header-button {
    min-width: 0;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 16px 0 48px;
  }

  .hero-media {
    min-height: 430px;
    width: min(100% - 20px, 1180px);
  }

  .hero-media img {
    min-height: 430px;
  }

  .hero-copy {
    width: min(470px, calc(100% - 32px));
    margin-left: 18px;
  }

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

  .seo-layout,
  .seo-media-block,
  .form-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .content-wrap {
    width: calc(100% - 20px);
  }

  .header-inner {
    min-height: 48px;
  }

  .brand img {
    width: 38px;
  }

  .header-button {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-media img {
    min-height: 360px;
  }

  .hero-copy {
    justify-content: flex-end;
    padding-bottom: 44px;
    margin-left: 14px;
  }

  h1 {
    font-size: 3rem;
  }

  .games-section,
  .seo-section,
  .payments-section,
  .reviews-section,
  .faq-section,
  .page-shell,
  .updated-block {
    padding: 38px 0;
  }

  .payment-strip img,
  .trust-area a {
    width: calc(50% - 8px);
  }

  .providers-area img {
    width: calc(50% - 8px);
  }
}
