:root {
  --gold: #d4af37;
  --gold-dark: #9b6b08;
  --gold-deep: #7b4d00;
  --cream: #fff7e6;
  --ivory: #fffdf8;
  --sand: #f3e3b0;
  --ink: #241805;
  --muted: #725f3e;
  --white: #ffffff;
  --line: rgba(184, 134, 11, 0.24);
  --shadow: 0 18px 48px rgba(104, 66, 0, 0.13);
  --shadow-soft: 0 10px 30px rgba(104, 66, 0, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --text-base: 16px;
  --text-sm: 14px;
  --text-xs: 12px;
  --text-faq-q: 15px;
  --text-eyebrow: 12px;
  --heading-1: clamp(32px, 4vw, 54px);
  --heading-2: clamp(24px, 2.8vw, 38px);
  --heading-3: clamp(30px, 4vw, 50px);
  --heading-4: 17px;
  --heading-card: 18px;
  --heading-display: clamp(36px, 5vw, 62px);
  --header-height: 82px;
  --header-logo-width: 132px;
  --header-logo-height: 54px;
  --nav-font-size: 13px;
  --nav-button-height: 42px;
  --nav-button-font-size: 13px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: var(--text-base);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  position: fixed;
  z-index: 998;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: rgba(36, 24, 5, 0.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

body.menu-open .site-header {
  background: var(--ivory);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(78, 47, 0, 0.12);
}

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

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--gold-deep);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 6px 24px rgba(104, 66, 0, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: var(--header-logo-width);
  height: var(--header-logo-height);
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: var(--nav-font-size);
  font-weight: 700;
  white-space: nowrap;
}

.main-nav > a {
  position: relative;
  padding: 29px 0 27px;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold-dark), #f5d77b);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.account-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.button {
  display: inline-flex;
  min-height: var(--nav-button-height);
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--nav-button-font-size);
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-ghost {
  color: var(--gold-deep);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.72);
}

.button-gold {
  color: #281800;
  border-color: #b57900;
  background:
    linear-gradient(#fff8cf, #fff8cf) padding-box,
    linear-gradient(135deg, #fff0a3, #b87900) border-box;
  background-image: linear-gradient(145deg, #fff4b0 0%, #d6a926 36%, #fff0a0 55%, #b97800 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8), 0 9px 20px rgba(155, 107, 8, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(300px, calc(100vw * 793 / 1983), 720px);
  background: var(--cream);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Homepage hero: show full banner below the menu (no top crop / overlap) */
.hero--banner-fit {
  height: auto;
  aspect-ratio: 1983 / 793;
}

.hero--banner-fit .hero-slide img {
  object-fit: contain;
  object-position: left top;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(155, 107, 8, 0.35);
  border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(87, 54, 0, 0.34);
  cursor: pointer;
  transition: width 0.2s ease, border-radius 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--gold-dark);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h4,
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: var(--text-eyebrow);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h4::before,
.section-heading h4::after {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 4px;
  content: "";
  background: var(--gold);
}

.section-heading h1 {
  margin-bottom: 15px;
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-heading h2 {
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: var(--heading-2);
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--text-base);
}

/* Site-wide typography — inner pages match homepage scale */
.about-hero-copy h1,
.casino-hero-title,
.live-hero-title,
.fishing-hero-title,
.cards-hero-title,
.sports-hero-title,
.app-hero-title,
.tprd-content-header h1 {
  font-size: var(--heading-1);
}

.about-hero-lead,
.live-hero-lead,
.fishing-hero-lead,
.cards-hero-lead,
.sports-hero-lead,
.app-hero-lead {
  font-size: var(--text-base);
}

.about-siapa-copy h2,
.about-misi-visi-heading h2,
.about-games-heading h2,
.about-usp-heading h2,
.about-safety-content h2,
.casino-seo-copy h2,
.live-seo-copy h2,
.fishing-seo-copy h2,
.sports-seo-copy h2,
.cards-seo-content h2,
.app-seo-panel h2 {
  font-size: var(--heading-2);
}

.cards-seo-content,
.cards-seo-content p {
  font-size: var(--text-base);
}

.casino-seo-copy,
.live-seo-copy,
.fishing-seo-copy,
.sports-seo-copy,
.cards-seo-copy,
.casino-seo-more,
.live-seo-more,
.fishing-seo-more,
.sports-seo-more,
.cards-seo-more,
.tprd-intro,
.about-misi-visi-body p,
.about-siapa-copy p,
.live-providers-note {
  font-size: var(--text-base);
}

.casino-seo-more h3,
.live-seo-more h3,
.fishing-seo-more h3,
.sports-seo-more h3,
.cards-seo-more h3,
.about-misi-visi-body h3 {
  font-size: var(--heading-card);
}

.casino-seo-more h4,
.live-seo-more h4,
.fishing-seo-more h4,
.sports-seo-more h4 {
  font-size: var(--heading-4);
}

.app-seo-panel p {
  font-size: var(--text-base);
}

.legal-accordion .faq-answer {
  font-size: var(--text-sm);
}

.legal-accordion .faq-answer h4 {
  font-size: var(--text-base);
}

.tprd-help-copy h2 {
  font-size: var(--heading-card);
}

.tprd-help-copy p {
  font-size: var(--text-sm);
}

.casino-hero-note,
.live-hero-note,
.fishing-hero-note,
.cards-hero-note,
.sports-hero-note,
.app-hero-note {
  font-size: var(--text-xs);
}

.game-directory {
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 175, 55, 0.12), transparent 27%),
    var(--ivory);
}

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

.game-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.game-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(30, 18, 0, 0.24) 52%, rgba(30, 18, 0, 0.95) 100%);
}

.game-card::after {
  position: absolute;
  z-index: 3;
  inset: 10px;
  content: "";
  border: 1px solid rgba(255, 230, 145, 0.42);
  border-radius: 15px;
  pointer-events: none;
}

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

.game-card:hover img,
.game-card:focus-visible img {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: #fff9e7;
  text-align: center;
}

.game-card-overlay h4 {
  margin: 8px 0 4px;
  color: #ffe592;
  font-size: 20px;
  text-transform: uppercase;
}

.game-card-overlay > span:last-child {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 232, 155, 0.7);
  border-radius: 50%;
  color: #342000;
  background: linear-gradient(145deg, #fff6c9, #c99417);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  font-size: 19px;
}

.register-flow {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(243, 227, 176, 0.7), rgba(255, 253, 248, 0.92)),
    var(--cream);
}

.step-grid {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  list-style: none;
  counter-reset: step;
}

.step-grid::before {
  position: absolute;
  z-index: 0;
  top: 52px;
  right: 11%;
  left: 11%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 255px;
  padding: 34px 22px 26px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.step-number {
  position: absolute;
  top: 10px;
  right: 14px;
  color: rgba(155, 107, 8, 0.12);
  font-size: 45px;
  font-weight: 900;
}

.step-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid #c28a16;
  border-radius: 20px;
  color: #281800;
  background: linear-gradient(145deg, #fff5c2, #ca931a);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8), 0 12px 24px rgba(139, 89, 0, 0.2);
  font-size: 30px;
  transform: rotate(3deg);
}

.step-card h3 {
  margin-bottom: 9px;
  font-size: var(--heading-card);
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

.center-action {
  margin-top: 38px;
  text-align: center;
}

.center-action .button {
  min-width: 190px;
}

.usp-section {
  background: var(--ivory);
}

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

.usp-card {
  display: flex;
  min-height: 150px;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 230, 0.85));
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.usp-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.usp-icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border-radius: 18px;
  color: #281800;
  background: linear-gradient(145deg, #fff7cf 10%, #d5a725 55%, #a96d00);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8), 0 12px 22px rgba(141, 91, 0, 0.2);
  font-size: 28px;
}

.usp-card h4 {
  margin-bottom: 8px;
  font-size: var(--heading-4);
}

.usp-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

.platform-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 55%, rgba(212, 175, 55, 0.22), transparent 28%),
    linear-gradient(135deg, #fff4d8, var(--ivory));
}

.platform-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 68px;
}

.platform-copy h3 {
  margin-bottom: 24px;
  font-size: var(--heading-3);
  letter-spacing: -0.035em;
}

.platform-copy p {
  color: var(--muted);
  font-size: var(--text-base);
}

