:root {
  --wine: #59002e;
  --wine-dark: #260014;
  --wine-soft: #790342;
  --yellow: #ffd21f;
  --yellow-2: #ffb800;
  --ink: #0e070b;
  --panel: #1a0b13;
  --panel-2: #25101b;
  --paper: #fff9e8;
  --muted: #c8b9c1;
  --line: rgba(255, 210, 31, .18);
  --white-line: rgba(255, 255, 255, .09);
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1200px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: #fff;
  background:
    radial-gradient(circle at 92% 4%, rgba(89, 0, 46, .36), transparent 30rem),
    linear-gradient(180deg, #0f080c 0%, #090508 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.6vw, 4.35rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

code {
  padding: .15em .4em;
  color: var(--yellow);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 210, 31, .07);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-pad {
  padding: 88px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -60px;
  padding: 10px 16px;
  color: #111;
  border-radius: 0 0 10px 10px;
  background: var(--yellow);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: #fff3b8;
}

.announcement {
  position: relative;
  z-index: 30;
  color: #20000f;
  background: linear-gradient(90deg, var(--yellow-2), var(--yellow), #ffe670);
  font-size: .8rem;
  font-weight: 750;
}

.announcement__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 34px;
  overflow: hidden;
}

.announcement__badge {
  flex: none;
  padding: 3px 8px;
  color: #fff;
  border-radius: 6px;
  background: var(--wine);
  font-size: .68rem;
  letter-spacing: .08em;
}

.announcement__track {
  display: flex;
  min-width: max-content;
  gap: 28px;
  animation: announcement-run 28s linear infinite;
}

@keyframes announcement-run {
  from { transform: translateX(0); }
  to { transform: translateX(-36%); }
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--white-line);
  background: rgba(15, 8, 12, .84);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 8, 12, .96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}

.header__inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

.brand img {
  width: 205px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a {
  padding: 9px 12px;
  color: #dbcbd3;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 750;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-current {
  color: #18000c;
  outline: none;
  background: var(--yellow);
}

.subpage-hero {
  padding: 72px 0 44px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #ae9aa5;
  font-size: .82rem;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--yellow);
}

.subpage-hero__panel {
  position: relative;
  padding: clamp(38px, 7vw, 84px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 210, 31, .14), transparent 18rem),
    linear-gradient(135deg, #6b0038, #310019 68%, #130009);
  box-shadow: var(--shadow);
}

.subpage-hero__panel::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(38, 0, 20, .98) 0%, rgba(49, 0, 25, .9) 45%, rgba(49, 0, 25, .22) 100%);
}

.subpage-hero__panel::after {
  position: absolute;
  z-index: 1;
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -190px;
  content: "";
  border: 54px solid rgba(255, 210, 31, .07);
  border-radius: 50%;
}

.subpage-hero__panel > :not(.subpage-hero__art) {
  position: relative;
  z-index: 2;
}

.subpage-hero__art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.subpage-hero h1 {
  max-width: 850px;
}

.subpage-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #eadbe3;
  font-size: 1.05rem;
}

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

.page-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.sub-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(89, 0, 46, .1));
}

.sub-card__number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  color: #21000f;
  border-radius: 13px;
  background: var(--yellow);
  font-weight: 950;
}

.sub-card h2,
.sub-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.sub-card p {
  margin-bottom: 20px;
  font-size: .92rem;
}

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

.sub-card .btn {
  min-height: 60px;
  margin-top: auto;
  text-align: center;
}

.sub-card img {
  width: calc(100% + 56px);
  max-width: none;
  margin: -28px -28px 24px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.page-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #51002b, #220012);
}

.page-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.page-cta p {
  margin-bottom: 0;
}

.page-cta__actions {
  display: flex;
  gap: 10px;
}

.content-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.content-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--white-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.content-list li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #21000f;
  border-radius: 50%;
  background: var(--yellow);
  font-size: .75rem;
  font-weight: 950;
}

.content-list strong {
  display: block;
  margin-bottom: 3px;
}

