/* ==============================
   OLLO4D - Main Stylesheet
   File: /assets/css/style.css
   Theme: Black, Red, Gold
================================= */

:root {
  --bg-main: #080301;
  --bg-dark: #120604;
  --bg-card: rgba(28, 9, 5, 0.9);
  --bg-card-soft: rgba(45, 15, 8, 0.78);

  --red-main: #c1121f;
  --red-dark: #7a0610;
  --red-soft: #ff2a3d;

  --gold-main: #f7c948;
  --gold-dark: #b8860b;
  --gold-light: #ffe08a;
  --gold-soft: rgba(247, 201, 72, 0.18);

  --text-main: #ffffff;
  --text-muted: #d8c7aa;
  --text-dark: #1a0b02;

  --border-gold: rgba(247, 201, 72, 0.38);
  --shadow-gold: 0 0 24px rgba(247, 201, 72, 0.22);
  --shadow-red: 0 0 28px rgba(193, 18, 31, 0.28);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --container: 1180px;
  --transition: all 0.28s ease;
}

/* ==============================
   RESET
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(193, 18, 31, 0.35), transparent 32%),
    radial-gradient(circle at top right, rgba(247, 201, 72, 0.18), transparent 35%),
    linear-gradient(180deg, #170604 0%, #080301 45%, #120604 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* ==============================
   TOP PROMO BAR
================================= */

.top-promo {
  background:
    linear-gradient(90deg, #4d0208 0%, #9d0713 45%, #d4a017 100%);
  border-bottom: 1px solid var(--border-gold);
  font-size: 13px;
  color: #fff;
  position: relative;
  z-index: 50;
}

.promo-wrapper {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.promo-label {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(247, 201, 72, 0.45);
}

.promo-running {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  color: #fff7d6;
}

.promo-running span {
  position: relative;
}

.promo-running span::after {
  content: "•";
  color: var(--gold-main);
  margin-left: 28px;
}

.promo-claim {
  background: #120604;
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  white-space: nowrap;
}

.promo-claim:hover {
  background: var(--gold-main);
  color: var(--text-dark);
}

/* ==============================
   HEADER
================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(8, 3, 1, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247, 201, 72, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 3, 1, 0.98);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(247, 201, 72, 0.12);
}

.header-wrapper {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  width: 156px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(247, 201, 72, 0.35));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #f4e7c9;
  border-radius: 999px;
  transition: var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--gold-light);
  background: rgba(247, 201, 72, 0.14);
  box-shadow: inset 0 0 0 1px rgba(247, 201, 72, 0.28);
}

/* ==============================
   BUTTONS
================================= */

.header-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-login {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
}

.btn-login:hover {
  background: rgba(247, 201, 72, 0.16);
  box-shadow: var(--shadow-gold);
}

.btn-daftar,
.btn-primary {
  color: #2a0c01;
  background:
    linear-gradient(180deg, #fff1a8 0%, #f7c948 42%, #b97908 100%);
  border: 1px solid #ffe08a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 8px 20px rgba(247, 201, 72, 0.35);
}

.btn-daftar:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 12px 28px rgba(247, 201, 72, 0.48);
}

.btn-secondary {
  color: #fff;
  background:
    linear-gradient(180deg, #f43f4f 0%, #b80716 55%, #63030b 100%);
  border: 1px solid rgba(255, 122, 132, 0.7);
  box-shadow: var(--shadow-red);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(193, 18, 31, 0.48);
}

/* ==============================
   MOBILE MENU
================================= */

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #fff1a8, #bd850f);
  color: #1b0702;
  font-size: 24px;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
}

.mobile-nav {
  display: none;
  background: rgba(18, 6, 4, 0.98);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px 18px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 13px 14px;
  margin: 6px 0;
  border-radius: 12px;
  color: #fff3d2;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 201, 72, 0.12);
  font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold-light);
  background: rgba(247, 201, 72, 0.14);
  box-shadow: inset 0 0 0 1px rgba(247, 201, 72, 0.28);
}

.mobile-nav .mobile-login {
  color: var(--gold-light);
}

.mobile-nav .mobile-daftar {
  color: #1b0702;
  background: linear-gradient(180deg, #fff1a8, #c98e10);
}

/* ==============================
   HERO SECTION
================================= */

.hero-section {
  position: relative;
  padding: 78px 0 50px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(193, 18, 31, 0.22), transparent 45%),
    radial-gradient(circle at 75% 20%, rgba(247, 201, 72, 0.18), transparent 30%);
  pointer-events: none;
}

.hero-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 44px;
}