.check-list,
.app-benefits {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li,
.app-benefits li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before,
.app-benefits li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #2b1a00;
  content: "✓";
  background: linear-gradient(145deg, #fff2a2, #c98b0f);
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(155, 107, 8, 0.2);
}

.platform-visual {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.platform-visual::before {
  position: absolute;
  z-index: 2;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 237, 174, 0.54);
  border-radius: 21px;
  pointer-events: none;
}

.platform-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: 20px;
  object-fit: cover;
}

.faq-section {
  background: var(--ivory);
}

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

.faq-column {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.27);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: var(--text-faq-q);
  font-weight: 800;
  text-align: left;
}

.faq-item button:hover,
.faq-item button:focus-visible,
.faq-item.is-open button {
  color: var(--gold-deep);
  background: linear-gradient(90deg, rgba(255, 247, 230, 0.86), rgba(243, 227, 176, 0.38));
}

.faq-symbol {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: #291800;
  background: linear-gradient(145deg, #fff4b1, #c88b0e);
  font-size: 21px;
  line-height: 1;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  color: var(--muted);
  font-size: var(--text-sm);
  transition: padding 0.32s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 20px 22px;
}

.faq-answer a {
  color: var(--gold-deep);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.provider-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(243, 227, 176, 0.55), rgba(255, 253, 248, 0.8), rgba(243, 227, 176, 0.55));
}

.provider-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.provider-track {
  display: flex;
  width: max-content;
  animation: provider-scroll 58s linear infinite;
}

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

.provider-set {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 8px 20px;
}

.provider-set img {
  width: 160px;
  height: 84px;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  object-fit: contain;
}

@keyframes provider-scroll {
  to {
    transform: translateX(-50%);
  }
}

.app-section {
  overflow: hidden;
  min-height: 620px;
  background:
    radial-gradient(circle at 74% 50%, rgba(212, 175, 55, 0.28), transparent 33%),
    linear-gradient(135deg, #fffdf8 5%, #fff0c8 100%);
}

.app-layout {
  display: grid;
  min-height: 500px;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
}

.app-copy h2 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: var(--heading-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.app-cta-actions {
  margin-bottom: 8px;
}

.app-benefits {
  grid-template-columns: 1fr 1fr;
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.store-badges a {
  display: inline-block;
  line-height: 0;
  border-radius: 10px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.store-badges a:hover,
.store-badges a:focus-visible {
  filter: drop-shadow(0 8px 13px rgba(116, 75, 0, 0.2));
  transform: translateY(-3px);
}

.store-badges img {
  width: auto;
  height: 56px;
  border-radius: 8px;
  object-fit: contain;
}

.app-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.app-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(94, 59, 0, 0.2));
  transform: rotate(-1deg);
}

.app-orbit {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 50%;
}

.orbit-one {
  top: 10%;
  right: 2%;
  width: 420px;
  height: 420px;
  animation: orbit-spin 18s linear infinite;
}

.orbit-two {
  right: 12%;
  bottom: 4%;
  width: 300px;
  height: 300px;
  border-style: dashed;
  animation: orbit-spin 14s linear infinite reverse;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.18), transparent 30%),
    var(--cream);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  padding-top: 72px;
  padding-bottom: 58px;
  grid-template-columns: 1.6fr 1fr 0.85fr 0.85fr;
  gap: 58px;
}

.footer-brand img {
  width: 150px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-brand > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
}

.age-note {
  display: flex;
  max-width: 390px;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.age-note span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--gold-deep);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.6);
}

.age-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h3 {
  position: relative;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 17px;
}