.content-list p {
  margin: 0;
  font-size: .88rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 34px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-section {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 210, 31, .055), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(89, 0, 46, .08));
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.legal-section h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  color: #fff4c2;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}

.legal-section p:last-child,
.legal-section ul:last-child,
.legal-section ol:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 9px;
  padding-left: 1.25rem;
  color: var(--muted);
}

.legal-section li::marker {
  color: var(--yellow);
  font-weight: 900;
}

.legal-nav {
  position: sticky;
  top: 122px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(28, 8, 18, .92);
}

.legal-nav strong {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow);
}

.legal-nav a {
  display: block;
  padding: 8px 0;
  color: #d5c7ce;
  border-bottom: 1px solid var(--white-line);
  font-size: .85rem;
  font-weight: 750;
}

.legal-nav a:last-child {
  border-bottom: 0;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--yellow);
  outline: none;
}

.notice-box {
  padding: 20px 22px;
  color: #fff4c2;
  border: 1px solid rgba(255, 210, 31, .35);
  border-radius: 14px;
  background: rgba(255, 210, 31, .07);
}

.notice-box strong {
  color: var(--yellow);
}

.notice-box p {
  margin: 6px 0 0;
  color: #e4d7de;
}

.topic-heading {
  margin: 42px 0 10px;
  color: var(--yellow);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .15em;
}

.topic-heading:first-child {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
}

.contact-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(89, 0, 46, .1));
}

.contact-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-self: flex-start;
  margin-bottom: 18px;
  place-items: center;
  color: #21000f;
  border-radius: 12px;
  background: var(--yellow);
  font-weight: 950;
}

.contact-card__icon img {
  display: block;
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.contact-card p {
  flex-grow: 1;
  margin-bottom: 18px;
  font-size: .9rem;
}

.placeholder-value {
  display: inline-flex;
  min-height: 40px;
  max-width: 100%;
  align-items: center;
  align-self: flex-start;
  padding: 6px 9px;
  margin-top: auto;
  color: var(--yellow);
  border: 1px dashed rgba(255, 210, 31, .5);
  border-radius: 8px;
  background: rgba(255, 210, 31, .05);
  font-weight: 850;
  overflow-wrap: anywhere;
}

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

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 900;
  line-height: 1.15;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn--large {
  min-height: 52px;
  padding: 14px 24px;
}

.btn--full {
  width: 100%;
}

.btn--yellow {
  color: #1c0900;
  background: linear-gradient(135deg, #ffe868, var(--yellow-2));
  box-shadow: 0 10px 28px rgba(255, 192, 0, .2);
}

.btn--yellow:hover,
.btn--yellow:focus-visible {
  box-shadow: 0 14px 34px rgba(255, 192, 0, .3);
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
}

.btn--outline {
  color: #fff;
  border-color: rgba(255, 210, 31, .42);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--white-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  padding-top: 48px;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 31, .19);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 22% 10%, rgba(255, 210, 31, .08), transparent 18rem),
    linear-gradient(140deg, #3b001f, var(--wine) 48%, #250014);
  box-shadow: var(--shadow);
}

.hero-card--single {
  grid-template-columns: 1fr;
  min-height: auto;
}

.hero-card--single::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(38, 0, 20, .99) 0%, rgba(59, 0, 31, .92) 46%, rgba(59, 0, 31, .22) 100%);
}

.hero-card--single .hero-copy {
  max-width: 940px;
}

.hero-card__art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5vw, 76px);
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #ead9e2;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 26px 0 22px;
  list-style: none;
  color: #f6eaf0;
  font-size: .82rem;
  font-weight: 750;
}

.trust-list span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  place-items: center;
  color: #1d0800;
  border-radius: 50%;
  background: var(--yellow);
}

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-pills span {
  padding: 6px 12px;
  color: #2b0b00;
  border-radius: 999px;
  background: #ffe784;
  font-size: .72rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(89, 0, 46, .82) 0%, transparent 22%, rgba(12, 0, 7, .12) 100%);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-promo {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: flex;
  max-width: 330px;
  flex-direction: column;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(17, 4, 11, .82);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .35);
  backdrop-filter: blur(14px);
}