.hero-label,
.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(247, 201, 72, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 720px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.6px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #ffe6a3 38%, #f7c948 76%, #bd850f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 650px;
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 18px 14px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(247, 201, 72, 0.12), rgba(193, 18, 31, 0.08));
  border: 1px solid rgba(247, 201, 72, 0.24);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.03);
}

.stat-card strong {
  display: block;
  color: var(--gold-light);
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 7%;
  background: radial-gradient(circle, rgba(247, 201, 72, 0.38), transparent 68%);
  filter: blur(18px);
  z-index: -1;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  border: 1px solid rgba(247, 201, 72, 0.45);
  box-shadow:
    0 0 0 8px rgba(247, 201, 72, 0.04),
    0 28px 80px rgba(0, 0, 0, 0.45),
    var(--shadow-gold);
}

/* ==============================
   CATEGORY STRIP
================================= */

.category-strip {
  padding: 18px 0;
  background:
    linear-gradient(90deg, rgba(122, 6, 16, 0.75), rgba(247, 201, 72, 0.16), rgba(122, 6, 16, 0.75));
  border-top: 1px solid rgba(247, 201, 72, 0.22);
  border-bottom: 1px solid rgba(247, 201, 72, 0.22);
}

.category-strip-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.category-strip-wrapper span {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(8, 3, 1, 0.55);
  border: 1px solid rgba(247, 201, 72, 0.28);
  color: #fff3d2;
  font-weight: 800;
  font-size: 13px;
}

/* ==============================
   SECTION GENERAL
================================= */

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 16px;
}

/* ==============================
   FEATURE CARD
================================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(44, 13, 7, 0.92), rgba(14, 5, 3, 0.92));
  border: 1px solid rgba(247, 201, 72, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 50px rgba(0, 0, 0, 0.28);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 201, 72, 0.55);
  box-shadow:
    var(--shadow-gold),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background:
    linear-gradient(180deg, rgba(247, 201, 72, 0.25), rgba(193, 18, 31, 0.15));
  border: 1px solid var(--border-gold);
  font-size: 28px;
  box-shadow: inset 0 0 18px rgba(247, 201, 72, 0.12);
}

.feature-card h3 {
  color: var(--gold-light);
  font-size: 21px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ==============================
   GAME SLOT CARD
================================= */

.game-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(193, 18, 31, 0.06));
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--bg-card);
  border: 1px solid rgba(247, 201, 72, 0.24);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 201, 72, 0.55);
  box-shadow: var(--shadow-gold);
}

.game-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(247, 201, 72, 0.26), transparent 55%),
    linear-gradient(145deg, #4d0208, #180604 55%, #bd850f);
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.placeholder-image {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 42px;
  font-weight: 950;
  letter-spacing: 3px;
}

.game-content {
  padding: 18px;
}

.game-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff1a8, #bd850f);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 950;
}

.game-content h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}

.game-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.game-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(247, 201, 72, 0.16);
}

.game-info span {
  color: var(--text-muted);
  font-size: 13px;
}

.game-info strong {
  color: var(--gold-light);
  text-align: right;
}

/* ==============================
   PROVIDER
================================= */

.provider-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.provider-card {
  min-height: 76px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(247, 201, 72, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(247, 201, 72, 0.24);
  color: #fff3d2;
  font-weight: 900;
  box-shadow: inset 0 0 22px rgba(247, 201, 72, 0.05);
  transition: var(--transition);
}

.provider-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(247, 201, 72, 0.25), rgba(193, 18, 31, 0.12));
  box-shadow: var(--shadow-gold);
}

/* ==============================
   CTA SECTION
================================= */

.cta-section {
  padding: 86px 0;
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(247, 201, 72, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(122, 6, 16, 0.92), rgba(18, 6, 4, 0.96) 55%, rgba(189, 133, 15, 0.35));
  border-top: 1px solid rgba(247, 201, 72, 0.24);
  border-bottom: 1px solid rgba(247, 201, 72, 0.24);
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.cta-content h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  margin-bottom: 16px;
  color: #fff;
}

.cta-content p {
  color: var(--text-muted);
  max-width: 610px;
  margin-bottom: 22px;
}

.cta-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

.cta-list li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(8, 3, 1, 0.45);
  border: 1px solid rgba(247, 201, 72, 0.18);
  color: #fff3d2;
  font-weight: 800;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  border: 1px solid rgba(247, 201, 72, 0.42);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.48),
    var(--shadow-gold);
}