.footer-column h3::after {
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-column a {
  position: relative;
  padding-left: 14px;
  color: var(--ink);
  font-size: 13px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-dark);
  content: "›";
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold-deep);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.footer-bottom .container {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #a96d00;
  border-radius: 50%;
  color: #2c1a00;
  background: linear-gradient(145deg, #fff1a7, #bd7f09);
  box-shadow: 0 12px 28px rgba(74, 44, 0, 0.25);
  cursor: pointer;
  font-size: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top span {
  position: absolute;
  top: calc(100% + 5px);
  width: max-content;
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

@media (max-width: 1180px) {
  .header-inner {
    gap: 14px;
  }

  .brand img {
    width: 118px;
    height: 48px;
  }

  .main-nav {
    gap: 10px;
    font-size: 12px;
  }

  .main-nav > a {
    padding: 29px 0 27px;
  }

  .account-actions {
    gap: 6px;
  }

  .account-actions .button {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 12px;
  }

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

  .game-card {
    min-height: 400px;
  }

  .game-card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .game-card:nth-child(5) {
    grid-column: 2 / 3;
  }
}

@media (max-width: 1100px) {
  .site-header {
    background: var(--ivory);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(212, 175, 55, 0.55);
    background: #fff;
    box-shadow: 0 8px 18px rgba(78, 47, 0, 0.12);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(390px, 92vw);
    padding: 16px 18px 28px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-left: 1px solid rgba(212, 175, 55, 0.28);
    background: linear-gradient(180deg, #fffdf8 0%, #fff7e6 100%);
    box-shadow: -18px 24px 50px rgba(78, 47, 0, 0.22);
    transform: translateX(110%);
    transition: transform 0.3s ease;
    white-space: normal;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav > a {
    padding: 14px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.35;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .main-nav > a + a {
    margin-top: 4px;
  }

  .main-nav > a:hover,
  .main-nav > a:focus-visible {
    color: var(--gold-deep);
    border-color: rgba(212, 175, 55, 0.24);
    background: rgba(255, 255, 255, 0.88);
  }

  .main-nav > a[aria-current="page"] {
    color: var(--gold-deep);
    border-color: rgba(212, 175, 55, 0.38);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 3px 0 0 var(--gold);
  }

  .main-nav > a::after {
    display: none;
  }

  .account-actions {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .account-actions .button {
    width: 100%;
    min-height: 44px;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: 290px;
  }

  .hero--banner-fit {
    height: auto;
    min-height: 0;
    aspect-ratio: 1983 / 793;
  }

  .hero-slide img {
    object-position: left center;
  }

  .hero--banner-fit .hero-slide img {
    object-fit: contain;
    object-position: left top;
  }

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

  .step-grid::before {
    display: none;
  }

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

  .platform-layout,
  .app-layout {
    grid-template-columns: 1fr;
  }

  .platform-layout {
    gap: 45px;
  }

  .platform-visual {
    max-width: 720px;
    margin-inline: auto;
  }

  .app-layout {
    gap: 0;
  }

  .app-visual {
    min-height: 540px;
  }

  .app-visual img {
    right: 50%;
    bottom: -28%;
    width: min(620px, 96vw);
    transform: translateX(50%);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --heading-1: 32px;
    --heading-2: 26px;
    --heading-3: 28px;
    --header-height: 72px;
    --header-logo-width: 112px;
    --header-logo-height: 48px;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 62px 0;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand img {
    width: var(--header-logo-width);
    height: var(--header-logo-height);
  }

  .main-nav {
    top: var(--header-height);
  }

  .account-actions .button {
    min-height: var(--nav-button-height);
    font-size: var(--nav-button-font-size);
  }

  .hero {
    height: clamp(240px, calc(100vw * 3 / 4), 520px);
  }

  .hero--banner-fit {
    height: auto;
    aspect-ratio: 1983 / 793;
  }

  .hero-slide img {
    object-position: left center;
  }

  .hero--banner-fit .hero-slide img {
    object-fit: contain;
    object-position: left top;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

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

  .section-heading h1 {
    font-size: var(--heading-1);
  }

  .section-heading h2 {
    font-size: var(--heading-2);
  }

  .game-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .game-card,
  .game-card:nth-child(4),
  .game-card:nth-child(5) {
    min-height: 300px;
    grid-column: auto;
  }

  .game-card:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 6px);
    justify-self: center;
  }

  .game-card-overlay {
    right: 12px;
    bottom: 14px;
    left: 12px;
  }

  .game-card-overlay h4 {
    font-size: var(--text-base);
  }

  .step-grid,
  .usp-grid,
  .faq-grid,
  .app-benefits {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 220px;
  }

  .faq-grid {
    gap: 14px;
  }

  .store-badges {
    flex-wrap: wrap;
  }

  .store-badges img {
    height: 50px;
  }

  .app-copy h2 {
    font-size: 38px;
  }

  .app-visual {
    min-height: 430px;
  }

  .app-visual img {
    bottom: -18%;
    width: min(500px, 104vw);
  }

  .footer-grid {
    padding-top: 54px;
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom .container {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

@media (max-width: 460px) {
  .game-card,
  .game-card:nth-child(5) {
    width: 100%;
    min-height: 390px;
    grid-column: 1;
  }

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

  .footer-brand {
    grid-column: 1;
  }
}

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

  .provider-track {
    width: 100%;
    animation: none;
  }

  .provider-set {
    overflow-x: auto;
  }

  .casino-provider-track {
    width: 100%;
    animation: none;
  }

  .casino-provider-set {
    overflow-x: auto;
  }
}

/* About page */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 60px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 42%, rgba(212, 175, 55, 0.16), transparent 38%),
    radial-gradient(circle at 12% 80%, rgba(243, 227, 176, 0.55), transparent 32%),
    linear-gradient(135deg, var(--sand) 0%, var(--cream) 42%, var(--ivory) 100%);
}

.about-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(212, 175, 55, 0.35) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.12;
  pointer-events: none;
}

.about-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-breadcrumbs-wrap {
  padding-top: 14px;
}

.page-breadcrumbs-wrap .breadcrumbs ol {
  margin-bottom: 0;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: var(--gold-dark);
}

.breadcrumbs a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--gold-deep);
}

.breadcrumbs li[aria-current="page"] {
  color: var(--gold-deep);
}

[class*="-hero-copy"] .breadcrumbs ol {
  margin-bottom: 16px;
}

.about-hero-copy h1 {
  margin: 0 0 18px;
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 52%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero-lead {
  margin: 0 0 30px;
  max-width: 480px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.55;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-outline-gold {
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  background: var(--ivory);
}

.button-outline-gold:hover,
.button-outline-gold:focus-visible {
  border-color: var(--gold-dark);
  background: var(--cream);
  color: var(--gold-deep);
}

.about-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 18px;
  object-fit: contain;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
}

.about-intro {
  padding-top: 72px;
}

.about-siapa-section {
  background: var(--ivory);
}

.about-siapa-layout {
  gap: 56px;
}

.about-siapa-visual {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.about-siapa-visual::before {
  display: none;
}

.about-siapa-visual img {
  width: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
}

.about-siapa-copy h2 {
  margin-bottom: 22px;
  color: var(--gold-deep);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.about-siapa-copy p {
  margin-bottom: 16px;
  color: var(--muted);
}

.about-siapa-copy p:last-of-type {
  margin-bottom: 28px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-feature-card {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 14px;
  padding: 16px 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 230, 0.85));
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.about-feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.about-feature-card .usp-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  font-size: var(--heading-card);
}

.about-feature-card > span:last-child {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.about-stats-section {
  background: var(--ivory);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-stat-card {
  padding: 32px 20px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 230, 0.85));
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.about-stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.about-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.about-stat-card span {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
}

.about-misi-visi-section {
  background:
    linear-gradient(135deg, rgba(243, 227, 176, 0.55), rgba(255, 247, 230, 0.85)),
    var(--cream);
}

.about-misi-visi-heading {
  margin-bottom: 44px;
}

.about-misi-visi-heading h2 {
  margin-bottom: 0;
  color: var(--gold-deep);
  font-size: var(--heading-2);
}

.about-misi-visi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-misi-visi-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  min-height: 220px;
  padding: 32px 28px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.about-misi-visi-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.about-misi-visi-icon {
  width: 88px;
  height: 88px;
  margin: 0;
  flex: 0 0 88px;
  border-radius: 22px;
  font-size: 38px;
  transform: none;
}

.about-misi-visi-body h3 {
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: var(--heading-card);
}

.about-misi-visi-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

.about-games-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12), transparent 42%),
    linear-gradient(135deg, var(--sand) 0%, var(--cream) 48%, var(--ivory) 100%);
}

.about-games-heading {
  margin-bottom: 44px;
}

.about-games-heading h2 {
  margin-bottom: 0;
  color: var(--gold-deep);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin-inline: auto;
}

.about-games-grid .about-game-card:nth-child(1) {
  grid-column: 1 / 3;
}

.about-games-grid .about-game-card:nth-child(2) {
  grid-column: 3 / 5;
}

.about-games-grid .about-game-card:nth-child(3) {
  grid-column: 5 / 7;
}

.about-games-grid .about-game-card:nth-child(4) {
  grid-column: 2 / 4;
}

.about-games-grid .about-game-card:nth-child(5) {
  grid-column: 4 / 6;
}

.about-game-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 18px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-game-card:hover,
.about-game-card:focus-visible {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.about-game-card-media {
  flex: 1 1 auto;
  min-height: 280px;
  overflow: hidden;
}

.about-game-card-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.about-game-card:hover .about-game-card-media img,
.about-game-card:focus-visible .about-game-card-media img {
  transform: scale(1.06);
}

.about-game-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.about-game-card-footer h3 {
  flex: 1;
  margin: 0;
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.about-game-card-footer .card-icon {
  width: 36px;
  height: 36px;
  margin: 0;
  flex: 0 0 36px;
  font-size: 16px;
}

.about-game-arrow {
  flex: 0 0 20px;
  color: var(--gold-deep);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.about-trust-section {
  padding-bottom: 56px;
  background: var(--ivory);
}

.about-advantages-section {
  padding-top: 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 40%),
    var(--cream);
}

.about-usp-heading {
  margin-bottom: 40px;
}

.about-usp-heading h2 {
  margin-bottom: 0;
  color: var(--gold-deep);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-usp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.about-usp-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 20px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-usp-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.about-usp-card .usp-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  flex: 0 0 56px;
  font-size: 26px;
}

.about-usp-icon-img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  flex: 0 0 48px;
  object-fit: contain;
}

.about-usp-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-advantages-section .about-usp-card h3 {
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: none;
}

.platform-layout.is-reversed .platform-copy {
  order: 2;
}

.platform-layout.is-reversed .platform-visual {
  order: 1;
}

.about-safety-section {
  background: var(--ivory);
}

.about-safety-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}

.about-safety-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-safety-visual img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.about-safety-content h2 {
  margin-bottom: 28px;
  color: var(--gold-deep);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.about-safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.about-safety-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 22px;
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.about-safety-item:nth-child(1),
.about-safety-item:nth-child(2) {
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.about-safety-item:nth-child(odd) {
  border-right: 1px solid rgba(212, 175, 55, 0.22);
}

.about-safety-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.about-safety-item h3 {
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: var(--text-base);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-safety-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.about-safety-commitment {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.about-safety-disclaimer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 16px 22px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  background: var(--cream);
}

.about-safety-disclaimer-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--gold-deep);
  background: linear-gradient(145deg, #fff2a2, #c98b0f);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(155, 107, 8, 0.2);
}

.about-safety-disclaimer p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.about-faq-section .section-heading h2 {
  color: var(--gold-deep);
}

@media (max-width: 980px) {
  .about-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-hero-visual {
    order: -1;
    max-width: 520px;
    margin-inline: auto;
  }

  .about-hero-copy {
    text-align: center;
  }

  .about-hero-lead {
    margin-inline: auto;
  }

  .about-hero-actions {
    justify-content: center;
  }

  .breadcrumbs ol {
    justify-content: center;
  }

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

  .about-misi-visi-grid {
    grid-template-columns: 1fr;
  }

  .about-games-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .about-games-grid .about-game-card:nth-child(n) {
    grid-column: auto;
    max-width: none;
  }

  .about-games-grid .about-game-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    justify-self: center;
  }

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

  .about-safety-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-safety-visual img {
    max-width: 280px;
  }

  .platform-layout.is-reversed .platform-copy,
  .platform-layout.is-reversed .platform-visual {
    order: unset;
  }
}

@media (max-width: 720px) {
  .about-hero {
    padding: 40px 0 48px;
  }

  .about-hero-copy h1 {
    font-size: var(--heading-1);
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero-actions .button {
    width: 100%;
  }

  .about-misi-visi-grid,
  .about-games-grid,
  .about-stats,
  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-games-grid .about-game-card:nth-child(5) {
    max-width: none;
  }

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

  .about-safety-grid {
    grid-template-columns: 1fr;
  }

  .about-safety-item:nth-child(odd) {
    border-right: 0;
  }

  .about-safety-item:not(:last-child) {
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  }
}

/* TPRD legal pages */
.tprd-page {
  padding: 34px 0 72px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

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

.tprd-sidebar {
  position: sticky;
  top: 96px;
}

.tprd-nav {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.tprd-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tprd-nav-link img,
.tprd-nav-link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.tprd-nav-link:hover,
.tprd-nav-link:focus-visible {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-deep);
}

.tprd-nav-link.is-active {
  color: #281800;
  background: linear-gradient(135deg, #fff4b0 0%, #d6a926 36%, #fff0a0 55%, #b97800 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.75), 0 6px 16px rgba(155, 107, 8, 0.18);
}

.tprd-content-card {
  padding: 34px 36px 28px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.tprd-content-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.tprd-content-header h1 {
  margin: 0;
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.tprd-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.tprd-intro {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.tprd-intro a {
  color: var(--gold-deep);
  font-weight: 700;
}

.legal-accordion {
  display: grid;
  gap: 12px;
}

.legal-accordion .faq-item button span:first-child {
  color: var(--gold-deep);
  font-weight: 800;
}

.legal-accordion .faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.75;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.legal-accordion .faq-item.is-open .faq-answer {
  max-height: 8000px;
  padding: 0 20px 22px;
}

.legal-accordion .faq-answer > p {
  margin: 0 0 14px;
  padding: 0;
  overflow: visible;
}

.legal-accordion .faq-answer p:last-child {
  margin-bottom: 0;
}

.legal-accordion .faq-answer ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.legal-accordion .faq-answer li {
  margin-bottom: 6px;
}

.legal-accordion .faq-answer h4 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: 800;
}

.legal-accordion .faq-answer h4:first-child {
  margin-top: 0;
}

.tprd-help-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  background: linear-gradient(135deg, #fffdf5 0%, #fff4cf 100%);
}

.tprd-help-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.tprd-help-copy img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

.tprd-help-copy h2 {
  margin: 0 0 4px;
  color: var(--gold-deep);
  font-size: var(--heading-card);
  font-weight: 900;
}

.tprd-help-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.tprd-help-bar .button {
  min-height: 46px;
  padding-inline: 22px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .tprd-layout {
    grid-template-columns: 1fr;
  }

  .tprd-sidebar {
    position: static;
  }

  .tprd-nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .tprd-page {
    padding-top: 24px;
  }

  .tprd-content-card {
    padding: 24px 18px 20px;
  }

  .tprd-nav {
    grid-template-columns: 1fr;
  }

  .tprd-help-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .tprd-help-bar .button {
    width: 100%;
  }
}

/* Casino page */
.casino-hero {
  position: relative;
  overflow: visible;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 42%, rgba(212, 175, 55, 0.14), transparent 38%),
    radial-gradient(circle at 12% 80%, rgba(243, 227, 176, 0.55), transparent 32%),
    linear-gradient(135deg, var(--sand) 0%, var(--cream) 42%, var(--ivory) 100%);
}

.casino-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(212, 175, 55, 0.35) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.1;
  pointer-events: none;
}

.casino-hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(440px, 48vw, 620px);
}

.casino-hero-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 44%;
  max-width: 520px;
  padding-right: 0;
}

.casino-hero-eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.casino-hero-eyebrow::before,
.casino-hero-eyebrow::after {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 4px;
  background: var(--gold);
  vertical-align: middle;
  content: "";
}

.casino-hero-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.casino-hero-brand {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.casino-hero-divider {
  position: relative;
  width: min(100%, 380px);
  height: 2px;
  margin: 0 0 8px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 88%, transparent);
}

.casino-hero-divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 24px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.85) 0%, transparent 70%);
  filter: blur(2px);
  content: "";
}

.casino-hero-stat {
  margin: 0 0 6px;
  color: var(--gold-deep);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: none;
}

.casino-hero-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.casino-hero-dot {
  color: var(--gold);
  font-weight: 900;
}

.casino-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.casino-hero-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.casino-hero-note a {
  color: var(--gold-deep);
  font-weight: 700;
}

.casino-hero-visual {
  position: absolute;
  top: 50%;
  right: -8%;
  left: 26%;
  z-index: 1;
  display: flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  transform: translate(-52px, -50%);
}

.casino-hero-visual img {
  display: block;
  width: min(1200px, 82vw);
  height: auto;
  max-height: 960px;
  object-fit: contain;
  object-position: left center;
}

.casino-types-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.1), transparent 24%),
    var(--ivory);
}

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