.hero-promo span {
  color: var(--yellow);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.hero-promo strong {
  margin: 4px 0;
  font-size: 1.1rem;
}

.hero-promo small {
  color: #c9bac2;
}

.quick-nav {
  border-block: 1px solid var(--white-line);
  background: rgba(255, 255, 255, .025);
}

.quick-nav__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.quick-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 10px;
  color: #dbcbd3;
  border-right: 1px solid var(--white-line);
  font-size: .82rem;
  font-weight: 800;
}

.quick-nav a:first-child {
  border-left: 1px solid var(--white-line);
}

.quick-nav a:hover {
  color: var(--yellow);
  background: rgba(255, 210, 31, .05);
}

.quick-nav span {
  color: var(--yellow);
  font-size: .68rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .6fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

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

.section-heading--center {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.game-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  transition: transform .25s ease, border-color .25s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 31, .42);
}

.game-card img {
  width: 100%;
  aspect-ratio: 4 / 2.65;
  object-fit: cover;
}

.game-card__content {
  padding: 22px;
}

.game-card__tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.game-card h3 {
  margin-bottom: 10px;
}

.game-card p {
  min-height: 68px;
  margin-bottom: 18px;
  font-size: .9rem;
}

.game-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: .84rem;
  font-weight: 850;
}

.game-card a span {
  transition: transform .2s ease;
}

.game-card a:hover span {
  transform: translateX(4px);
}

.promo-section {
  padding-top: 24px;
}

.promo-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 31, .2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.promo-card > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.promo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(38, 0, 20, .98) 0%, rgba(89, 0, 46, .82) 47%, rgba(20, 0, 11, .16) 100%);
}

.promo-card__overlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(28px, 6vw, 76px);
  max-width: 600px;
  transform: translateY(-50%);
}

.promo-card__overlay h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.promo-card__overlay p {
  color: #eadde3;
}

.provider-section {
  border-block: 1px solid var(--white-line);
  background: rgba(89, 0, 46, .11);
}

.provider-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.provider-row span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 14px;
  color: #e8d9e1;
  border: 1px solid var(--white-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.provider-directory {
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 210, 31, .09), transparent 24rem),
    rgba(89, 0, 46, .08);
}

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

.provider-card {
  display: grid;
  min-width: 0;
  min-height: 150px;
  place-items: center;
  gap: 10px;
  padding: 20px 12px 16px;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--white-line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.provider-card:hover,
.provider-card:focus-visible {
  outline: none;
  transform: translateY(-5px);
  border-color: rgba(255, 210, 31, .6);
  background: linear-gradient(180deg, rgba(255, 210, 31, .13), rgba(89, 0, 46, .12));
}

.provider-card figure {
  display: grid;
  width: 94px;
  height: 70px;
  margin: 0;
  place-items: center;
}

.provider-card img {
  width: auto;
  max-width: 86px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.provider-card figcaption {
  min-width: 0;
  color: #f7eaf0;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}

.payment-section {
  background:
    radial-gradient(circle at 86% 40%, rgba(255, 210, 31, .09), transparent 23rem),
    linear-gradient(130deg, #220012, #4a0027);
}

.payment-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.payment-layout > div:first-child p {
  max-width: 560px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.payment-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 105px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
}

.payment-item img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}

.payment-item div {
  min-width: 0;
}

.payment-item strong {
  display: block;
  color: var(--yellow);
  font-size: 1.12rem;
}

.payment-item span {
  display: block;
  color: #d6c4ce;
  font-size: .84rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid article {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(89, 0, 46, .08));
}

.feature-grid article::after {
  position: absolute;
  width: 100px;
  height: 100px;
  right: -52px;
  bottom: -52px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 210, 31, .08);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  color: #1c0800;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffe972, var(--yellow-2));
  font-weight: 900;
}

.feature-grid h3 {
  margin-bottom: 10px;
}

.feature-grid p {
  margin-bottom: 0;
  font-size: .9rem;
}

.guide-section {
  border-block: 1px solid var(--white-line);
  background: rgba(255, 255, 255, .018);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  background: var(--panel);
}

.steps > li > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #1c0800;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 1.2rem;
  font-weight: 950;
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p {
  margin-bottom: 0;
  font-size: .9rem;
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 22px;
}

.info-panel,
.cta-panel {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--white-line);
  border-radius: var(--radius-lg);
}

.info-panel {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 210, 31, .08), transparent 20rem),
    var(--panel);
}

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

