:root {
  color-scheme: light;
  --primary: #ff0000;
  --primary-dark: #d90000;
  --gold: #ffd700;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #eef1f4;
  --gray-300: #cbd2da;
  --text: #1f2937;
  --muted: #5f6b7a;
  --border: #e2e6ea;
  --yellow-soft: #fff9d9;
  --shadow: 0 16px 40px rgba(31, 41, 55, 0.1);
  --radius: 22px;
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: var(--gray-50);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.access-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 22px;
}

.brand {
  display: block;
  width: min(76vw, 330px);
}

.access-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.account-button,
.primary-cta,
.banner-link,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 5px solid var(--gold);
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.account-button {
  padding: 16px 14px;
  font-size: clamp(1rem, 5vw, 1.2rem);
}

.account-button:active,
.primary-cta:active,
.banner-link:active,
.submit-button:active {
  background: var(--primary-dark);
}

.main-nav {
  border-top: 1px solid var(--border);
  background: var(--white);
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: min(100% - 24px, var(--container));
  max-width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 6px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.nav-links a:focus-visible,
.nav-links a:active {
  color: var(--primary);
}

@media (max-width: 599px) {
  .main-nav {
    overflow: visible;
  }

  .nav-links {
    margin-inline: auto;
    overflow: visible;
  }
}

.hero {
  padding-top: 58px;
  background: var(--white);
}

.hero-grid {
  display: grid;
  gap: 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.15;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 14vw, 5.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 8vw, 3.25rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

p {
  margin-top: 0;
}

.hero-subheading {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: clamp(1.28rem, 5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.35;
}

.hero-text,
.section-heading > p:last-child,
.contact-intro {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.04rem;
}

.responsible-gaming-note {
  margin-top: 20px;
  color: var(--text);
  font-weight: 700;
}

.responsible-gaming-title {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.responsible-gaming-tips {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.responsible-gaming-tips li::marker {
  color: var(--primary);
}

.primary-cta {
  min-width: 190px;
  margin-top: 12px;
  padding: 16px 26px;
}

.hero-summary {
  padding: 26px;
  border: 1px solid var(--border);
  border-top: 7px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gray-50);
  box-shadow: var(--shadow);
}

.hero-summary h2 {
  font-size: clamp(1.65rem, 7vw, 2.4rem);
}

.summary-label {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text);
  content: "\2713";
  font-size: 0.76rem;
  font-weight: 900;
}

.featured {
  padding-top: 0;
}

.promo-banner {
  display: grid;
  gap: 24px;
  padding: 30px 24px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--yellow-soft);
  box-shadow: var(--shadow);
}

.promo-banner h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 7vw, 2.55rem);
}

.promo-banner p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--muted);
}

.banner-link {
  width: 100%;
  padding: 16px 20px;
  font-size: 0.92rem;
}

.content-grid {
  display: grid;
  gap: 24px;
}

.rich-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.feature-card,
.reason-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.feature-card {
  min-height: 220px;
  padding: 24px;
  border-bottom: 4px solid var(--gold);
}

.card-number {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-card p,
.reason-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.reason-card {
  padding: 24px;
  border-left: 5px solid var(--primary);
}

.updates-list {
  display: grid;
  border-top: 1px solid var(--gray-300);
}

.updates-list article {
  padding: 26px 0;
  border-bottom: 1px solid var(--gray-300);
}

.updates-list h3 {
  font-size: 1.35rem;
}

.updates-list article > p:last-child {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
}

.redemption-steps {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0;
  padding-left: 28px;
  color: var(--muted);
}

.redemption-steps li {
  padding-left: 6px;
}

.redemption-steps li::marker {
  color: var(--primary);
  font-weight: 800;
}

.wallet-guide-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.wallet-guide-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-top: 6px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gray-50);
}

.wallet-guide-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.wallet-guide-card > p {
  margin-bottom: 20px;
  color: var(--muted);
}

.wallet-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 30px;
  color: var(--muted);
}

.wallet-steps li {
  padding-left: 4px;
  line-height: 1.6;
}

.wallet-steps li::marker {
  color: var(--primary);
  font-weight: 800;
}

.wallet-steps strong,
.withdrawal-limits strong {
  color: var(--text);
}

.withdrawal-limits {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  background: var(--gray-50);
}

.withdrawal-limits h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.withdrawal-limits ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.withdrawal-limits li {
  line-height: 1.5;
}

.update-date {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screenshot-grid {
  display: grid;
  gap: 24px;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.screenshot-frame {
  padding: 16px;
  background: var(--gray-100);
}

.screenshot-frame img {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 15px;
  background: var(--white);
}

.screenshot-card figcaption {
  padding: 22px;
}

.screenshot-card h3 {
  margin-bottom: 8px;
}

.screenshot-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.screenshot-note {
  max-width: 900px;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--gold);
  background: var(--white);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  background: var(--white);
}

.faq-list details[open] {
  border-left-color: var(--primary);
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 20px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--primary);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 22px;
  color: var(--muted);
}

.faq-list details a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.contact-grid {
  display: grid;
  gap: 36px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  font-style: normal;
}

.contact-details div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-details span {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 17px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--gray-50);
}

.contact-form .submit-button {
  align-self: start;
  max-width: 280px;
  min-height: 58px;
  margin-top: 8px;
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-group label {
  font-size: 0.9rem;
  font-weight: 800;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
}

.field-group input {
  min-height: 48px;
  padding: 9px 12px;
}

.field-group textarea {
  min-height: 140px;
  padding: 12px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(255, 215, 0, 0.55);
}

.submit-button {
  width: 100%;
  padding: 16px 24px;
  cursor: pointer;
}

.legal-section {
  border-top: 1px solid var(--border);
}

.legal-content {
  max-width: 920px;
}

.legal-content > p,
.legal-content li {
  color: var(--muted);
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.legal-content code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--gray-100);
  color: var(--text);
}

.site-footer {
  padding: 44px 0;
  border-top: 6px solid var(--gold);
  background: var(--white);
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.footer-brand {
  display: block;
  width: 190px;
  margin-bottom: 16px;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:focus-visible,
.footer-links a:active {
  color: var(--primary);
}

@media (min-width: 600px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .access-actions {
    max-width: 600px;
    gap: 24px;
  }

  .account-button {
    min-height: 68px;
    padding-inline: 28px;
    font-size: 1.15rem;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    width: min(100% - 48px, var(--container));
    gap: 20px;
  }

  .nav-links a {
    min-height: auto;
    padding-inline: 16px;
  }

  .promo-banner {
    padding: 38px;
  }

  .feature-grid,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wallet-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .withdrawal-limits ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

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

  .contact-form {
    padding: 32px;
  }
}

@media (min-width: 820px) {
  .section {
    padding: 96px 0;
  }

  .access-panel {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .brand {
    width: 360px;
  }

  .access-actions {
    max-width: 700px;
  }

  .hero {
    padding-top: 88px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: 64px;
  }

  .featured {
    padding-top: 0;
  }

  .promo-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .banner-link {
    width: auto;
    min-width: 230px;
  }

  .content-grid {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    gap: 70px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1.3fr;
    align-items: end;
  }

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

@media (min-width: 1040px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reason-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .screenshot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  .skip-link,
  .access-actions,
  .main-nav,
  .primary-cta,
  .banner-link,
  .contact-form {
    display: none;
  }

  body {
    color: #1f2937;
    background: #ffffff;
  }

  .section,
  .site-footer {
    padding: 24px 0;
  }
}