.casino-type-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.casino-type-card:hover,
.casino-type-card:focus-within {
  border-color: var(--gold-dark);
  box-shadow: 0 16px 32px rgba(116, 75, 0, 0.16);
  transform: translateY(-4px);
}

.casino-type-media {
  display: flex;
  min-height: 200px;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(212, 175, 55, 0.22), transparent 52%),
    radial-gradient(circle at 80% 88%, rgba(255, 196, 84, 0.08), transparent 40%),
    linear-gradient(165deg, #2b1d09 0%, #140c02 52%, #0a0600 100%);
}

.casino-type-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (hover: hover) {
  .casino-type-card:hover .casino-type-media img,
  .casino-type-card:focus-within .casino-type-media img {
    transform: scale(1.08);
  }
}

.casino-type-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px 14px 14px;
  text-align: center;
  background: #fff;
}

.casino-type-body h3 {
  margin: 0;
  color: var(--gold-deep);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.casino-type-count {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.casino-type-body .button {
  width: 100%;
  margin-top: auto;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.casino-providers-section {
  background: linear-gradient(180deg, #fffdf8 0%, var(--sand) 100%);
}

.casino-provider-marquee {
  overflow: hidden;
  margin-bottom: 28px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.casino-provider-track {
  display: flex;
  width: max-content;
  animation: casino-provider-scroll 65s linear infinite;
}

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

.casino-provider-set {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 8px;
}

.casino-provider-set img {
  flex-shrink: 0;
  width: 160px;
  height: 84px;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  object-fit: contain;
  object-position: center;
}

@keyframes casino-provider-scroll {
  to {
    transform: translateX(-50%);
  }
}

.casino-seo-section {
  padding-bottom: 52px;
  background: var(--ivory);
}

.casino-seo-section + .faq-section {
  padding-top: 52px;
}

.casino-seo-intro {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  margin-bottom: 8px;
}

.casino-seo-copy {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.75;
}

.casino-seo-copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.casino-seo-copy p {
  margin: 0 0 14px;
}

.casino-seo-visual {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.casino-seo-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.casino-seo-more {
  display: none;
  max-width: 920px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.75;
  text-align: center;
}

.casino-seo-more.is-visible {
  display: block;
}

.casino-seo-more h3,
.casino-seo-more h4 {
  color: var(--ink);
}

.casino-seo-more h3 {
  margin: 28px 0 12px;
  font-size: var(--heading-card);
  font-weight: 900;
}

.casino-seo-more h4 {
  margin: 22px 0 10px;
  color: var(--gold-deep);
  font-size: var(--heading-4);
}

.casino-seo-more p {
  margin: 0 0 14px;
}

.casino-seo-more ul {
  display: inline-block;
  margin: 0 auto 16px;
  padding-left: 20px;
  text-align: left;
}

.casino-seo-more li {
  margin-bottom: 8px;
}

.casino-read-more-wrap {
  margin: 28px 0 0;
  text-align: center;
}

.casino-promo-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.14), transparent 28%),
    linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

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

.casino-promo-card {
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 175, 55, 0.16), transparent 48%),
    linear-gradient(180deg, #2b1d09 0%, #120a00 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.casino-promo-card:hover,
.casino-promo-card:focus-visible {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(116, 75, 0, 0.16);
}

.casino-promo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(212, 175, 55, 0.2), transparent 50%),
    linear-gradient(180deg, #2b1d09 0%, #0a0600 100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .casino-promo-card:hover img,
  .casino-promo-card:focus-visible img {
    transform: scale(1.08);
  }
}

.casino-promo-card h3 {
  margin: 0;
  padding: 14px 14px 16px;
  border-top: 1px solid var(--gold);
  background: #fff;
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

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

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

@media (max-width: 980px) {
  .casino-hero-layout {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    gap: 12px;
  }

  .casino-hero-copy {
    flex: 1 1 auto;
    max-width: none;
    padding-right: 0;
  }

  .casino-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
    pointer-events: auto;
  }

  .casino-hero-visual img {
    width: 100%;
    max-height: 620px;
    transform: none;
    margin-inline: auto;
    object-position: center;
  }

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

  .casino-seo-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .casino-hero {
    padding: 24px 0 28px;
  }

  .casino-hero-actions {
    flex-direction: column;
  }

  .casino-hero-actions .button {
    width: 100%;
  }

  .casino-type-grid,
  .casino-promo-grid {
    grid-template-columns: 1fr;
  }
}

/* Live Casino Page */
.live-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 36px;
  background:
    radial-gradient(circle at 78% 42%, rgba(212, 175, 55, 0.14), transparent 38%),
    radial-gradient(circle at 12% 80%, rgba(243, 227, 176, 0.55), transparent 32%),
    linear-gradient(135deg, var(--sand) 0%, var(--cream) 42%, var(--ivory) 100%);
}

.live-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(212, 175, 55, 0.35) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.1;
  pointer-events: none;
}

.live-hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(480px, 54vw, 680px);
}