/* ==============================
   TESTIMONIAL
================================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(45, 15, 8, 0.92), rgba(12, 4, 2, 0.92));
  border: 1px solid rgba(247, 201, 72, 0.24);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 201, 72, 0.52);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #fff1a8, #bd850f);
  color: #1b0702;
  font-weight: 950;
  box-shadow: var(--shadow-gold);
}

.testimonial-user h3 {
  font-size: 17px;
  color: #fff;
}

.testimonial-user span {
  font-size: 13px;
  color: var(--text-muted);
}

.stars {
  color: var(--gold-main);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ==============================
   FAQ
================================= */

.faq-section {
  background:
    linear-gradient(180deg, rgba(193, 18, 31, 0.06), transparent);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(28, 9, 5, 0.88);
  border: 1px solid rgba(247, 201, 72, 0.22);
}

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  color: #fff3d2;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
}

.faq-question span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff1a8, #bd850f);
  color: #1b0702;
  font-size: 20px;
  line-height: 1;
  transition: var(--transition);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* ==============================
   FOOTER
================================= */

.site-footer {
  background:
    linear-gradient(180deg, #120604 0%, #070201 100%);
  border-top: 1px solid rgba(247, 201, 72, 0.25);
}

.footer-wrapper {
  padding: 60px 0 38px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 32px;
}

.footer-logo {
  width: 158px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(247, 201, 72, 0.35));
}

.footer-about p,
.footer-contact p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--gold-light);
  margin-bottom: 14px;
  font-size: 18px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(247, 201, 72, 0.14);
  background: rgba(0, 0, 0, 0.28);
}

.footer-bottom p {
  color: #d8c7aa;
  font-size: 14px;
}

/* ==============================
   FLOATING BUTTON
================================= */

.floating-action {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  gap: 10px;
  transition: var(--transition);
}

.floating-action.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.float-btn {
  min-width: 124px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, #f43f4f 0%, #b80716 55%, #63030b 100%);
  border: 1px solid rgba(255, 122, 132, 0.7);
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}

.float-btn.daftar {
  color: #1b0702;
  background:
    linear-gradient(180deg, #fff1a8 0%, #f7c948 42%, #b97908 100%);
  border: 1px solid #ffe08a;
  box-shadow: var(--shadow-gold);
}

.float-btn:hover {
  transform: translateY(-3px);
}

/* ==============================
   JS REVEAL EFFECT
================================= */

.feature-card,
.game-card,
.provider-card,
.testimonial-card,
.cta-content,
.cta-image {
  opacity: 0;
  transform: translateY(22px);
}

.feature-card.show,
.game-card.show,
.provider-card.show,
.testimonial-card.show,
.cta-content.show,
.cta-image.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   INNER PAGE TEMPLATE
   Untuk halaman pendukung
================================= */

.page-hero {
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at top, rgba(247, 201, 72, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(122, 6, 16, 0.45), rgba(8, 3, 1, 0.96));
  border-bottom: 1px solid rgba(247, 201, 72, 0.22);
}

.page-hero-content {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 0%, #ffe08a 48%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 17px;
}

.content-section {
  padding: 68px 0;
}

.content-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(45, 15, 8, 0.92), rgba(12, 4, 2, 0.92));
  border: 1px solid rgba(247, 201, 72, 0.24);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.content-card h2,
.content-card h3 {
  color: var(--gold-light);
  margin-bottom: 14px;
}

.content-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.content-card ul,
.content-card ol {
  padding-left: 22px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.content-card li {
  margin-bottom: 8px;
}

/* ==============================
   RESPONSIVE
================================= */

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-action {
    display: none;
  }

  .hero-wrapper,
  .cta-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .provider-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .top-promo {
    font-size: 12px;
  }

  .promo-wrapper {
    gap: 10px;
  }

  .promo-running {
    gap: 20px;
  }

  .promo-claim {
    display: none;
  }

  .header-wrapper {
    min-height: 68px;
  }

  .site-logo {
    width: 132px;
  }

  .hero-section {
    padding: 42px 0 38px;
  }

  .hero-content h1 {
    letter-spacing: -0.8px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons,
  .cta-buttons {
    align-items: stretch;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 58px 0;
  }

  .feature-grid,
  .game-grid,
  .testimonial-grid,
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .cta-list {
    grid-template-columns: 1fr;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    padding: 44px 0 28px;
  }

  .floating-action {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .float-btn {
    width: 100%;
    min-width: unset;
  }

  .page-hero {
    padding: 52px 0 34px;
  }

  .content-section {
    padding: 48px 0;
  }

  .content-card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-image img,
  .cta-image img {
    border-radius: 22px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .feature-card,
  .testimonial-card {
    padding: 22px;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }

  .category-strip-wrapper span {
    width: 100%;
    text-align: center;
  }
}