.cta-panel {
  align-self: stretch;
  color: #220010;
  background: linear-gradient(145deg, #ffe96f, #ffbc16);
}

.cta-panel > span {
  display: block;
  margin-bottom: 14px;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .13em;
}

.cta-panel h3 {
  font-size: 2rem;
}

.cta-panel p {
  color: rgba(34, 0, 16, .72);
}

.cta-panel .btn {
  margin-top: 10px;
}

.cta-panel .btn--yellow {
  color: #fff;
  background: var(--wine);
  box-shadow: none;
}

.cta-panel .btn--outline {
  color: var(--wine);
  border-color: rgba(89, 0, 46, .36);
}

.review-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 210, 31, .07), transparent 32%),
    linear-gradient(180deg, rgba(89, 0, 46, .08), rgba(12, 5, 9, .22));
}

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

.review-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(89, 0, 46, .12));
}

.review-card__status {
  align-self: flex-start;
  padding: 6px 9px;
  margin-bottom: 24px;
  color: var(--yellow);
  border: 1px solid rgba(255, 210, 31, .36);
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
}

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

.review-card__avatar {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: #21000f;
  border-radius: 50%;
  background: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
}

.review-card h3 {
  margin-bottom: 2px;
  font-size: 1rem;
}

.review-card small {
  color: var(--muted);
  font-size: .7rem;
}

.review-card blockquote {
  margin: auto 0 0;
  color: #e5d8df;
  font-size: .86rem;
  font-style: normal;
  line-height: 1.65;
}

.review-disclaimer {
  padding: 14px 18px;
  margin: 22px 0 0;
  color: #bcaab3;
  border-left: 3px solid var(--yellow);
  background: rgba(255, 210, 31, .045);
  font-size: .75rem;
}

.faq-section {
  background: linear-gradient(180deg, transparent, rgba(89, 0, 46, .1));
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
}

.accordion {
  border-top: 1px solid var(--white-line);
}

.accordion-item {
  border-bottom: 1px solid var(--white-line);
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  color: #fff;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.accordion-item button > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: none;
  place-items: center;
  color: var(--yellow);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion-item button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.accordion-panel {
  padding: 0 48px 22px 4px;
}

.accordion-panel p {
  margin-bottom: 0;
}

.site-footer {
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
  background: #0c0509;
}

.guidelines-strip {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--white-line);
  background: #080407;
}

.guidelines-strip img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.livechat-noscript {
  padding: 10px 16px;
  margin: 0;
  color: #d8cbd2;
  background: #0c0509;
  text-align: center;
  font-size: .78rem;
}

.livechat-noscript a {
  color: var(--yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .78fr);
  gap: 42px;
}

.footer-info {
  padding: 56px 0 62px;
  color: #f5d515;
  border-top: 1px dotted rgba(255, 210, 31, .72);
  background: #050505;
}

.footer-info__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.footer-info__column > h3 {
  padding-bottom: 15px;
  margin-bottom: 25px;
  color: var(--yellow);
  border-bottom: 1px dotted rgba(255, 210, 31, .58);
  font-size: .82rem;
  font-weight: 500;
}

.footer-info article + article {
  margin-top: 25px;
}

.footer-info h4 {
  margin-bottom: 7px;
  font-size: .78rem;
  font-weight: 600;
}

.footer-info h4 a {
  color: var(--yellow);
}

.footer-info h4 a:hover {
  color: #fff;
}