.live-hero-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 44%;
  max-width: 520px;
}

.live-hero-eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.live-hero-eyebrow::before,
.live-hero-eyebrow::after {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 4px;
  background: var(--gold);
  vertical-align: middle;
  content: "";
}

.live-hero-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.live-hero-lead {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.live-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.live-hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.live-hero-features li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.live-hero-features li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.live-hero-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.live-hero-note a {
  color: var(--gold-deep);
  font-weight: 700;
}

.live-hero-visual {
  position: absolute;
  top: 50%;
  right: -2%;
  z-index: 1;
  width: min(74%, 1180px);
  pointer-events: none;
  transform: translateY(-50%);
}

.live-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(760px, 62vw);
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
}

.live-games-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.1), transparent 24%),
    var(--ivory);
}

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

.live-game-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.live-game-card:focus-within {
  outline: none;
}

.live-game-card:hover,
.live-game-card:focus-within {
  border-color: var(--gold-dark);
  box-shadow: 0 16px 32px rgba(116, 75, 0, 0.16);
  transform: translateY(-4px);
}

.live-game-media {
  display: flex;
  min-height: 160px;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
  background:
    radial-gradient(circle at 50% 28%, rgba(212, 175, 55, 0.22), transparent 52%),
    linear-gradient(165deg, #2b1d09 0%, #140c02 52%, #0a0600 100%);
}

.live-game-media:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: -2px;
}

.live-game-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (hover: hover) {
  .live-game-card:hover .live-game-media img,
  .live-game-card:focus-within .live-game-media img {
    transform: scale(1.08);
  }
}

.live-game-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 14px 12px 16px;
}

.live-game-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: 800;
}

.live-game-body .button {
  width: 100%;
}

.live-game-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 6, 0, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.live-game-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.live-game-lightbox-figure {
  width: min(920px, 96vw);
  margin: 0;
  transform: scale(0.94);
  transition: transform 0.28s ease;
}

.live-game-lightbox.is-open .live-game-lightbox-figure {
  transform: scale(1);
}

.live-game-lightbox-figure img {
  display: block;
  width: 100%;
  max-height: 82vh;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.live-game-lightbox-figure figcaption {
  margin-top: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.live-game-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.95);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.live-game-lightbox-close:hover,
.live-game-lightbox-close:focus-visible {
  border-color: var(--gold-dark);
  background: #fff;
}

body.lightbox-open {
  overflow: hidden;
}

.live-providers-section {
  background: linear-gradient(180deg, #fffdf8 0%, var(--sand) 100%);
}

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

.live-provider-card {
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.live-provider-media {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.live-provider-media img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.live-provider-card h3 {
  margin: 0;
  padding: 0 12px 14px;
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: 800;
}

.live-providers-note {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.65;
  text-align: center;
}

.live-providers-section .center-action {
  margin-top: 24px;
}

.live-seo-section {
  position: relative;
  overflow: hidden;
  padding: 44px 0 52px;
  background:
    radial-gradient(circle at 78% 42%, rgba(212, 175, 55, 0.14), transparent 38%),
    radial-gradient(circle at 12% 80%, rgba(243, 227, 176, 0.55), transparent 32%),
    linear-gradient(135deg, var(--sand) 0%, var(--cream) 42%, var(--ivory) 100%);
}

.live-seo-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(212, 175, 55, 0.35) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.1;
  pointer-events: none;
}

.live-seo-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(480px, 54vw, 680px);
  margin-bottom: 8px;
}

.live-seo-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 44%;
  max-width: 520px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.75;
}

.live-seo-copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.live-seo-copy p {
  margin: 0 0 14px;
}

.live-seo-visual {
  position: absolute;
  top: 50%;
  right: -2%;
  z-index: 1;
  width: min(74%, 1180px);
  pointer-events: none;
  transform: translateY(-50%);
}

.live-seo-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(760px, 62vw);
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
}

.live-read-more-wrap {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  text-align: center;
}

.live-seo-more {
  display: none;
  max-width: 920px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.75;
  text-align: center;
}

.live-seo-more.is-visible {
  display: block;
}

.live-seo-more h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: var(--heading-card);
  font-weight: 900;
}

.live-seo-more p {
  margin: 0 0 14px;
}

.live-seo-more ul {
  display: inline-block;
  margin: 0 auto 16px;
  padding-left: 20px;
  text-align: left;
}

.live-seo-more li {
  margin-bottom: 8px;
}

.live-seo-game-list {
  max-width: 760px;
}

.live-seo-table-wrap {
  overflow-x: auto;
  margin: 18px 0 20px;
}

.live-seo-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  text-align: left;
}

.live-seo-table th,
.live-seo-table td {
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  vertical-align: top;
}

.live-seo-table thead th {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.live-seo-table tbody th {
  background: rgba(212, 175, 55, 0.12);
  color: var(--ink);
  font-weight: 800;
}

.live-seo-table tbody td {
  background: #fff;
  color: var(--muted);
}

.live-faq-section {
  padding-top: 52px;
}

.live-promo-section {
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.14), transparent 28%),
    var(--sand);
}

.live-promo-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 32vw, 380px);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdf8 0%, var(--ivory) 100%);
  box-shadow: var(--shadow-soft);
}

.live-promo-copy {
  position: relative;
  z-index: 2;
  max-width: min(100%, 420px);
}

.live-promo-copy h4 {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-promo-copy h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.live-promo-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

.live-promo-note {
  margin: 12px 0 0 !important;
  font-size: 12px !important;
}

.live-promo-visual {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 58%;
  height: 100%;
  pointer-events: none;
}

.live-promo-visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 24px 24px 0;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 8%,
    rgba(0, 0, 0, 0.5) 36%,
    rgba(0, 0, 0, 0.82) 50%,
    #000 66%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 8%,
    rgba(0, 0, 0, 0.5) 36%,
    rgba(0, 0, 0, 0.82) 50%,
    #000 66%
  );
}

@media (max-width: 1100px) {
  .live-games-grid,
  .live-providers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .live-hero-layout {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    gap: 12px;
  }

  .live-hero-copy {
    flex: 1 1 auto;
    max-width: none;
  }

  .live-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
    pointer-events: auto;
  }

  .live-hero-visual img {
    width: 100%;
    max-height: 480px;
    margin-inline: auto;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .live-seo-layout {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    gap: 12px;
  }

  .live-seo-copy {
    flex: 1 1 auto;
    max-width: none;
  }

  .live-seo-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
    pointer-events: auto;
  }

  .live-seo-visual img {
    width: 100%;
    max-height: 480px;
    margin-inline: auto;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .live-promo-banner {
    min-height: 0;
    padding-bottom: 0;
  }

  .live-promo-copy {
    max-width: none;
    padding-bottom: clamp(28px, 4vw, 40px);
  }

  .live-promo-visual {
    position: relative;
    width: 100%;
    height: auto;
  }

  .live-promo-visual img {
    height: auto;
    max-height: 420px;
    border-radius: 0 0 24px 24px;
    -webkit-mask-image: none;
    mask-image: none;
  }

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

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

@media (max-width: 640px) {
  .live-hero {
    padding: 24px 0 28px;
  }

  .live-hero-actions {
    flex-direction: column;
  }

  .live-hero-actions .button {
    width: 100%;
  }

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

  .live-games-grid,
  .live-providers-grid {
    grid-template-columns: 1fr;
  }
}

/* Fishing Page */
.fishing-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 22px;
  background:
    radial-gradient(circle at 78% 42%, rgba(212, 175, 55, 0.14), transparent 38%),
    radial-gradient(circle at 12% 80%, rgba(243, 227, 176, 0.55), transparent 32%),
    linear-gradient(135deg, var(--sand) 0%, var(--cream) 42%, var(--ivory) 100%);
}

.fishing-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(212, 175, 55, 0.35) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.1;
  pointer-events: none;
}

.fishing-hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 36vw, 440px);
}

.fishing-hero-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 44%;
  max-width: 520px;
}

.fishing-hero-eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.fishing-hero-eyebrow::before,
.fishing-hero-eyebrow::after {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 4px;
  background: var(--gold);
  vertical-align: middle;
  content: "";
}

.fishing-hero-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.fishing-hero-lead {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.fishing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.fishing-hero-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.fishing-hero-note a {
  color: var(--gold-deep);
  font-weight: 700;
}

.fishing-hero-visual {
  position: absolute;
  top: 50%;
  right: -2%;
  z-index: 1;
  width: min(74%, 1180px);
  pointer-events: none;
  transform: translateY(-50%);
}

.fishing-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(480px, 44vw);
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
}

.fishing-games-section {
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.1), transparent 24%),
    var(--ivory);
}

.fishing-games-section .section-heading {
  margin-bottom: 32px;
}

.fishing-games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.fishing-game-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.fishing-game-card:hover,
.fishing-game-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.fishing-game-media {
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: #0a1628;
}

.fishing-game-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease;
}

@media (hover: hover) {
  .fishing-game-card:hover .fishing-game-media img,
  .fishing-game-card:focus-within .fishing-game-media img {
    transform: scale(1.04);
  }
}

.fishing-game-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 16px;
}

.fishing-game-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.fishing-game-body .button {
  margin-top: auto;
}

.fishing-games-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.65;
  text-align: center;
}

.fishing-games-section .center-action {
  margin-top: 14px;
}

.fishing-providers-section {
  padding: 48px 0 40px;
}

.fishing-providers-section .section-heading {
  margin-bottom: 28px;
}

.fishing-providers-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
  padding: clamp(14px, 2.5vw, 20px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  background: linear-gradient(135deg, #fffdf8 0%, var(--ivory) 100%);
  box-shadow: var(--shadow-soft);
}

.fishing-providers-panel img {
  display: block;
  width: auto;
  max-width: min(120px, 20vw);
  height: auto;
  max-height: 52px;
  padding: 10px 14px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  object-fit: contain;
}

.fishing-seo-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

.fishing-seo-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(212, 175, 55, 0.28) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.08;
  pointer-events: none;
}

.fishing-seo-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(320px, 38vw, 460px);
}

.fishing-seo-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 44%;
  max-width: 520px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.75;
}

.fishing-seo-copy h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.fishing-seo-copy p {
  margin: 0 0 12px;
}

.fishing-seo-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.fishing-seo-providers li {
  padding: 6px 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.fishing-seo-visual {
  position: absolute;
  top: 50%;
  right: -2%;
  z-index: 1;
  width: min(68%, 920px);
  pointer-events: none;
  transform: translateY(-50%);
}

.fishing-seo-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(480px, 44vw);
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
}

.fishing-read-more-wrap {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  text-align: center;
}

.fishing-seo-more {
  display: none;
  max-width: 920px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.75;
  text-align: center;
}

.fishing-seo-more.is-visible {
  display: block;
}

.fishing-seo-more h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: var(--heading-card);
  font-weight: 900;
  line-height: 1.2;
}

.fishing-seo-more p {
  margin: 0 0 12px;
}

.fishing-seo-more ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
  text-align: left;
}

.fishing-seo-more li {
  margin-bottom: 6px;
}

.fishing-faq-section {
  padding-top: 52px;
}

.fishing-promo-section {
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.14), transparent 28%),
    var(--sand);
}

.fishing-promo-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 32vw, 380px);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdf8 0%, var(--ivory) 100%);
  box-shadow: var(--shadow-soft);
}

.fishing-promo-copy {
  position: relative;
  z-index: 2;
  max-width: min(100%, 460px);
}

.fishing-promo-copy h4 {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fishing-promo-copy h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.fishing-promo-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

.fishing-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 4px;
}

.fishing-promo-note {
  margin: 12px 0 0 !important;
  font-size: 12px !important;
}

.fishing-promo-visual {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 58%;
  height: 100%;
  pointer-events: none;
}

.fishing-promo-visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 24px 24px 0;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 8%,
    rgba(0, 0, 0, 0.5) 36%,
    rgba(0, 0, 0, 0.82) 50%,
    #000 66%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 8%,
    rgba(0, 0, 0, 0.5) 36%,
    rgba(0, 0, 0, 0.82) 50%,
    #000 66%
  );
}

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

  .fishing-hero-layout {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-bottom: 0;
  }

  .fishing-hero-copy {
    flex: 1 1 auto;
    max-width: none;
  }

  .fishing-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
    transform: none;
  }

  .fishing-hero-visual img {
    max-height: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .fishing-seo-layout {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .fishing-seo-copy {
    flex: 1 1 auto;
    max-width: none;
  }

  .fishing-seo-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
    transform: none;
  }

  .fishing-seo-visual img {
    max-height: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .fishing-promo-banner {
    display: flex;
    flex-direction: column;
  }

  .fishing-promo-copy {
    max-width: none;
  }

  .fishing-promo-visual {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .fishing-promo-visual img {
    min-height: 220px;
    border-radius: 18px;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 640px) {
  .fishing-hero {
    padding: 20px 0 18px;
  }

  .fishing-hero-actions,
  .fishing-promo-actions {
    flex-direction: column;
  }

  .fishing-hero-actions .button,
  .fishing-promo-actions .button {
    width: 100%;
  }

  .fishing-games-grid {
    grid-template-columns: 1fr;
  }

  .fishing-providers-panel {
    gap: 18px;
  }

  .fishing-providers-panel img {
    max-width: 120px;
  }
}

/* Card Games Page */
.cards-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 22px;
  background:
    radial-gradient(circle at 78% 42%, rgba(212, 175, 55, 0.14), transparent 38%),
    radial-gradient(circle at 12% 80%, rgba(243, 227, 176, 0.55), transparent 32%),
    linear-gradient(135deg, var(--sand) 0%, var(--cream) 42%, var(--ivory) 100%);
}

.cards-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(212, 175, 55, 0.35) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.1;
  pointer-events: none;
}

.cards-hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 36vw, 440px);
}

.cards-hero-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 44%;
  max-width: 520px;
}

.cards-hero-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.cards-hero-lead {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.cards-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.cards-hero-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.cards-hero-note a {
  color: var(--gold-deep);
  font-weight: 700;
}

.cards-hero-visual {
  position: absolute;
  top: 50%;
  right: -2%;
  z-index: 1;
  width: min(74%, 1180px);
  pointer-events: none;
  transform: translateY(-50%);
}

.cards-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(480px, 44vw);
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
}

.cards-games-section {
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.1), transparent 24%),
    var(--ivory);
}

.cards-games-section .section-heading {
  margin-bottom: 32px;
}

.cards-games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.cards-game-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cards-game-card:hover,
.cards-game-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.cards-game-media {
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: linear-gradient(135deg, #1a1714 0%, #2a241c 100%);
}

.cards-game-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease;
}

@media (hover: hover) {
  .cards-game-card:hover .cards-game-media img,
  .cards-game-card:focus-within .cards-game-media img {
    transform: scale(1.04);
  }
}

.cards-game-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 16px;
}

.cards-game-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.cards-game-body .button {
  margin-top: auto;
}

.cards-providers-section {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, #fffdf8 0%, var(--sand) 100%);
}

.cards-providers-section .section-heading {
  margin-bottom: 28px;
}

.cards-providers-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cards-providers-panel img {
  display: block;
  width: auto;
  max-width: min(200px, 28vw);
  height: auto;
  max-height: 90px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.cards-seo-section {
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.1), transparent 28%),
    var(--ivory);
}

.cards-seo-content {
  max-width: 920px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.75;
}

.cards-seo-content h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-align: center;
}

.cards-seo-content h3 {
  margin: 32px 0 12px;
  color: var(--ink);
  font-size: var(--heading-card);
  font-weight: 900;
  line-height: 1.2;
}

.cards-seo-content h4 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: var(--heading-card);
  font-weight: 800;
  line-height: 1.25;
}

.cards-seo-content p {
  margin: 0 0 12px;
}

.cards-seo-content ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

.cards-seo-content li {
  margin-bottom: 6px;
}

.cards-read-more-wrap {
  margin: 24px 0 0;
  text-align: center;
}

.cards-seo-more {
  display: none;
}

.cards-seo-more.is-visible {
  display: block;
}

.cards-seo-more > h3:first-child {
  margin-top: 28px;
}

.cards-seo-disclaimer {
  margin-top: 24px !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.cards-faq-section {
  padding-top: 52px;
}

.cards-promo-section {
  padding: 48px 0 56px;
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.1), transparent 28%),
    var(--sand);
}