.footer-info p {
  margin: 0;
  color: #ffe91f;
  font-size: .76rem;
  line-height: 1.55;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.footer-logo {
  width: 220px;
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 480px;
  margin-bottom: 0;
}

.footer-grid nav,
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid strong {
  margin-bottom: 6px;
  color: var(--yellow);
}

.footer-grid a {
  color: #c8bac1;
  font-size: .9rem;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  margin-top: 44px;
  color: #8f7f87;
  border-top: 1px solid var(--white-line);
  font-size: .78rem;
}

.mobile-dock {
  display: none;
}

.back-to-top {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #1b0700;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.promo-jump {
  position: sticky;
  z-index: 30;
  top: 106px;
  border-block: 1px solid var(--white-line);
  background: rgba(18, 5, 12, .94);
  backdrop-filter: blur(16px);
}

.promo-jump__inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 12px;
  scrollbar-width: none;
}

.promo-jump__inner::-webkit-scrollbar {
  display: none;
}

.promo-jump a {
  flex: none;
  padding: 10px 16px;
  color: #f0e6eb;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
}

.promo-jump a:hover {
  color: #220010;
  border-color: var(--yellow);
  background: var(--yellow);
}

.promo-catalog {
  scroll-margin-top: 170px;
}

.promo-catalog--alt {
  background: linear-gradient(180deg, rgba(89, 0, 46, .1), rgba(20, 4, 12, .3));
}

.promo-list {
  display: grid;
  gap: 20px;
}

.promo-list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.promo-entry {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(68, 8, 40, .76), rgba(25, 6, 16, .94));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .18);
}

.promo-entry summary {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) 1.1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 180px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}

.promo-entry summary::-webkit-details-marker {
  display: none;
}

.promo-entry summary:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: -4px;
}

.promo-entry summary img {
  width: 100%;
  aspect-ratio: 1308 / 290;
  object-fit: cover;
  border: 1px solid rgba(255, 210, 31, .24);
  border-radius: 16px;
}

.promo-entry__heading {
  display: grid;
  gap: 7px;
}