.cards-promo-banner {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cards-promo-banner:hover,
.cards-promo-banner:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cards-promo-banner img {
  display: block;
  width: 100%;
  height: auto;
}

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

  .cards-hero-layout {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .cards-hero-copy {
    flex: 1 1 auto;
    max-width: none;
  }

  .cards-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
    transform: none;
  }

  .cards-hero-visual img {
    max-height: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 640px) {
  .cards-hero {
    padding: 20px 0 18px;
  }

  .cards-hero-actions {
    flex-direction: column;
  }

  .cards-hero-actions .button {
    width: 100%;
  }

  .cards-games-grid {
    grid-template-columns: 1fr;
  }

  .cards-providers-panel {
    gap: 18px;
  }

  .cards-providers-panel img {
    max-width: 160px;
    max-height: 72px;
  }
}

/* Sports Page */
.sports-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 22px;
  background:
    radial-gradient(circle at 78% 42%, rgba(212, 175, 55, 0.14), transparent 38%),
    radial-gradient(circle at 12% 80%, rgba(243, 227, 176, 0.55), transparent 32%),
    linear-gradient(135deg, var(--sand) 0%, var(--cream) 42%, var(--ivory) 100%);
}

.sports-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(212, 175, 55, 0.35) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.1;
  pointer-events: none;
}

.sports-hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 36vw, 440px);
}

.sports-hero-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 44%;
  max-width: 520px;
}

.sports-hero-eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sports-hero-eyebrow::before,
.sports-hero-eyebrow::after {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 4px;
  background: var(--gold);
  vertical-align: middle;
  content: "";
}

.sports-hero-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.sports-hero-lead {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.sports-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.sports-hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.sports-hero-features li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.sports-hero-features li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.sports-hero-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.sports-hero-note a {
  color: var(--gold-deep);
  font-weight: 700;
}

.sports-hero-visual {
  position: absolute;
  top: 50%;
  right: -2%;
  z-index: 1;
  width: min(74%, 1180px);
  pointer-events: none;
  transform: translateY(-50%);
}

.sports-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(480px, 44vw);
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.82) 54%,
    #000 70%
  );
}

.sports-types-section {
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.1), transparent 24%),
    var(--ivory);
}

.sports-types-section .section-heading {
  margin-bottom: 32px;
}

.sports-types-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.sports-types-grid-tail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.sports-types-grid-tail .sports-type-card {
  flex: 0 1 calc((100% - 36px) / 4);
  min-width: 0;
}

.sports-type-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  background: linear-gradient(135deg, #fffdf8 0%, var(--ivory) 100%);
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sports-type-card:hover,
.sports-type-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.sports-type-media {
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: var(--sand);
}

.sports-type-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease;
}

@media (hover: hover) {
  .sports-type-card:hover .sports-type-media img,
  .sports-type-card:focus-within .sports-type-media img {
    transform: scale(1.04);
  }
}

.sports-type-card h3 {
  margin: 0;
  padding: 10px 12px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.sports-types-section .center-action {
  margin-top: 20px;
}

.sports-provider-section {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, #fffdf8 0%, var(--sand) 100%);
}

.sports-provider-section .section-heading {
  margin-bottom: 28px;
}

.sports-provider-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdf8 0%, var(--ivory) 100%);
  box-shadow: var(--shadow-soft);
}

.sports-provider-panel img {
  display: block;
  width: auto;
  max-width: min(220px, 40vw);
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.sports-provider-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sports-provider-labels li {
  padding: 8px 14px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.sports-seo-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

.sports-seo-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(212, 175, 55, 0.28) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.08;
  pointer-events: none;
}

.sports-seo-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 24px;
  background: linear-gradient(135deg, #fffdf8 0%, var(--ivory) 100%);
  box-shadow: var(--shadow-soft);
}

.sports-seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.sports-seo-copy {
  max-width: none;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.75;
}

.sports-seo-copy h2 {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: var(--heading-2);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.sports-seo-copy p {
  margin: 0 0 10px;
}

.sports-seo-features-col {
  justify-self: center;
  width: 100%;
  max-width: 400px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--gold);
  border-radius: 20px;
  background: linear-gradient(135deg, #fffdf8 0%, var(--ivory) 100%);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.12),
    var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

@media (hover: hover) {
  .sports-seo-features-col:hover {
    transform: translateY(-4px);
    box-shadow:
      0 0 0 1px rgba(212, 175, 55, 0.2),
      var(--shadow-hover);
  }
}

.sports-seo-features-heading {
  margin: 0 0 14px;
  color: var(--gold-deep);
  font-size: var(--heading-2);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

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

.sports-seo-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

@media (hover: hover) {
  .sports-seo-features li:hover {
    transform: translateX(4px);
    background: rgba(212, 175, 55, 0.08);
  }

  .sports-seo-features li:hover .sports-seo-feature-icon {
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.22);
  }
}

.sports-seo-feature-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sports-seo-feature-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.sports-seo-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sports-seo-feature-text strong {
  color: var(--ink);
  font-size: var(--text-base);
  font-weight: 800;
  line-height: 1.25;
}

.sports-seo-feature-text span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.sports-read-more-wrap {
  position: relative;
  z-index: 1;
  margin: 24px 0 16px;
  text-align: center;
}

.sports-seo-note {
  max-width: 920px;
  margin: 0 auto 8px;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.45;
  text-align: center;
}

.sports-seo-note a {
  color: var(--gold-deep);
  font-weight: 700;
}

.sports-seo-more {
  display: none;
  max-width: 920px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.75;
}

.sports-seo-more.is-visible {
  display: block;
}

.sports-seo-more h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: var(--heading-card);
  font-weight: 900;
  line-height: 1.2;
}

.sports-seo-more h4 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: var(--heading-4);
  line-height: 1.25;
}

.sports-seo-more p {
  margin: 0 0 12px;
}

.sports-seo-more ol,
.sports-seo-more ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

.sports-seo-more li {
  margin-bottom: 6px;
}

.sports-faq-section {
  padding-top: 52px;
}

.sports-promo-section {
  padding: 48px 0 56px;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.1), transparent 28%),
    var(--sand);
}

.sports-promo-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
}

.sports-promo-track {
  position: relative;
}

.sports-promo-track,
.sports-promo-slide {
  width: 100%;
}

.sports-promo-slide {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.sports-promo-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.sports-promo-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.sports-promo-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(155, 107, 8, 0.35);
  border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  line-height: 0;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sports-promo-arrow svg {
  display: block;
  flex-shrink: 0;
}

.sports-promo-arrow:hover,
.sports-promo-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  box-shadow: var(--shadow-hover);
}

.sports-promo-prev {
  left: 16px;
}

.sports-promo-next {
  right: 16px;
}

.sports-promo-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sports-promo-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(87, 54, 0, 0.34);
  cursor: pointer;
  transition: width 0.2s ease, border-radius 0.2s ease, background 0.2s ease;
}

.sports-promo-dots button.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--gold-dark);
}

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

  .sports-types-grid-tail .sports-type-card {
    flex-basis: calc((100% - 24px) / 3);
  }

  .sports-seo-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sports-seo-copy {
    max-width: none;
  }

  .sports-seo-features-col {
    justify-self: stretch;
    max-width: none;
  }

  .sports-seo-features-heading {
    text-align: left;
  }

  .sports-hero-layout {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .sports-hero-copy {
    flex: 1 1 auto;
    max-width: none;
  }

  .sports-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
    transform: none;
  }

  .sports-hero-visual img {
    max-height: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 640px) {
  .sports-hero {
    padding: 20px 0 18px;
  }

  .sports-hero-actions {
    flex-direction: column;
  }

  .sports-hero-actions .button {
    width: 100%;
  }

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

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

  .sports-types-grid-tail .sports-type-card {
    flex-basis: calc((100% - 12px) / 2);
  }

  .sports-promo-arrow {
    width: 36px;
    height: 36px;
  }

  .sports-promo-arrow svg {
    width: 18px;
    height: 18px;
  }

  .sports-promo-prev {
    left: 10px;
  }

  .sports-promo-next {
    right: 10px;
  }
}

/* Mobile App Page */
.app-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 22px;
  background:
    radial-gradient(circle at 78% 42%, rgba(212, 175, 55, 0.14), transparent 38%),
    radial-gradient(circle at 12% 80%, rgba(243, 227, 176, 0.55), transparent 32%),
    linear-gradient(135deg, var(--sand) 0%, var(--cream) 42%, var(--ivory) 100%);
}

.app-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(rgba(212, 175, 55, 0.35) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.1;
  pointer-events: none;
}

.app-hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 36vw, 440px);
}

.app-hero-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 44%;
  max-width: 520px;
}

.app-hero-eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.app-hero-eyebrow::before,
.app-hero-eyebrow::after {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 4px;
  background: var(--gold);
  vertical-align: middle;
  content: "";
}

.app-hero-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: var(--heading-1);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.app-hero-lead {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.7;
}

.app-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.app-hero-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.app-hero-visual {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  width: min(54%, 680px);
  transform: translateY(-50%);
}

.app-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 8%,
    rgba(0, 0, 0, 0.45) 32%,
    rgba(0, 0, 0, 0.78) 48%,
    #000 62%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 8%,
    rgba(0, 0, 0, 0.45) 32%,
    rgba(0, 0, 0, 0.78) 48%,
    #000 62%
  );
}

.app-features-section {
  background: var(--ivory);
}

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

.app-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 230, 0.85));
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.app-feature-card:hover,
.app-feature-card:focus-within {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.app-feature-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 247, 230, 0.9);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8);
}

.app-feature-icon img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.app-feature-card h3 {
  margin: 0;
  font-size: 18px;
}

.app-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.app-install-section {
  padding: 40px 0 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 42%),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.app-install-section .section-heading {
  margin-bottom: 24px;
}

.app-install-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) min(340px, 30vw);
  gap: 16px;
  align-items: stretch;
}

.app-install-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 24px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  min-height: 100%;
}

.app-install-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  margin: 0;
}

.app-install-visual img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: min(100%, 340px);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(87, 54, 0, 0.14));
}

.app-install-platform {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-install-platform img {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}

.app-install-platform h3 {
  margin: 0;
  font-size: var(--heading-card);
  line-height: 1.3;
}

.app-install-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-install-steps li {
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.88);
}

.app-install-steps h4 {
  margin: 0 0 4px;
  color: var(--gold-dark);
  font-size: 14px;
}

.app-install-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.app-install-panel .button {
  align-self: flex-start;
  margin-top: auto;
}

.app-screens-section {
  padding: 28px 0 36px;
  background: var(--ivory);
}

.app-screens-section .section-heading {
  margin-bottom: 24px;
}

.app-screens-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.app-screen-card {
  padding: 12px 10px 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 22px;
  background: linear-gradient(135deg, #fffdf8 0%, var(--ivory) 100%);
  box-shadow: var(--shadow-soft);
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.app-screen-card:hover,
.app-screen-card:focus-within,
.app-screen-card:active {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.app-screen-media {
  width: min(100%, 220px);
  margin: 0 auto 10px;
  overflow: hidden;
  border-radius: 18px;
}

.app-screen-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease;
}

@media (hover: hover) {
  .app-screen-card:hover .app-screen-media img,
  .app-screen-card:focus-within .app-screen-media img {
    transform: scale(1.05);
  }
}

.app-screen-card:active .app-screen-media img {
  transform: scale(1.03);
}

.app-screen-card h3 {
  margin: 0;
  font-size: 16px;
  transition: color 0.22s ease;
}

.app-screen-card:hover h3,
.app-screen-card:focus-within h3,
.app-screen-card:active h3 {
  color: var(--gold-deep);
}

.app-seo-section {
  padding: 40px 0 28px;
}

.app-seo-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 20%, rgba(212, 175, 55, 0.14), transparent 32%),
    linear-gradient(135deg, var(--cream), var(--ivory));
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.app-seo-panel h2 {
  margin: 0 0 10px;
  font-size: var(--heading-2);
}

.app-seo-panel p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

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

.app-trust-security-section {
  padding: 28px 0 40px;
  background: var(--ivory);
}

.app-trust-security-panel {
  padding: 28px 24px 24px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.12), transparent 32%),
    linear-gradient(135deg, var(--cream), var(--ivory));
  box-shadow: var(--shadow-soft);
}

.app-trust-security-section .section-heading {
  margin-bottom: 24px;
}

.app-trust-security-subheading {
  margin-top: 28px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.app-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.app-trust-card {
  padding: 16px 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.app-trust-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 16px;
  background: rgba(255, 247, 230, 0.9);
}

.app-trust-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.app-trust-card h3 {
  margin: 0 0 4px;
  font-size: var(--text-base);
}

.app-trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.app-security-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.app-security-card {
  padding: 16px 14px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.app-security-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 16px;
  background: rgba(255, 247, 230, 0.9);
}

.app-security-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.app-security-card h3 {
  margin: 0;
  font-size: var(--text-base);
}

.app-faq-section {
  padding-top: 52px;
}

.app-promo-section {
  padding: 48px 0 56px;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.1), transparent 28%),
    var(--sand);
}

.app-promo-heading h4 {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.app-promo-heading h2 {
  margin: 0 0 10px;
  font-size: var(--heading-2);
}

.app-promo-heading p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

.app-promo-slider {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
}

.app-promo-track {
  position: relative;
}

.app-promo-track,
.app-promo-slide {
  width: 100%;
}

.app-promo-slide {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.app-promo-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.app-promo-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.app-promo-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(155, 107, 8, 0.35);
  border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  line-height: 0;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-promo-arrow svg {
  display: block;
  flex-shrink: 0;
}

.app-promo-arrow:hover,
.app-promo-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  box-shadow: var(--shadow-hover);
}

.app-promo-prev {
  left: 16px;
}

.app-promo-next {
  right: 16px;
}

.app-promo-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.app-promo-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(87, 54, 0, 0.34);
  cursor: pointer;
  transition: width 0.2s ease, border-radius 0.2s ease, background 0.2s ease;
}

.app-promo-dots button.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--gold-dark);
}

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

  .app-trust-grid,
  .app-security-grid,
  .app-screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-hero-layout {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .app-hero-copy {
    flex: 1 1 auto;
    max-width: none;
  }

  .app-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
    transform: none;
  }

  .app-hero-visual img {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 640px) {
  .app-hero {
    padding: 20px 0 18px;
  }

  .app-hero-actions {
    flex-direction: column;
  }

  .app-hero-actions .button {
    width: 100%;
  }

  .app-features-grid,
  .app-install-grid,
  .app-trust-grid,
  .app-security-grid,
  .app-screens-grid {
    grid-template-columns: 1fr;
  }

  .app-install-panel .button {
    width: 100%;
  }

  .app-install-visual img {
    width: min(100%, 300px);
    height: auto;
    max-height: none;
  }

  .app-promo-arrow {
    width: 36px;
    height: 36px;
  }

  .app-promo-arrow svg {
    width: 18px;
    height: 18px;
  }

  .app-promo-prev {
    left: 10px;
  }

  .app-promo-next {
    right: 10px;
  }
}

/* Blog */
.blog-hero {
  padding: 36px 0 28px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 42%),
    linear-gradient(180deg, #fff9ee 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--line);
}

.blog-hero-copy {
  max-width: 820px;
}

.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: var(--text-eyebrow);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.blog-hero-eyebrow::before,
.blog-hero-eyebrow::after {
  width: 18px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.blog-hero-title {
  margin: 0 0 16px;
  font-size: var(--heading-1);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.blog-hero-lead {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.blog-hero-lead a {
  color: var(--gold-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.blog-hero-lead a:hover,
.blog-hero-lead a:focus-visible {
  color: var(--gold-dark);
}

.blog-categories-section {
  padding-top: 56px;
}

.blog-category-layout {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.blog-category-grid {
  display: grid;
  gap: 22px;
}

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

.blog-category-grid--bottom {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blog-category-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffdf8 0%, #fff7e8 100%);
  box-shadow: var(--shadow-soft);
}

.blog-category-label {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.blog-category-card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.blog-latest-section {
  padding-bottom: 72px;
}

.blog-empty-state {
  padding: 36px 28px;
  border: 1px dashed rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-lg);
  background: rgba(255, 247, 230, 0.55);
  text-align: center;
}

.blog-empty-state p {
  max-width: 640px;
  margin: 0 auto 22px;
  color: var(--muted);
}

.blog-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 980px) {
  .blog-category-grid--top,
  .blog-category-grid--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-hero {
    padding-top: 24px;
  }

  .blog-category-grid--top,
  .blog-category-grid--bottom {
    grid-template-columns: 1fr;
  }

  .blog-empty-actions .button {
    width: 100%;
  }
}