.promo-entry__heading small {
  color: var(--yellow);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.promo-entry__heading strong {
  color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.12;
}

.promo-entry__heading em {
  color: var(--muted);
  font-size: .86rem;
  font-style: normal;
}

.promo-entry__toggle {
  padding: 10px 14px;
  color: #220010;
  border-radius: 999px;
  background: var(--yellow);
  font-size: .7rem;
  font-weight: 900;
  white-space: nowrap;
}

.promo-entry[open] .promo-entry__toggle {
  color: var(--yellow);
  background: rgba(255, 210, 31, .12);
}

.promo-entry__body {
  padding: 28px 32px 32px;
  border-top: 1px solid var(--white-line);
}

.promo-entry__body h3 {
  margin-bottom: 16px;
  color: var(--yellow);
}

.promo-entry__body ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.promo-entry__body li {
  color: #d8cbd2;
  font-size: .9rem;
}

.promo-entry__body strong {
  color: #fff;
}

@media (max-width: 1080px) {
  .header__inner {
    grid-template-columns: 190px 1fr auto;
    gap: 14px;
  }

  .brand img {
    width: 175px;
  }

  .main-nav a {
    padding-inline: 8px;
    font-size: .8rem;
  }

  .hero-card {
    grid-template-columns: 1fr .82fr;
  }

  .hero-copy {
    padding: 48px 42px;
  }

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

  .game-card p {
    min-height: auto;
  }

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

  .provider-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .provider-catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .footer-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 34px;
  }

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

@media (max-width: 860px) {
  :root {
    --container: min(100% - 28px, 720px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    position: fixed;
    z-index: 60;
    top: 106px;
    right: 14px;
    left: 14px;
    display: grid;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(21, 6, 14, .98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px 14px;
    font-size: .9rem;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
    padding: 48px 34px 38px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(89, 0, 46, .55), rgba(12, 0, 7, .06));
  }

  .quick-nav__inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .quick-nav__inner::-webkit-scrollbar {
    display: none;
  }

  .quick-nav a {
    min-width: 142px;
    border-left: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .payment-layout,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-nav {
    position: static;
    order: -1;
  }

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

  .steps {
    grid-template-columns: 1fr;
  }

  .info-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

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

  .page-cta {
    grid-template-columns: 1fr;
  }

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

  .promo-jump {
    top: 102px;
  }

  .promo-entry summary {
    grid-template-columns: 230px 1fr;
  }

  .promo-entry__toggle {
    grid-column: 2;
    justify-self: start;
  }

  .promo-list--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 24px);
    --radius-lg: 22px;
  }

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

  body {
    padding-bottom: 70px;
  }

  .announcement__inner {
    min-height: 30px;
  }

  .announcement__track {
    font-size: .72rem;
  }

  .site-header {
    top: 0;
  }

  .header__inner {
    min-height: 66px;
  }

  .brand img {
    width: 168px;
  }

  .main-nav {
    top: 102px;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-copy {
    padding: 36px 24px 32px;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-list {
    gap: 9px 13px;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-promo {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .game-grid,
  .feature-grid,
  .payment-grid,
  .page-grid,
  .page-grid--four,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    padding-top: 34px;
  }

  .subpage-hero__panel {
    padding: 34px 24px;
  }

  .subpage-hero__panel::before,
  .hero-card--single::before {
    background: linear-gradient(90deg, rgba(38, 0, 20, .98), rgba(49, 0, 25, .86), rgba(49, 0, 25, .58));
  }

  .subpage-hero__art,
  .hero-card__art {
    object-position: 68% center;
  }

  .page-cta__actions {
    flex-direction: column;
  }

  .game-card img {
    aspect-ratio: 16 / 8.6;
  }

  .promo-card,
  .promo-card > img {
    min-height: 500px;
  }

  .promo-card__overlay {
    right: 24px;
    left: 24px;
  }

  .promo-card::after {
    background: linear-gradient(180deg, rgba(38, 0, 20, .98), rgba(89, 0, 46, .78), rgba(20, 0, 11, .18));
  }

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

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

  .provider-card {
    min-height: 138px;
    padding-inline: 10px;
  }

  .provider-row span {
    min-height: 68px;
    font-size: .64rem;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
    padding: 22px;
  }

  .steps > li > span {
    width: 48px;
    height: 48px;
  }

  .info-panel,
  .cta-panel {
    padding: 28px 24px;
  }

  .accordion-item button {
    padding-block: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .guidelines-strip {
    padding-block: 18px;
  }

  .guidelines-strip img {
    width: 100%;
  }

  .footer-info {
    padding-block: 42px;
  }

  .footer-info__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-info__column > h3 {
    margin-bottom: 20px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-dock {
    position: fixed;
    z-index: 70;
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    min-height: 62px;
    padding: 6px;
    border: 1px solid rgba(255, 210, 31, .25);
    border-radius: 18px;
    background: rgba(22, 6, 14, .96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
    backdrop-filter: blur(18px);
  }

  .mobile-dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cdbfc6;
    border-radius: 12px;
    font-size: .64rem;
    font-weight: 800;
  }

  .mobile-dock a span {
    margin-bottom: 1px;
    color: var(--yellow);
    font-size: 1.1rem;
  }

  .mobile-dock .mobile-dock__primary {
    color: #21000f;
    background: var(--yellow);
  }

  .mobile-dock .mobile-dock__primary span {
    color: #21000f;
  }

  .back-to-top {
    right: 16px;
    bottom: 82px;
  }

  .promo-jump {
    top: 96px;
  }

  .promo-entry summary {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 14px;
  }

  .promo-entry summary img {
    aspect-ratio: 1308 / 290;
  }

  .promo-entry__toggle {
    grid-column: 1;
  }

  .promo-entry__body {
    padding: 24px 22px 26px;
  }
}

/* Home page refinements: provider loop, payment logos, five feature cards, and contact map. */
.provider-section .section-heading {
  margin-bottom: 34px;
}

.provider-marquee {
  width: 100%;
  padding-block: 4px 14px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.provider-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: provider-loop 46s linear infinite;
}

.provider-marquee:hover .provider-track {
  animation-play-state: paused;
}

.provider-group {
  display: flex;
  flex: none;
  gap: 16px;
  padding-right: 16px;
}

.provider-item {
  display: flex;
  width: 210px;
  min-height: 92px;
  flex: 0 0 210px;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  color: #fff;
  border: 1px solid rgba(255, 210, 31, .34);
  border-radius: 15px;
  background: #17000d;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.provider-item:hover,
.provider-item:focus-visible {
  outline: none;
  transform: translateY(-3px);
  border-color: var(--yellow);
  box-shadow: 0 15px 30px rgba(255, 196, 0, .12);
}

.provider-item img {
  display: block;
  width: 72px;
  height: 48px;
  flex: 0 0 72px;
  object-fit: contain;
}

.provider-item span {
  min-width: 0;
  font-size: .84rem;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

@keyframes provider-loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.payment-layout {
  grid-template-columns: .68fr 1.32fr;
  gap: 46px;
}

.payment-item {
  display: flex;
  min-width: 0;
  min-height: 164px;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 18px;
}

.payment-item__heading {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.payment-item__heading strong,
.payment-item__heading span {
  margin: 0;
}

.payment-item__heading span {
  text-align: right;
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
}

.payment-logos img {
  display: block;
  width: 100%;
  height: 54px;
  padding: 8px;
  object-fit: contain;
  border: 1px solid rgba(255, 210, 31, .2);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(22, 0, 12, .96), rgba(67, 0, 36, .82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 8px 18px rgba(0, 0, 0, .24);
  filter: brightness(1.18) saturate(1.08);
}

.payment-logos img[alt="QRIS"],
.payment-logos img[alt="Tri"] {
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255, 255, 255, .18));
}

.payment-logos--single {
  grid-template-columns: minmax(120px, 180px);
}

.payment-logos--banks {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-grid article {
  min-width: 0;
  padding: 24px 19px;
}

.feature-grid h3 {
  font-size: 1.08rem;
  line-height: 1.15;
}

.feature-grid p {
  font-size: .84rem;
  line-height: 1.58;
}

.feature-icon img,
.sub-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sub-card__icon img {
  width: 24px !important;
  max-width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  object-fit: contain !important;
}

.sub-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  overflow: hidden;
  place-items: center;
  border-radius: 13px;
  background: var(--yellow);
}

.final-cta-section .container {
  width: min(calc(100% - 40px), 1400px);
}

.location-section {
  padding-top: 0;
}

.location-card {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: stretch;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, rgba(81, 0, 43, .75), rgba(34, 0, 18, .92));
  box-shadow: var(--shadow);
}

.location-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(8px, 2vw, 22px);
}

.location-card__content .contact-card__icon {
  margin-bottom: 22px;
}

.location-card__content h2 {
  margin-bottom: 12px;
}

.location-card__content p {
  max-width: 430px;
  margin-bottom: 24px;
  color: #eadbe3;
  font-size: 1rem;
}

.location-map {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 31, .24);
  border-radius: 18px;
  background: #17000d;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-layout,
  .location-card {
    grid-template-columns: 1fr;
  }

  .final-cta-section .container {
    width: var(--container);
  }
}

@media (max-width: 600px) {
  .provider-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }

  .provider-track {
    animation-duration: 38s;
  }

  .provider-group {
    gap: 10px;
    padding-right: 10px;
  }

  .provider-item {
    width: 172px;
    min-height: 78px;
    flex-basis: 172px;
    gap: 9px;
    padding: 11px 12px;
  }

  .provider-item img {
    width: 58px;
    height: 40px;
    flex-basis: 58px;
  }

  .provider-item span {
    font-size: .74rem;
  }

  .payment-item {
    min-height: 0;
  }

  .payment-logos,
  .payment-logos--banks {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .payment-logos img {
    height: 50px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: 16px;
  }

  .location-card__content {
    padding: 12px 8px;
  }

  .location-map,
  .location-map iframe {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
