﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800;900&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #0B0810;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.07);
  --stroke: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.74);
  --gold-1: #FFF1A6;
  --gold-2: #FFD24D;
  --gold-3: #E18A2D;
  --gold-grad: linear-gradient(135deg, var(--gold-1), var(--gold-2) 45%, var(--gold-3));
  --container: 1240px;
  --gutter: 24px;
  --header-h: 96px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html,
body {
  height: 100%;
  background: var(--bg) !important;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  position: relative;
  background:
    radial-gradient(900px 420px at 12% 10%, rgba(255, 210, 77, 0.10), transparent 60%),
    radial-gradient(700px 360px at 85% 25%, rgba(217, 164, 65, 0.09), transparent 62%),
    var(--bg);
  color: var(--text);
  padding-top: var(--header-h);
}

/* Subtle floating shapes for background interest */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20vh -20vw;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, 0, 0);
  opacity: 0.26;
}

body::before {
  background:
    radial-gradient(480px 420px at 20% 30%, rgba(255, 210, 77, 0.16), transparent 60%),
    radial-gradient(520px 460px at 80% 20%, rgba(217, 164, 65, 0.12), transparent 62%),
    radial-gradient(560px 520px at 70% 80%, rgba(255, 241, 166, 0.08), transparent 64%);
  animation: floatBg 18s ease-in-out infinite;
}

body::after {
  background:
    radial-gradient(520px 480px at 35% 75%, rgba(255, 210, 77, 0.10), transparent 62%),
    radial-gradient(460px 420px at 88% 55%, rgba(217, 164, 65, 0.08), transparent 64%);
  opacity: 0.22;
  animation: floatBg 26s ease-in-out infinite reverse;
}

@keyframes floatBg {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2vw, -1.5vh, 0) scale(1.02);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }

  html { scroll-behavior: auto; }
}

/* Keep content above the floating background layers */
header,
main,
footer {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6,
.page-title,
.hero-title,
.section-intro h2,
.catbar-tab,
.pill,
.kpi,
.about-metric-value,
.about-stat-value,
.trust-head h3,
.game-head h3,
.howto-head h3,
.bonus-head h3,
.promo-head h3,
.download-head h3,
.testimonial-head h3,
.faq-q,
.contact-head h3,
.responsible-head h3,
.service-areas-copy h3 {
  font-family: 'Poppins', 'Source Sans 3', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
}

a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 16px var(--gutter); }
main { max-width: var(--container); margin: 0 auto; padding: 30px var(--gutter) 64px; }

@media (max-width: 560px) {
  :root { --gutter: 20px; --header-h: 84px; }
  
  .brand-tagline {
    display: none;
  }
  
  .brand-name {
    font-size: 18px;
  }
  
  .logo-wrapper {
    width: 52px;
    height: 52px;
  }
  
  .site-logo {
    width: 40px;
    height: 40px;
  }
  
  .sc-nav {
    display: none;
  }
  
  .nav-link span {
    display: none;
  }
  
  .btn-login span,
  .btn-register span {
    display: none;
  }
  
  .btn-login,
  .btn-register {
    padding: 10px;
  }
}

/* Anchor scrolling (account for fixed header) */
#home,
section[id] {
  scroll-margin-top: calc(var(--header-h) + 10px);
}

header {
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(17, 13, 20, 0.86);
  border-bottom: 0;
  border-top: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: none;
}

/* Header separator (match homepage section separator style) */
header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 210, 77, 0.24),
      rgba(255, 241, 166, 0.40),
      rgba(255, 210, 77, 0.24),
      transparent
    );
  box-shadow: 0 10px 24px rgba(255, 210, 77, 0.10);
  opacity: 0.9;
}

/* Header width alignment (header is flex; keep inner container full-width) */
header > .wrap {
  flex: 1 1 auto;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.40);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
  z-index: 30;
}

.back-to-top:hover {
  border-color: rgba(255, 210, 77, 0.32);
  background: rgba(0, 0, 0, 0.55);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.brand { 
  font-weight: 800; 
  letter-spacing: 0.2px; 
}

.brand-link {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px 8px 8px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.brand-link:hover {
  background: rgba(255, 210, 77, 0.08);
  transform: translateY(-1px);
}

.logo-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12) 0%, rgba(255, 210, 77, 0.06) 100%);
  border: 2px solid rgba(255, 210, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: all 0.3s ease;
}

.brand-link:hover .logo-wrapper {
  border-color: var(--gold-2);
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.18) 0%, rgba(255, 210, 77, 0.08) 100%);
  box-shadow: 0 4px 16px rgba(255, 210, 77, 0.25);
}

.logo-glow {
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: var(--gold-grad);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.brand-link:hover .logo-glow {
  opacity: 0.3;
}

.site-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.topbar { 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.80);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.08) 0%, rgba(255, 210, 77, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-1);
  text-decoration: none;
  background: rgba(255, 210, 77, 0.06);
  border-color: rgba(255, 210, 77, 0.2);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link span {
  position: relative;
  z-index: 1;
}

.nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.nav-link:hover .nav-icon {
  color: var(--gold-2);
  transform: scale(1.1);
}

.actions { 
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sc-btn span {
  position: relative;
  z-index: 1;
}

.btn-login,
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
}

.btn-login:hover .btn-icon,
.btn-register:hover .btn-icon {
  transform: scale(1.1);
}

.btn-register {
  box-shadow: 0 4px 12px rgba(255, 210, 77, 0.15);
}

.btn-register:hover {
  box-shadow: 0 6px 20px rgba(255, 210, 77, 0.30);
}
.sc-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.sc-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 260px at 20% 12%, rgba(255, 241, 166, 0.14), transparent 62%),
    linear-gradient(135deg, rgba(255, 210, 77, 0.18), transparent 55%),
    radial-gradient(520px 260px at 85% 85%, rgba(217, 164, 65, 0.12), transparent 62%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.sc-btn:hover {
  text-decoration: none;
  border-color: rgba(255, 210, 77, 0.24);
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.sc-btn:hover::before {
  opacity: 0.95;
}

.sc-btn:active {
  transform: translateY(0px);
  box-shadow: none;
}

.sc-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14), 0 14px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.42);
}

.sc-btn-primary {
  background: var(--gold-grad);
  color: #000;
  border-color: rgba(255, 210, 77, 0.70);
  box-shadow:
    0 16px 46px rgba(255, 210, 77, 0.20),
    0 18px 60px rgba(0, 0, 0, 0.28);
}
.sc-btn-primary:hover {
  border-color: rgba(255, 211, 110, 0.85);
  box-shadow:
    0 20px 56px rgba(255, 210, 77, 0.24),
    0 22px 70px rgba(0, 0, 0, 0.30);
}

.sc-btn-primary::before {
  background: none;
  opacity: 0;
}

.g-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; align-items: stretch; }
.g-col-12 { grid-column: span 12; }
.g-col-8 { grid-column: span 8; }
.g-col-7 { grid-column: span 7; }
.g-col-6 { grid-column: span 6; }
.g-col-5 { grid-column: span 5; }
.g-col-4 { grid-column: span 4; }

/* Make grid items and cards stretch to equal heights per row */
.g-grid > [class*="g-col-"] { align-self: stretch; }
.g-grid .feature-card,
.g-grid .sc-card {
  height: 100%;
}

@media (max-width: 920px) {
  .g-col-8, .g-col-7, .g-col-6, .g-col-5, .g-col-4 { grid-column: span 12; }
  .sc-nav { display: none; }
}

.sc-card {
  background: rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.26);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.sc-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(520px 260px at 18% 12%, rgba(255, 241, 166, 0.18), transparent 62%),
    radial-gradient(520px 260px at 85% 85%, rgba(255, 210, 77, 0.22), transparent 62%),
    linear-gradient(135deg, rgba(255, 210, 77, 0.14), transparent 60%);
  opacity: 0;
}

.sc-card > * { position: relative; z-index: 1; }

.sc-card:hover {
  border-color: rgba(255, 210, 77, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.sc-card:hover::before {
  opacity: 0.95;
}

/* Section wrapper */
.section {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.section > .g-col-12 > h2 {
  margin-top: 0;
}

@media (max-width: 920px) {
  .section { padding: 14px; }
}

.muted { color: var(--muted); }

/* Content Pages Styling (About, Promotions, Articles, etc.) */
.content-page {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.content-page h2,
.content-page h3 {
  color: rgba(255, 255, 255, 0.92);
}

.content-page p,
.content-page li {
  color: rgba(255, 255, 255, 0.84);
}

.content-page a:not(.sc-btn) {
  color: var(--gold-2);
}

.content-page a:not(.sc-btn):hover,
.content-page a:not(.sc-btn):focus {
  color: var(--gold-1);
}

.page-title {
  position: relative;
  display: inline-block;
  margin: 0 0 14px 0;
}

.page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-grad);
}

/* Breadcrumbs: small section above page hero */
.breadcrumbs-section {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 14px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.10);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: #fff;
  border-color: rgba(255, 210, 77, 0.22);
  background: rgba(255, 210, 77, 0.08);
}

.breadcrumbs .separator {
  opacity: 0.65;
}

.breadcrumbs .current {
  color: rgba(255, 255, 255, 0.88);
}

/* Table of Contents (optional, content pages) */
.toc-section {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 14px;
}

.toc-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.toc-title {
  margin: 0 0 4px 0;
  font-weight: 900;
}

.toc-subtitle {
  margin: 0 0 10px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.toc-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}

.toc-list a:hover,
.toc-list a:focus {
  color: #fff;
  border-color: rgba(255, 210, 77, 0.22);
  background: rgba(255, 210, 77, 0.08);
}

.toc-target {
  scroll-margin-top: 92px;
}

@media (max-width: 768px) {
  .toc-list { grid-template-columns: 1fr; }
}

/* Feature card (reusable) */
.feature-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.10);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.26);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 260px at 20% 12%, rgba(255, 241, 166, 0.16), transparent 62%),
    linear-gradient(135deg, rgba(255, 210, 77, 0.20), transparent 55%),
    radial-gradient(520px 260px at 85% 85%, rgba(217, 164, 65, 0.14), transparent 62%);
  opacity: 0;
}

.feature-card > * { position: relative; z-index: 1; }

.feature-card:hover {
  border-color: rgba(255, 210, 77, 0.24);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.feature-card:hover::before {
  opacity: 0.95;
}

/* Security/Experience section (home) */
.trust-section {
  padding: 34px 0;
}

/* Trust Statement Panel */
.trust-statement {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  margin: 28px 0 32px 0;
  background: linear-gradient(135deg, rgba(255, 241, 166, 0.08) 0%, rgba(255, 210, 77, 0.04) 100%);
  border: 1px solid rgba(255, 215, 77, 0.15);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.trust-statement::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--gold-grad);
  opacity: 0.3;
  border-radius: 999px;
}

.statement-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12), rgba(225, 138, 45, 0.08));
  border: 1px solid rgba(255, 210, 77, 0.2);
  border-radius: 16px;
  color: var(--gold-2);
}

.statement-content h3 {
  margin: 0 0 8px 0;
  font-size: 1.375rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.02em;
}

.statement-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

/* Trust Benefits Grid */
.trust-benefits {
  gap: 20px;
  margin-top: 8px;
}

.trust-benefit {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.trust-benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  opacity: 0;
  border-radius: 18px;
  transition: opacity 240ms ease;
}

.trust-benefit:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 77, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.trust-benefit:hover::before {
  opacity: 0.04;
}

.benefit-icon-wrap {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15));
  border: 1px solid rgba(255, 210, 77, 0.18);
  border-radius: 16px;
  margin-bottom: 18px;
  position: relative;
  transition: all 240ms ease;
}

.trust-benefit:hover .benefit-icon-wrap {
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12), rgba(225, 138, 45, 0.08));
  border-color: rgba(255, 210, 77, 0.35);
  transform: scale(1.05);
}

.benefit-icon {
  color: var(--gold-2);
  position: relative;
  z-index: 1;
}

.trust-benefit h4 {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
}

.trust-benefit > p {
  margin: 0 0 16px 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 1;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.benefit-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--gold-grad);
  border-radius: 50%;
  transform: translateY(-50%);
}

@media (max-width: 920px) {
  .trust-section {
    padding: 24px 0;
  }

  .trust-statement {
    flex-direction: column;
    padding: 24px;
    margin: 20px 6px 24px 6px;
  }

  .statement-icon {
    width: 48px;
    height: 48px;
  }

  .statement-content h3 {
    font-size: 1.25rem;
  }

  .trust-benefits {
    padding: 0 6px;
  }

  .trust-benefit {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .trust-statement {
    padding: 20px;
  }

  .statement-icon {
    width: 44px;
    height: 44px;
  }

  .statement-icon svg {
    width: 28px;
    height: 28px;
  }

  .statement-content h3 {
    font-size: 1.125rem;
  }

  .benefit-icon-wrap {
    width: 56px;
    height: 56px;
  }

  .benefit-icon {
    width: 24px;
    height: 24px;
  }
}

/* Top games section (home) */
.topgames-section {
  padding: 34px 0;
}

.games-grid {
  margin-top: 28px;
  gap: 20px;
}

/* Game Card Base */
.game-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 77, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* Game Image */
.game-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.1), rgba(225, 138, 45, 0.05));
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.game-card:hover .game-image img {
  transform: scale(1.05);
}

.game-image-small {
  aspect-ratio: 4/3;
}

/* Game Badge */
.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  background: var(--gold-grad);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Game Content */
.game-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.game-compact .game-content {
  padding: 16px;
  gap: 10px;
}

/* Game Meta */
.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.game-category {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gold-2);
  font-size: 0.875rem;
  font-weight: 600;
}

.game-rating svg {
  opacity: 0.9;
}

/* Game Titles */
.game-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.game-card h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
}

.game-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Game Features */
.game-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.game-feature {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Game CTA */
.game-card .sc-btn {
  margin-top: auto;
  width: fit-content;
}

.game-featured .sc-btn-primary {
  width: 100%;
  justify-content: center;
}

/* Games CTA Section */
.games-cta {
  text-align: center;
  margin-top: 32px;
  padding: 28px;
  background: rgba(255, 241, 166, 0.04);
  border: 1px solid rgba(255, 215, 77, 0.12);
  border-radius: 16px;
}

.games-cta p {
  margin: 0 0 14px 0;
  font-size: 1rem;
}

.games-cta .sc-btn {
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 920px) {
  .topgames-section {
    padding: 24px 0;
  }

  .games-grid {
    padding: 0 6px;
    margin-top: 20px;
  }

  .game-content {
    padding: 16px;
  }

  .game-card h3 {
    font-size: 1.25rem;
  }

  .game-features {
    gap: 6px;
  }

  .game-feature {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .games-cta {
    margin-top: 24px;
    padding: 20px;
    margin-left: 6px;
    margin-right: 6px;
  }
}

@media (max-width: 560px) {
  .game-badge {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 0.6875rem;
  }

  .game-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .game-features {
    flex-direction: column;
  }

  .game-feature {
    width: 100%;
    text-align: center;
  }
}

/* How-to register/login section (home) */
.howto-section {
  padding: 34px 0;
}

/* How-to Flow Container */
.howto-flow {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-top: 32px;
  position: relative;
}

/* Flow Arrow */
.flow-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--gold-2);
  opacity: 0.6;
}

/* Step Card */
.howto-step {
  flex: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.howto-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--gold-grad);
  opacity: 0.2;
  border-radius: 999px;
}

.howto-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 77, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.howto-step:hover::before {
  opacity: 0.4;
}

/* Step Number */
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--gold-grad);
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--bg);
}

/* Step Content */
.step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12), rgba(225, 138, 45, 0.08));
  border: 1px solid rgba(255, 210, 77, 0.2);
  border-radius: 16px;
  color: var(--gold-2);
  margin-bottom: 4px;
}

.step-content h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.015em;
}

.step-content > p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Step Checklist */
.step-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.step-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 20px;
  height: 20px;
  background: var(--gold-grad);
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Step Tip */
.step-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 241, 166, 0.06);
  border: 1px solid rgba(255, 215, 77, 0.15);
  border-radius: 12px;
  margin-top: 4px;
}

.step-tip svg {
  flex-shrink: 0;
  color: var(--gold-2);
  margin-top: 2px;
}

.step-tip span {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.step-tip a {
  color: var(--gold-2);
  text-decoration: underline;
  font-weight: 600;
}

.step-tip a:hover {
  color: var(--gold-1);
}

/* How-to Actions */
.howto-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 920px) {
  .howto-section {
    padding: 24px 0;
  }

  .howto-flow {
    flex-direction: column;
    gap: 32px;
    margin-top: 24px;
    padding: 0 6px;
  }

  .flow-arrow {
    display: none;
  }

  .howto-step {
    padding: 24px 20px;
  }

  .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.375rem;
  }

  .step-icon {
    width: 56px;
    height: 56px;
  }

  .step-icon svg {
    width: 28px;
    height: 28px;
  }

  .howto-actions {
    margin-top: 28px;
    padding: 0 6px;
  }
}

@media (max-width: 560px) {
  .howto-step {
    padding: 20px 16px;
  }

  .step-content h3 {
    font-size: 1.125rem;
  }

  .step-tip {
    padding: 10px 12px;
  }

  .howto-actions {
    flex-direction: column;
  }

  .howto-actions .sc-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Bonuses section (home) */
/* Bonuses Section */
.bonus-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.15), rgba(255, 210, 77, 0.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 77, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 210, 77, 0.1);
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.bonus-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: #000;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bonus-card:hover .bonus-icon-wrap {
  transform: scale(1.08) rotate(5deg);
}

.bonus-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-2);
  background: rgba(255, 210, 77, 0.12);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 210, 77, 0.2);
  white-space: nowrap;
}

.bonus-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px 0;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px 0;
  flex-grow: 1;
}

.bonus-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bonus-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.bonus-highlight-item svg {
  flex-shrink: 0;
  color: var(--gold-2);
}

.bonus-cta {
  margin-top: 8px;
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .bonus-card {
    padding: 24px 20px;
  }
  
  .bonus-card-header {
    flex-wrap: wrap;
  }
  
  .bonus-icon-wrap {
    width: 52px;
    height: 52px;
  }
  
  .bonus-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .bonus-card {
    padding: 20px 18px;
  }
  
  .bonus-icon-wrap {
    width: 48px;
    height: 48px;
  }
  
  .bonus-badge {
    font-size: 10px;
    padding: 5px 10px;
  }
  
  .bonus-card h3 {
    font-size: 18px;
  }
  
  .bonus-card > p {
    font-size: 14px;
  }
}

/* News & Promotions section (home) */
/* News & Promotions Section */
.promotions-section .g-col-6:first-of-type {
  position: relative;
}

.promo-featured-card {
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.08) 0%, rgba(255, 210, 77, 0.02) 100%);
  border: 1px solid rgba(255, 210, 77, 0.2);
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.promo-featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 30% 20%, rgba(255, 241, 166, 0.1), transparent 60%);
  pointer-events: none;
}

.promo-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--gold-grad);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.promo-featured-badge svg {
  flex-shrink: 0;
}

.promo-featured-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.promo-featured-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: #000;
  margin-bottom: 4px;
}

.promo-featured-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.promo-featured-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.promo-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 8px 0;
}

.promo-mini-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.promo-mini-feature svg {
  flex-shrink: 0;
  color: var(--gold-2);
}

.promo-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.promo-info-card {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.promo-info-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 210, 77, 0.2);
  transform: translateY(-2px);
}

.promo-responsible-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(34, 197, 94, 0.01) 100%);
  border-color: rgba(34, 197, 94, 0.2);
}

.promo-responsible-card:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 100%);
  border-color: rgba(34, 197, 94, 0.3);
}

.promo-info-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.promo-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 210, 77, 0.12);
  border: 1px solid rgba(255, 210, 77, 0.2);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  flex-shrink: 0;
}

.promo-shield-icon {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
  color: rgb(34, 197, 94);
}

.promo-info-header h4 {
  margin: 0 0 2px 0;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.promo-info-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.promo-info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.promo-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.promo-tag {
  padding: 5px 10px;
  background: rgba(255, 210, 77, 0.1);
  border: 1px solid rgba(255, 210, 77, 0.2);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.promo-responsible-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.responsible-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.responsible-point svg {
  flex-shrink: 0;
  color: rgb(34, 197, 94);
}

.promo-info-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.promo-info-link svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.promo-info-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 920px) {
  .promo-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .promo-featured-card {
    padding: 20px 18px;
  }
  
  .promo-featured-icon {
    width: 56px;
    height: 56px;
  }
  
  .promo-featured-card h3 {
    font-size: 20px;
  }
  
  .promo-info-card {
    padding: 18px 16px;
  }
}

/* Download & Compatibility section (home) */
/* Platform cards layout */
.download-platforms {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.platform-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 210, 77, 0.24);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(255, 210, 77, 0.1);
}

.platform-card:hover::before {
  opacity: 0.4;
}

/* Platform header */
.platform-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 210, 77, 0.10);
  border: 1px solid rgba(255, 210, 77, 0.22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.platform-card:hover .platform-icon {
  background: var(--gold-grad);
  border-color: rgba(255, 210, 77, 0.40);
  box-shadow: 0 8px 20px rgba(225, 138, 45, 0.3);
}

.platform-icon svg {
  color: var(--gold-1);
  transition: all 0.3s;
}

.platform-card:hover .platform-icon svg {
  color: #000;
}

.platform-title {
  flex: 1;
}

.platform-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(255, 210, 77, 0.12);
  border: 1px solid rgba(255, 210, 77, 0.22);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-1);
  margin-bottom: 4px;
}

.platform-title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.platform-desc {
  margin: 0 0 16px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Install steps */
.install-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #000;
  font-weight: 900;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.step-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.5;
}

.step-text strong {
  color: #fff;
  font-weight: 700;
}

/* Platform requirements */
.platform-requirements {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 210, 77, 0.08);
}

.req-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.req-item svg {
  color: var(--gold-2);
  flex-shrink: 0;
}

/* Platform download button */
.platform-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  transition: all 0.3s;
}

.platform-download-btn svg {
  transition: transform 0.3s;
}

.platform-download-btn:hover svg {
  transform: translateY(2px);
}

/* Safety & Compatibility Card */
.download-safety-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 18px;
  padding: 26px;
}

.safety-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.safety-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 210, 77, 0.10);
  border: 1px solid rgba(255, 210, 77, 0.22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.safety-icon svg {
  color: var(--gold-1);
}

.safety-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.safety-section {
  margin-bottom: 24px;
}

.safety-section:last-of-type {
  margin-bottom: 20px;
}

.safety-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.safety-subtitle svg {
  color: var(--gold-2);
}

.safety-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.safety-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}

.safety-checklist li svg {
  color: var(--gold-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.safety-checklist li span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
}

.safety-checklist li strong {
  color: #fff;
  font-weight: 700;
}

/* Safety alert box */
.safety-alert {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 210, 77, 0.06);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 12px;
}

.safety-alert svg {
  color: var(--gold-1);
  flex-shrink: 0;
  margin-top: 2px;
}

.safety-alert strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.safety-alert p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 920px) {
  .download-platforms, .download-safety-card {
    grid-column: span 12;
  }
}

@media (max-width: 560px) {
  .platform-card, .download-safety-card {
    padding: 20px;
  }

  .platform-icon {
    width: 44px;
    height: 44px;
  }

  .platform-title h3 {
    font-size: 18px;
  }

  .install-steps {
    gap: 8px;
  }
}

/* Testimonials section (home) */
.testimonials-section .feature-card.testimonial-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials-section .feature-card.testimonial-card::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-grad);
  opacity: 0.14;
}

.testimonials-section .feature-card.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 14px;
  top: 6px;
  font-size: 58px;
  line-height: 1;
  font-weight: 950;
  color: rgba(255, 210, 77, 0.18);
  pointer-events: none;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 210, 77, 0.22);
  background: var(--gold-grad);
  color: #000;
  font-weight: 950;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
}

.testimonials-section .testimonial-head h3 {
  margin: 0;
}

.testimonials-section .testimonial-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

/* New testimonial styles */
.testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.testimonial-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.verified-badge {
  color: var(--gold-2);
  flex-shrink: 0;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.testimonial-rating svg {
  color: var(--gold-2);
  transition: transform 0.2s;
}

.testimonials-section .feature-card.testimonial-card:hover .testimonial-rating svg {
  transform: scale(1.1);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

@media (max-width: 560px) {
  .testimonial-rating svg {
    width: 14px;
    height: 14px;
  }
}

/* FAQs section (home) */
.faqs-section details.faq-acc {
  padding: 0;
}

.faqs-section details.faq-acc::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-grad);
  opacity: 0.14;
}

.faqs-section details.faq-acc > summary {
  list-style: none;
}

.faqs-section details.faq-acc > summary::-webkit-details-marker {
  display: none;
}

.faq-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.faq-summary::after {
  content: "";
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.faqs-section details.faq-acc[open] .faq-summary::after {
  transform: rotate(225deg);
  border-color: rgba(255, 210, 77, 0.55);
}

.faq-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 210, 77, 0.22);
  background: rgba(255, 210, 77, 0.10);
  color: #000;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.faq-q {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.faq-body {
  padding: 0 18px 18px;
}

.faqs-section details.faq-acc[open] .faq-body {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.faqs-section .faq-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.faqs-section details.faq-acc:hover .faq-ico {
  border-color: rgba(255, 210, 77, 0.40);
  background: var(--gold-grad);
}

.faqs-section details.faq-acc:hover .faq-summary::after {
  border-color: rgba(255, 210, 77, 0.35);
}

/* Enhanced FAQ Styles */
.faqs-section .section-intro {
  text-align: center;
  margin-bottom: 32px;
}

.faqs-section .pill {
  margin-bottom: 18px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faqs-section .faq-acc {
  transition: all 0.3s ease;
  overflow: hidden;
}

.faqs-section .faq-acc:hover {
  border-color: rgba(255, 210, 77, 0.25);
  box-shadow: 0 4px 20px rgba(255, 210, 77, 0.08);
}

.faqs-section details.faq-acc[open] {
  border-color: rgba(255, 210, 77, 0.30);
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.04) 0%, rgba(11, 8, 16, 0.5) 100%);
}

.faq-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: padding 0.3s ease;
}

.faqs-section details.faq-acc[open] .faq-summary {
  padding-bottom: 18px;
}

.faq-summary:hover .faq-ico {
  transform: scale(1.05);
  border-color: rgba(255, 210, 77, 0.45);
}

.faq-summary::after {
  content: "";
  margin-left: auto;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid rgba(255, 255, 255, 0.45);
  border-bottom: 2.5px solid rgba(255, 255, 255, 0.45);
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.faqs-section details.faq-acc[open] .faq-summary::after {
  transform: rotate(225deg);
  border-color: var(--gold-2);
}

.faq-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 210, 77, 0.25);
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12) 0%, rgba(255, 210, 77, 0.06) 100%);
  flex: 0 0 auto;
  transition: all 0.3s ease;
}

.faqs-section details.faq-acc[open] .faq-icon-wrapper {
  background: var(--gold-grad);
  border-color: var(--gold-2);
  box-shadow: 0 4px 12px rgba(255, 210, 77, 0.25);
}

.faq-icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: var(--gold-2);
  transition: transform 0.3s ease;
}

.faqs-section details.faq-acc[open] .faq-icon-wrapper svg {
  transform: scale(1.1);
  color: var(--bg);
}

.faq-question-wrapper {
  flex: 1;
  min-width: 0;
}

.faq-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-2);
  margin-bottom: 6px;
  opacity: 0.8;
}

.faq-q {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.3s ease;
}

.faqs-section details.faq-acc[open] .faq-q {
  color: #fff;
}

.faq-body {
  padding: 0 24px 24px 92px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faqs-section details.faq-acc[open] .faq-body {
  border-top: 1px solid rgba(255, 210, 77, 0.15);
  padding-top: 20px;
  margin-top: 4px;
}

.faqs-section .faq-text {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.faqs-section .faq-text a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.faqs-section .faq-text a:hover {
  color: var(--gold-1);
}

@media (max-width: 560px) {
  .faq-summary {
    padding: 18px;
    gap: 12px;
  }
  
  .faq-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  
  .faq-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
  
  .faq-q {
    font-size: 15px;
  }
  
  .faq-body {
    padding: 0 18px 18px 74px;
  }
  
  .faqs-section details.faq-acc[open] .faq-body {
    padding-top: 16px;
  }
}

/* Responsible gaming (home) */
.responsible-card {
  padding: 18px;
}

.responsible-card.alt {
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.responsible-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.responsible-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 210, 77, 0.22);
  background: rgba(255, 210, 77, 0.10);
  color: #000;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.responsible-head h3 { margin: 0; }

.responsible-checks,
.responsible-help {
  margin-top: 10px;
}

.responsible-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Enhanced Responsible Gaming Section Styles */
.responsible-section {
  position: relative;
}

.responsible-section .section-intro {
  text-align: center;
  margin-bottom: 32px;
}

.responsible-section .pill {
  margin-bottom: 18px;
}

.responsible-section .feature-card {
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.responsible-section .feature-card:hover {
  border-color: rgba(255, 210, 77, 0.28);
  box-shadow: 0 8px 30px rgba(255, 210, 77, 0.12);
  transform: translateY(-2px);
}

.responsible-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 210, 77, 0.25);
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12) 0%, rgba(255, 210, 77, 0.06) 100%);
  flex: 0 0 auto;
  transition: all 0.3s ease;
}

.responsible-section .feature-card:hover .responsible-icon-wrapper {
  background: var(--gold-grad);
  border-color: var(--gold-2);
  box-shadow: 0 4px 16px rgba(255, 210, 77, 0.3);
  transform: scale(1.05);
}

.responsible-icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: var(--gold-2);
  transition: all 0.3s ease;
}

.responsible-section .feature-card:hover .responsible-icon-wrapper svg {
  color: var(--bg);
  transform: scale(1.1);
}

.responsible-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 210, 77, 0.12);
}

.responsible-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.3px;
}

.responsible-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.responsible-alert {
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.08) 0%, rgba(255, 165, 0, 0.06) 100%);
  border: 1px solid rgba(255, 210, 77, 0.20);
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: start;
}

.responsible-alert-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.responsible-alert-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.responsible-section .list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.responsible-section .list li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.responsible-section .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.18) 0%, rgba(255, 210, 77, 0.08) 100%);
  border: 1.5px solid rgba(255, 210, 77, 0.3);
}

.responsible-section .list li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 0.4em;
  font-size: 11px;
  font-weight: 900;
  color: var(--gold-2);
}

.responsible-section .list li a {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.responsible-section .list li a:hover {
  color: var(--gold-1);
  text-decoration: underline;
}

.responsible-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.responsible-actions .sc-btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

.responsible-help-card {
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.05) 0%, rgba(11, 8, 16, 0.6) 100%);
  border-color: rgba(255, 210, 77, 0.18);
}

.responsible-disclaimer {
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(11, 8, 16, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.responsible-disclaimer-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.responsible-disclaimer-text strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

@media (max-width: 920px) {
  .responsible-section .g-col-7,
  .responsible-section .g-col-5 {
    grid-column: span 12;
  }
}

@media (max-width: 560px) {
  .responsible-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  
  .responsible-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  
  .responsible-header h3 {
    font-size: 18px;
  }
  
  .responsible-actions {
    flex-direction: column;
  }
  
  .responsible-actions .sc-btn {
    width: 100%;
    min-width: unset;
  }
  
  .responsible-disclaimer {
    padding: 16px 18px;
  }
}

/* Contact section (home) */
.contact-section .feature-card.contact-card,
.contact-section .feature-card.company-card {
  padding: 18px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.contact-section .feature-card.contact-card::after,
.contact-section .feature-card.company-card::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-grad);
  opacity: 0.14;
}

.contact-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 210, 77, 0.22);
  background: rgba(255, 210, 77, 0.10);
  color: #000;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.contact-section .contact-head h3 {
  margin: 0;
}

.contact-section .contact-card .list {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.contact-section .contact-card .list li {
  position: relative;
  padding-left: 28px;
}

.contact-section .contact-card .list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 210, 77, 0.16);
  border: 1px solid rgba(255, 210, 77, 0.22);
  color: rgba(255, 255, 255, 0.90);
  font-weight: 950;
  font-size: 12px;
  display: grid;
  place-items: center;
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.company-rows {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.company-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 520px) {
  .company-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.company-label {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.company-value {
  color: rgba(255, 255, 255, 0.86);
  word-break: break-word;
}

.company-row a.company-value {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 850;
}

.company-row a.company-value:hover {
  color: var(--gold-1);
  text-decoration: underline;
}

.contact-section .feature-card.contact-card:hover .contact-ico,
.contact-section .feature-card.company-card:hover .contact-ico {
  border-color: rgba(255, 210, 77, 0.40);
  background: var(--gold-grad);
}

/* Enhanced Contact Section Styles */
.contact-section {
  position: relative;
}

.contact-section .section-intro {
  text-align: center;
  margin-bottom: 32px;
}

.contact-section .pill {
  margin-bottom: 18px;
}

.contact-grid {
  display: grid;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-section .feature-card {
  position: relative;
  transition: all 0.3s ease;
}

.contact-section .feature-card:hover {
  border-color: rgba(255, 210, 77, 0.28);
  box-shadow: 0 8px 30px rgba(255, 210, 77, 0.12);
  transform: translateY(-2px);
}

.contact-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 210, 77, 0.25);
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12) 0%, rgba(255, 210, 77, 0.06) 100%);
  flex: 0 0 auto;
  transition: all 0.3s ease;
}

.contact-section .feature-card:hover .contact-icon-wrapper {
  background: var(--gold-grad);
  border-color: var(--gold-2);
  box-shadow: 0 4px 16px rgba(255, 210, 77, 0.3);
  transform: scale(1.05);
}

.contact-icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: var(--gold-2);
  transition: all 0.3s ease;
}

.contact-section .feature-card:hover .contact-icon-wrapper svg {
  color: var(--bg);
  transform: scale(1.1);
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 210, 77, 0.12);
}

.contact-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.3px;
}

.contact-section .contact-card .list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-section .contact-card .list li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section .contact-card .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.18) 0%, rgba(255, 210, 77, 0.08) 100%);
  border: 1.5px solid rgba(255, 210, 77, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .contact-card .list li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 0.4em;
  font-size: 11px;
  font-weight: 900;
  color: var(--gold-2);
}

.contact-section .contact-card .list li a {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.contact-section .contact-card .list li a:hover {
  color: var(--gold-1);
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-actions .sc-btn {
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

.company-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 210, 77, 0.12);
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.04) 0%, rgba(11, 8, 16, 0.6) 100%);
  transition: all 0.3s ease;
}

.company-item:hover {
  border-color: rgba(255, 210, 77, 0.25);
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.08) 0%, rgba(11, 8, 16, 0.5) 100%);
}

.company-item-label {
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold-2);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-item-label svg {
  width: 14px;
  height: 14px;
  color: var(--gold-2);
  opacity: 0.7;
}

.company-item-value {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  word-break: break-word;
}

.company-item-value a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.company-item-value a:hover {
  color: var(--gold-1);
  text-decoration: underline;
}

@media (max-width: 560px) {
  .contact-grid {
    gap: 20px;
  }
  
  .contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  
  .contact-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-header h3 {
    font-size: 18px;
  }
  
  .contact-actions {
    flex-direction: column;
  }
  
  .contact-actions .sc-btn {
    width: 100%;
    min-width: unset;
  }
}

/* About page hero (tkgem-style) */
.about-hero {
  position: relative;
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(255, 210, 77, 0.18), transparent 60%),
    radial-gradient(700px 360px at 88% 20%, rgba(217, 164, 65, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.30);
}

.about-hero-title {
  margin: 10px 0 8px 0;
}

.about-hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.hero-stat-item {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 210, 77, 0.18);
  background: rgba(255, 210, 77, 0.08);
  text-align: center;
}

.hero-stat-number {
  font-weight: 950;
  font-size: 22px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2px;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  font-size: 13px;
}

@media (max-width: 768px) {
  .about-hero { padding: 18px 14px; }
  .about-hero-stats { grid-template-columns: 1fr; }
}

/* Promotions page hero (tkgem-style) */
.promotions-hero {
  position: relative;
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(900px 420px at 20% 15%, rgba(255, 210, 77, 0.18), transparent 60%),
    radial-gradient(700px 360px at 80% 25%, rgba(217, 164, 65, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.30);
}

.promotions-hero-title {
  margin: 10px 0 8px 0;
}

.promotions-hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.pill {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--gold-grad);
  border: 1px solid rgba(255, 210, 77, 0.70);
  color: #000;
  font-weight: 900;
  font-size: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(255, 210, 77, 0.18);
}

.pill::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
  opacity: 0;
}

h1, h2, h3 { letter-spacing: -0.02em; }

h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 12px 0;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero */
.hero {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero::before {
  content: none;
}

.hero::after {
  content: none;
}

.hero > * { position: relative; z-index: 1; }

.hero .page-title {
  margin-bottom: 14px;
  text-wrap: balance;
}

.hero-title {
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.06;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.hero .page-title::after {
  width: 120px;
  height: 4px;
  bottom: -10px;
  box-shadow: 0 10px 30px rgba(255, 210, 77, 0.12);
}

.hero-copy {
  padding: 4px 0 0;
}

.hero-copy p {
  max-width: 74ch;
}

.hero-copy .muted:not(.hero-lead) {
  color: rgba(255, 255, 255, 0.80);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  align-items: center;
}

/* Hero Section */
.hero-shell {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.22));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 450px;
  height: 450px;
  background: radial-gradient(closest-side, rgba(255, 210, 77, 0.16), transparent 62%);
  opacity: 0.8;
  filter: blur(3px);
  z-index: 0;
}

.hero-shell > * { 
  position: relative; 
  z-index: 1; 
}

.hero-main { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
}

.hero-badge-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgb(34, 197, 94);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: rgb(34, 197, 94);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-platform-badge {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(255, 210, 77, 0.12);
  border: 1px solid rgba(255, 210, 77, 0.25);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-title-highlight {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  white-space: nowrap;
}

.hero-description {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.hero-description strong {
  color: #fff;
  font-weight: 700;
}

.hero-description a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.hero-description a:hover {
  color: var(--gold-1);
}

.hero-game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-tag {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
}

.game-tag:hover {
  background: rgba(255, 210, 77, 0.08);
  border-color: rgba(255, 210, 77, 0.3);
  color: var(--gold-1);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
}

.hero-cta-primary svg {
  flex-shrink: 0;
}

.hero-cta-secondary {
  padding: 15px 24px;
  font-size: 14px;
}

.hero-trust-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.trust-bar-item svg {
  color: var(--gold-2);
  flex-shrink: 0;
}

/* Hero Highlights Panel */
.hero-highlights-panel {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: fit-content;
}

.highlights-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlights-panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: #000;
  flex-shrink: 0;
}

.highlights-panel-header h3 {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.highlights-panel-header p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 210, 77, 0.04);
  border-color: rgba(255, 210, 77, 0.2);
}

.highlight-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 210, 77, 0.12);
  border: 1px solid rgba(255, 210, 77, 0.2);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  flex-shrink: 0;
}

.highlight-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.highlight-content span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.highlights-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.highlights-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-align: center;
}

.highlights-stat svg {
  color: var(--gold-2);
}

.highlights-stat strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.highlights-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 920px) {
  .hero { padding: 6px 0; }
  
  .hero-shell {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 20px;
  }
  
  .hero-title {
    font-size: clamp(28px, 6vw, 36px);
  }
  
  .hero-highlights-panel {
    order: 2;
  }
  
  .hero-main {
    order: 1;
  }
  
  .hero-game-tags {
    gap: 6px;
  }
  
  .game-tag {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .highlights-stats-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .hero-shell {
    padding: 20px 16px;
  }
  
  .hero-badge-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-title {
    font-size: clamp(24px, 5.5vw, 32px);
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-trust-bar {
    gap: 14px;
  }
  
  .trust-bar-item {
    font-size: 12px;
  }
  
  .highlights-panel-header {
    flex-direction: column;
  }
  
  .highlights-panel-icon {
    width: 44px;
    height: 44px;
  }
  
  .highlights-stats-row {
    grid-template-columns: 1fr;
  }
}

h2 { font-size: 26px; margin: 0 0 12px 0; }
h3 { font-size: 18px; margin: 0 0 8px 0; }

p { margin: 0 0 12px 0; line-height: 1.7; }

.list { margin: 0; padding-left: 18px; }
.list li { margin: 8px 0; color: rgba(255, 255, 255, 0.85); line-height: 1.6; }

.hr { height: 1px; background: rgba(255, 255, 255, 0.08); border: 0; margin: 18px 0; }

.kpi { font-weight: 900; font-size: 20px; }
.small { font-size: 14px; }

footer {
  border-top: 2px solid transparent;
  background: linear-gradient(180deg, rgba(11, 8, 16, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
  position: relative;
  margin-top: 60px;
}

footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
  opacity: 0.5;
}

footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: radial-gradient(ellipse at top, rgba(255, 210, 77, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 24px;
  padding: 48px 0 24px;
}

.footer-col-3 { grid-column: span 3; }
.footer-col-4 { grid-column: span 4; }
.footer-col-12 { grid-column: span 12; }

@media (max-width: 920px) {
  .footer-col-3,
  .footer-col-4 { grid-column: span 6; }
  
  .footer-grid {
    gap: 28px 20px;
  }
}

@media (max-width: 560px) {
  .footer-col-3,
  .footer-col-4 { grid-column: span 12; }
  
  .footer-grid {
    gap: 32px 16px;
    padding: 36px 0 20px;
  }
  
  .footer-title-wrapper {
    justify-content: center;
  }
  
  .footer-about-section {
    text-align: center;
  }
  
  .footer-list {
    align-items: center;
  }
  
  .footer-title-wrapper {
    justify-content: center;
  }
  
  .footer-about-section {
    text-align: center;
  }
  
  .footer-list {
    align-items: center;
  }
}

.footer-about-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.footer-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-main-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid rgba(255, 210, 77, 0.3);
  padding: 6px;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12) 0%, rgba(255, 210, 77, 0.04) 100%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-main-logo:hover {
  border-color: var(--gold-2);
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.18) 0%, rgba(255, 210, 77, 0.08) 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(255, 210, 77, 0.3);
}

.footer-about-title {
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 8px 0;
  color: var(--gold-2);
  letter-spacing: -0.3px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--gold-2);
  display: inline-block;
  position: relative;
}

.footer-about-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 40%;
  height: 3px;
  background: var(--gold-grad);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(150%); }
}

.footer-about-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: center;
}

.footer-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 210, 77, 0.2);
}

.footer-title-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-2);
  flex-shrink: 0;
}

.footer-title {
  font-weight: 800;
  font-size: 17px;
  margin: 0;
  color: var(--gold-2);
  letter-spacing: -0.2px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li {
  margin: 0;
  position: relative;
}

.footer-list-arrow {
  display: inline-block;
  margin-right: 8px;
  color: var(--gold-2);
  opacity: 0.6;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-list a:hover .footer-list-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.footer-about-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.footer-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 13px;
  line-height: 1.7;
}

.footer-note a {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-note a:hover {
  color: var(--gold-1);
  text-decoration: underline;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}

.footer-list a:hover {
  color: var(--gold-1);
  padding-left: 4px;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.06) 0%, rgba(11, 8, 16, 0.4) 100%);
  border: 1px solid rgba(255, 210, 77, 0.15);
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  border: 2px solid rgba(255, 210, 77, 0.3);
  padding: 4px;
  background: rgba(255, 210, 77, 0.08);
}

.footer-brand-text {
  flex: 1;
}

.footer-brand-name {
  font-weight: 800;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 16px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid rgba(255, 210, 77, 0.4);
  color: var(--gold-2);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover::before {
  opacity: 1;
}

.footer-social-link:hover {
  background: var(--gold-grad);
  border-color: var(--gold-2);
  color: var(--bg);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 210, 77, 0.5);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-payment-section {
  margin-top: 40px;
  padding-top: 32px;
  position: relative;
  text-align: center;
}

.footer-payment-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 210, 77, 0.24),
      rgba(255, 241, 166, 0.40),
      rgba(255, 210, 77, 0.24),
      transparent
    );
  box-shadow: 0 10px 24px rgba(255, 210, 77, 0.10);
  opacity: 0.9;
}

.footer-payment-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-payment-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-2);
}

.footer-payment-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.footer-payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-payment-badge {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 210, 77, 0.5);
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.12) 0%, rgba(255, 210, 77, 0.04) 100%);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.footer-payment-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 77, 0.2), transparent);
  transition: left 0.5s ease;
}

.footer-payment-badge:hover::before {
  left: 100%;
}

.footer-payment-badge:hover {
  border-color: var(--gold-2);
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.18) 0%, rgba(255, 210, 77, 0.08) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 210, 77, 0.25);
}

.footer-trademark {
  font-size: 11px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.footer-responsible-box {
  margin: 28px auto;
  max-width: 900px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.08) 0%, rgba(255, 210, 77, 0.03) 100%);
  border-left: 4px solid var(--gold-2);
  border-radius: 8px;
  text-align: left;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-responsible-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.footer-responsible-icon svg {
  width: 16px;
  height: 16px;
  color: var(--bg);
}

.footer-responsible-content {
  flex: 1;
}

.footer-responsible-box p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.80);
}

.footer-responsible-box strong {
  color: var(--gold-2);
  font-weight: 800;
}

.footer-rich-text {
  margin: 28px auto 0;
  max-width: 1000px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 210, 77, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 210, 77, 0.1);
}

.footer-rich-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.70);
}

.footer-rich-text a {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-rich-text a:hover {
  color: var(--gold-1);
  text-decoration: underline;
}

@media (max-width: 560px) {
  .footer-payment-methods {
    gap: 12px;
  }
  
  .footer-payment-badge {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .footer-responsible-box {
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-rich-text {
    padding: 18px;
  }
}

.footer-bottom {
  position: relative;
  padding: 20px 0;
  margin-top: 32px;
  text-align: center;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 210, 77, 0.24),
      rgba(255, 241, 166, 0.40),
      rgba(255, 210, 77, 0.24),
      transparent
    );
  box-shadow: 0 10px 24px rgba(255, 210, 77, 0.10);
  opacity: 0.9;
}

.footer-dmca {
  margin-bottom: 12px;
}

.footer-dmca img {
  height: 32px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-dmca img:hover {
  opacity: 1;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-copyright-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-copyright-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-2);
  opacity: 0.8;
}

.footer-copyright-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-copyright-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-2);
  opacity: 0.7;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 12px;
}

.footer-legal-links a:hover {
  color: var(--gold-1);
}

@media (max-width: 560px) {
  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .footer-legal-links {
    gap: 12px;
  }
}

/* Section head (title + action) */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Open homepage sections (no boxed wrappers) */
.home-section {
  margin: 0;
  padding: 34px 0;
  position: relative;
}

/* Clear separator between sections (works even with <script> between sections) */
.home-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 210, 77, 0.24),
      rgba(255, 241, 166, 0.40),
      rgba(255, 210, 77, 0.24),
      transparent
    );
  box-shadow: 0 10px 24px rgba(255, 210, 77, 0.10);
  opacity: 0.9;
}

/* Don't show a separator above the first homepage section */
.home-section:first-of-type {
  border-top: 0;
}

.home-section:first-of-type::before {
  opacity: 0;
}

@media (max-width: 920px) {
  .home-section {
    padding: 24px 0;
  }
}

/* Centered section intro (matches the open About style) */
.section-intro {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-intro p {
  max-width: 92ch;
  margin-left: auto;
  margin-right: auto;
}

/* About section design */
/* About Section */
.about-section {
  padding: 40px 0;
}

.about-intro {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
  padding: 0 10px;
}

.about-intro h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-intro p {
  margin-left: auto;
  margin-right: auto;
  max-width: 86ch;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.about-content {
  max-width: var(--container);
  margin: 0 auto 24px;
  padding: 0 10px;
}

.about-story-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.about-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-2);
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 210, 77, 0.1);
  border: 1px solid rgba(255, 210, 77, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.about-badge svg {
  color: var(--gold-2);
  flex-shrink: 0;
}

.about-story-card h3 {
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.about-story-card p {
  margin: 0 0 12px 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.about-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: #000;
  flex-shrink: 0;
}

.stat-mini-text strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.stat-mini-text span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about-features-panel {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-features-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 20%, rgba(255, 210, 77, 0.08), transparent 70%);
  pointer-events: none;
}

.about-features-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.about-features-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: #000;
  flex-shrink: 0;
}

.about-features-header h3 {
  margin: 0 0 4px 0;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.about-features-header p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.about-features-list {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  background: rgba(255, 210, 77, 0.04);
  border-color: rgba(255, 210, 77, 0.2);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 210, 77, 0.12);
  border: 1px solid rgba(255, 210, 77, 0.2);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
  background: var(--gold-grad);
  border-color: transparent;
  color: #000;
  transform: scale(1.05);
}

.about-feature-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.about-feature-content span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.about-trust-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 10px;
}

.about-trust-banner {
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(255, 210, 77, 0.08) 0%, rgba(255, 210, 77, 0.02) 100%);
  border: 1px solid rgba(255, 210, 77, 0.2);
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-trust-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 30% 50%, rgba(255, 241, 166, 0.12), transparent 60%);
  pointer-events: none;
}

.about-trust-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: #000;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(255, 210, 77, 0.3);
}

.about-trust-content {
  position: relative;
  z-index: 1;
}

.about-trust-content h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.about-trust-content p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.about-trust-metrics {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.trust-metric-badge {
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 210, 77, 0.25);
  border-radius: 12px;
  text-align: center;
  min-width: 90px;
}

.trust-metric-badge strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-1);
  line-height: 1.2;
  margin-bottom: 4px;
}

.trust-metric-badge span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 920px) {
  .about-stats-mini {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .about-trust-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  
  .about-trust-icon {
    margin: 0 auto;
  }
  
  .about-trust-metrics {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .about-story-card,
  .about-features-panel {
    padding: 20px 18px;
  }
  
  .about-badge-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .about-trust-banner {
    padding: 24px 20px;
  }
  
  .about-trust-icon {
    width: 60px;
    height: 60px;
  }
  
  .about-trust-content h3 {
    font-size: 18px;
  }
  
  .trust-metric-badge {
    min-width: 70px;
    padding: 10px 14px;
  }
  
  .trust-metric-badge strong {
    font-size: 16px;
  }
}

.about-metric-value {
  font-weight: 950;
  font-size: 22px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2px;
}

.about-metric-label {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-hero-card {
  display: flex;
  gap: 24px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
}

.about-hero-content {
  flex: 1 1 400px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.about-hero-content p {
  margin-bottom: 14px;
}

.about-stats {
  display: flex;
  gap: 16px;
  flex: 0 1 auto;
  align-items: center;
  flex-wrap: wrap;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 210, 77, 0.20);
  background: rgba(255, 210, 77, 0.08);
  min-width: 100px;
}

.about-stat-value {
  font-weight: 900;
  font-size: 24px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.about-feature {
  text-align: center;
}

.about-icon {
  font-size: 42px;
  margin-bottom: 12px;
  line-height: 1;
}

.about-feature h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.about-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Service Areas (home) */
/* Where You Can Play Section */
.service-areas-section {
  padding: 40px 0;
}

.coverage-map-section {
  max-width: var(--container);
  margin: 32px auto 0;
  padding: 0 10px;
  gap: 24px;
}

.coverage-hero-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.coverage-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--gold-grad);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}

.coverage-hero-badge svg {
  flex-shrink: 0;
}

.coverage-hero-card h3 {
  margin: 0 0 8px 0;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.coverage-hero-card > p {
  margin: 0 0 8px 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.coverage-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0 16px;
}

.coverage-stat-card {
  padding: 16px 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.coverage-stat-card:hover {
  background: rgba(255, 210, 77, 0.04);
  border-color: rgba(255, 210, 77, 0.2);
  transform: translateY(-2px);
}

.coverage-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 210, 77, 0.12);
  border: 1px solid rgba(255, 210, 77, 0.2);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.coverage-stat-card:hover .coverage-stat-icon {
  background: var(--gold-grad);
  border-color: transparent;
  color: #000;
}

.coverage-stat-content strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.coverage-stat-content span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.coverage-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.coverage-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.coverage-feature-item svg {
  flex-shrink: 0;
  color: var(--gold-2);
}

.coverage-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Regions Directory Card */
.regions-directory-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.regions-directory-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 20%, rgba(255, 210, 77, 0.06), transparent 70%);
  pointer-events: none;
}

.regions-directory-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.regions-directory-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  color: #000;
  flex-shrink: 0;
}

.regions-directory-header h4 {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.regions-directory-header p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.regions-grid {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.region-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.region-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.region-card:hover {
  background: rgba(255, 210, 77, 0.04);
  border-color: rgba(255, 210, 77, 0.25);
  transform: translateX(4px);
}

.region-card:hover::before {
  opacity: 0.04;
}

.region-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 210, 77, 0.12);
  border: 1px solid rgba(255, 210, 77, 0.2);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.region-card:hover .region-card-icon {
  background: var(--gold-grad);
  border-color: transparent;
  color: #000;
  transform: scale(1.05);
}

.region-card-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.region-card-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.region-card-content span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.region-card-arrow {
  color: var(--gold-2);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.region-card:hover .region-card-arrow {
  transform: translateX(4px);
}

@media (max-width: 920px) {
  .coverage-stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .coverage-stat-card {
    padding: 14px 12px;
  }
}

@media (max-width: 560px) {
  .coverage-hero-card,
  .regions-directory-card {
    padding: 20px 18px;
  }
  
  .coverage-hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .coverage-hero-card h3 {
    font-size: 22px;
  }
  
  .coverage-stat-icon {
    width: 40px;
    height: 40px;
  }
  
  .coverage-stat-content strong {
    font-size: 18px;
  }
  
  .regions-directory-icon {
    width: 48px;
    height: 48px;
  }
  
  .region-card {
    padding: 12px 14px;
  }
  
  .region-card-icon {
    width: 36px;
    height: 36px;
  }
}
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}

.region-arrow {
  font-weight: 900;
  color: var(--gold-2);
  font-size: 1.125rem;
  transition: transform 180ms ease;
  position: relative;
  z-index: 1;
}

.region-chip:hover .region-arrow {
  transform: translateX(3px);
}

@media (max-width: 920px) {
  .service-areas-section {
    padding: 24px 0;
  }

  .service-areas-layout {
    padding: 0 6px;
  }

  .service-areas-intro {
    padding-right: 0;
    margin-bottom: 24px;
  }

  .coverage-highlights {
    margin: 20px 0;
  }

  .coverage-item {
    gap: 12px;
  }

  .coverage-icon {
    font-size: 1.5rem;
  }

  .regions-panel {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .service-areas-intro h3 {
    font-size: 1.5rem;
  }

  .coverage-highlights {
    gap: 14px;
  }

  .service-areas-actions {
    flex-direction: column;
    width: 100%;
  }

  .service-areas-actions .sc-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 920px) {
  .about-section { padding: 24px 0; }
  .about-feature-grid { padding: 0 6px; }
  .about-split { padding: 0 6px; }
  .about-split .g-col-5::before { display: none; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-metrics {
    grid-template-columns: 1fr;
    padding: 12px;
    margin-left: 6px;
    margin-right: 6px;
  }
}

@media (max-width: 680px) {
  .about-pillars { grid-template-columns: 1fr; }
}

/* Category bar (2nd navigation) */
.catbar {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0, 0, 0, 0.10);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.catbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(680px 280px at 18% 10%, rgba(255, 241, 166, 0.16), transparent 62%),
    radial-gradient(680px 280px at 85% 85%, rgba(255, 210, 77, 0.22), transparent 66%),
    linear-gradient(135deg, rgba(217, 164, 65, 0.14), transparent 60%);
  opacity: 0;
}

.catbar > * { position: relative; z-index: 1; }

.catbar:hover {
  border-color: rgba(255, 210, 77, 0.24);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.catbar:hover::before {
  opacity: 0.95;
}

.catbar-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.catbar-track::-webkit-scrollbar { height: 10px; }
.catbar-track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.10);
  border-radius: 999px;
}

.catbar-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0, 0, 0, 0.10);
  color: rgba(255,255,255,0.90);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.catbar-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(220px 140px at 20% 20%, rgba(255, 241, 166, 0.18), transparent 65%),
    linear-gradient(135deg, rgba(255, 210, 77, 0.18), transparent 45%);
  opacity: 0;
}

.catbar-tab:hover {
  border-color: rgba(255, 210, 77, 0.25);
  background: rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.catbar-tab:hover::before {
  opacity: 0.95;
}

.catbar-tab[aria-selected="true"] {
  border-color: rgba(255, 210, 77, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(0, 0, 0, 0.14) 60%),
    var(--gold-grad);
  color: #000;
  box-shadow: 0 12px 38px rgba(255, 210, 77, 0.16);
}

.catbar-ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.10);
  flex: 0 0 auto;
}

.catbar-tab[aria-selected="true"] .catbar-ico {
  border-color: rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.10);
}

.catbar-ico img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.catbar-label {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 14px;
}

/* Category panels */
.catpanel { margin-top: 14px; }

.catcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 920px) {
  .catcards { grid-template-columns: repeat(2, 1fr); }
}

.catcard {
  display: block;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.10);
  height: 100%;
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.26);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.catcard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 260px at 18% 12%, rgba(255, 241, 166, 0.16), transparent 62%),
    linear-gradient(135deg, rgba(255, 210, 77, 0.22), transparent 55%),
    radial-gradient(520px 260px at 85% 85%, rgba(217, 164, 65, 0.14), transparent 62%);
  opacity: 0;
}

.catcard > * { position: relative; z-index: 1; }

.catcard:hover {
  text-decoration: none;
  border-color: rgba(255, 210, 77, 0.28);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.catcard:hover::before {
  opacity: 0.95;
}

.catcard-title {
  font-weight: 900;
  margin-bottom: 6px;
}

.catcard-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(520px 220px at 20% 20%, rgba(255, 210, 77, 0.18), transparent 55%),
    radial-gradient(520px 220px at 80% 70%, rgba(217, 164, 65, 0.16), transparent 60%),
    rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

/* When you add real images later, drop an <img> inside .catcard-thumb */
.catcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catcard-meta {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.5;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 22px 70px rgba(0,0,0,0.35);
}

.carousel-track {
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition: transform 420ms ease;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

@media (max-width: 920px) {
  .carousel-slide img { aspect-ratio: 16 / 8; }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(17, 13, 20, 0.55);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  border-color: rgba(255, 210, 77, 0.40);
  box-shadow: 0 12px 30px rgba(255, 210, 77, 0.10);
}

.carousel-btn-prev { left: 12px; }
.carousel-btn-next { right: 12px; }

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(17, 13, 20, 0.50);
  backdrop-filter: blur(10px);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  cursor: pointer;
}

.carousel-dot[aria-current="true"] {
  background: var(--gold-grad);
  border-color: rgba(255, 210, 77, 0.55);
}

.carousel-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(17, 13, 20, 0.55);
  backdrop-filter: blur(10px);
  max-width: min(560px, calc(100% - 28px));
}

.carousel-caption strong { display: block; margin-bottom: 2px; }
.carousel-caption span { color: rgba(255,255,255,0.76); font-size: 13px; line-height: 1.5; }

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* About Content Section */
.about-content-section {
  padding: 28px 0 48px;
}

/* About Section Separators */
.about-story-card::before,
.about-mission-card::before,
.about-difference-section::before,
.about-games-section::before,
.about-security-section::before,
.about-responsible-section::before,
.about-support-section::before,
.about-cta-section::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 241, 166, 0.15) 15%,
    rgba(255, 210, 77, 0.45) 35%,
    var(--gold-2) 50%,
    rgba(255, 210, 77, 0.45) 65%,
    rgba(255, 241, 166, 0.15) 85%,
    transparent 100%
  );
  margin-bottom: 28px;
  position: relative;
  box-shadow: 0 0 12px rgba(255, 210, 77, 0.35);
}

.about-intro-card {
  position: relative;
  padding-top: 32px;
}

.about-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 241, 166, 0.15) 15%,
    rgba(255, 210, 77, 0.45) 35%,
    var(--gold-2) 50%,
    rgba(255, 210, 77, 0.45) 65%,
    rgba(255, 241, 166, 0.15) 85%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(255, 210, 77, 0.35);
}

/* About Intro Card */
.about-intro-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 16px;
  margin-bottom: 28px;
}

.about-intro-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 12px;
  position: relative;
}

.about-intro-icon::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--gold-grad);
  border-radius: inherit;
  opacity: 0.35;
  filter: blur(8px);
}

.about-intro-icon svg {
  width: 32px;
  height: 32px;
  color: #0B0810;
  position: relative;
  z-index: 1;
}

.about-intro-content {
  flex: 1;
}

.about-intro-content h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #FFF1A6 0%, #FFD24D 50%, #E18A2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro-content p.large {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Story Card */
.about-story-card {
  padding: 32px;
  padding-top: 36px;
}

.about-story-card .section-intro {
  margin-bottom: 24px;
}

.about-story-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

/* Mission & Vision Cards */
.about-mission-card,
.about-vision-card {
  height: 100%;
  padding: 28px;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
}

.about-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 16px;
  position: relative;
}

.about-card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.about-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-2);
  position: relative;
  z-index: 1;
}

.mission-icon {
  background: rgba(255, 241, 166, 0.08);
}

.vision-icon {
  background: rgba(225, 138, 45, 0.08);
}

.about-mission-card h3,
.about-vision-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.about-mission-card p,
.about-vision-card p {
  margin-bottom: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.about-mission-card p:last-child,
.about-vision-card p:last-child {
  margin-bottom: 0;
}

/* Value Cards */
.about-value-card {
  height: 100%;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 77, 0.35);
  box-shadow: 0 8px 24px rgba(255, 210, 77, 0.12);
}

.value-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 13, 20, 0.65);
  border: 1px solid rgba(255, 210, 77, 0.25);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.value-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 77, 0.2), transparent);
  transition: left 0.5s ease;
}

.about-value-card:hover .value-icon-wrapper::before {
  left: 100%;
}

.value-icon-wrapper svg {
  width: 32px;
  height: 32px;
  color: var(--gold-2);
  position: relative;
  z-index: 1;
}

.about-value-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.about-value-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Difference Section */
.about-difference-section {
  padding-top: 36px;
  padding: 32px;
}

.about-difference-section .section-intro {
  margin-bottom: 28px;
}

.about-difference-grid {
  display: grid;
  gap: 24px;
}

.difference-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: rgba(17, 13, 20, 0.35);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.difference-item:hover {
  background: rgba(17, 13, 20, 0.55);
  border-color: rgba(255, 210, 77, 0.25);
  transform: translateX(4px);
}

.difference-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 2px solid rgba(255, 210, 77, 0.25);
  border-radius: 10px;
  background-color: rgba(255, 241, 166, 0.06);
}

.difference-item h4 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.difference-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* Games Section */
.about-games-section {
  padding-top: 36px;
  padding: 32px;
}

.about-games-intro {
  margin-bottom: 24px;
}

.about-games-intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.80);
}

.about-game-list {
  display: grid;
  gap: 20px;
}

.about-game-item {
  padding: 24px;
  background: rgba(17, 13, 20, 0.35);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about-game-item:hover {
  background: rgba(17, 13, 20, 0.55);
  border-color: rgba(255, 210, 77, 0.25);
}

.game-item-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.game-item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 8px;
  flex-shrink: 0;
}

.game-item-icon svg {
  width: 22px;
  height: 22px;
  color: #0B0810;
}

.game-item-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.about-game-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* Security Section */
.about-security-section {
  padding-top: 36px;
  padding: 32px;
  background: rgba(17, 13, 20, 0.55);
  border: 1px solid rgba(255, 210, 77, 0.18);
}

.about-security-section .section-intro {
  margin-bottom: 20px;
}

.security-content > p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.80);
}

.security-features {
  display: grid;
  gap: 18px;
}

.security-feature {
  padding: 20px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.10);
  border-radius: 10px;
  border-left: 3px solid var(--gold-2);
}

.security-feature h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.security-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* Responsible Gaming Section */
.about-responsible-section {
  padding-top: 36px;
  padding: 32px;
  background: rgba(225, 138, 45, 0.05);
  border: 1px solid rgba(225, 138, 45, 0.25);
}

.about-responsible-section .section-intro {
  margin-bottom: 20px;
}

.responsible-gaming-content > p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.80);
}

.responsible-tools {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.responsible-tool {
  padding: 20px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(225, 138, 45, 0.20);
  border-radius: 10px;
}

.responsible-tool h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-2);
}

.responsible-tool p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.responsible-note {
  padding: 18px;
  background: rgba(225, 138, 45, 0.10);
  border: 1px solid rgba(225, 138, 45, 0.30);
  border-radius: 10px;
  border-left: 3px solid var(--gold-3);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin: 0;
}

/* Support Section */
.about-support-section {
  padding-top: 36px;
  padding: 32px;
}

.about-support-section .section-intro {
  margin-bottom: 20px;
}

.support-content > p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.80);
}

.support-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.support-channel {
  padding: 20px;
  background: rgba(17, 13, 20, 0.35);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.support-channel:hover {
  background: rgba(17, 13, 20, 0.55);
  border-color: rgba(255, 210, 77, 0.25);
  transform: translateY(-2px);
}

.support-channel h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.support-channel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* CTA Section */
.about-cta-section {
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(17, 13, 20, 0.85) 0%, rgba(11, 8, 16, 0.95) 100%);
  border: 2px solid rgba(255, 210, 77, 0.30);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-grad);
  box-shadow: 0 0 20px rgba(255, 210, 77, 0.5);
}

.about-cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 77, 0.3), transparent);
}

/* Background Elements */
.about-cta-background-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 77, 0.15) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.cta-circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.cta-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
  animation-delay: 2s;
}

.cta-circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.5; }
}

/* CTA Header */
.about-cta-header {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 210, 77, 0.12);
  border: 1px solid rgba(255, 210, 77, 0.30);
  border-radius: 50px;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 210, 77, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 210, 77, 0.4); }
}

.cta-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gold-2);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-badge span {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-cta-header h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.cta-subtitle {
  margin: 0 auto;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* CTA Features */
.about-cta-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-feature-item {
  padding: 24px 16px;
  background: rgba(17, 13, 20, 0.60);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-feature-item:hover {
  background: rgba(17, 13, 20, 0.80);
  border-color: rgba(255, 210, 77, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 210, 77, 0.15);
}

.cta-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 12px;
  position: relative;
}

.cta-feature-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gold-grad);
  border-radius: inherit;
  opacity: 0.4;
  filter: blur(8px);
  z-index: -1;
}

.cta-feature-icon svg {
  width: 28px;
  height: 28px;
  color: #0B0810;
}

.cta-feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-feature-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.cta-feature-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* CTA Actions */
.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-btn-large {
  padding: 16px 36px;
  font-size: 17px;
  font-weight: 700;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.cta-btn-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-btn-large:hover::before {
  left: 100%;
}

.cta-btn-large .btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-btn-large:hover .btn-arrow {
  transform: translateX(4px);
}

.cta-btn-secondary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  gap: 10px;
  background: rgba(255, 210, 77, 0.08);
  border: 2px solid rgba(255, 210, 77, 0.25);
}

.cta-btn-secondary:hover {
  background: rgba(255, 210, 77, 0.15);
  border-color: rgba(255, 210, 77, 0.45);
}

/* CTA Trust */
.about-cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 210, 77, 0.15);
  position: relative;
  z-index: 1;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.trust-stat strong {
  font-size: 24px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 210, 77, 0.3), transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content-section {
    padding: 20px 0 32px;
  }

  .about-intro-card {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .about-intro-icon {
    width: 48px;
    height: 48px;
  }

  .about-intro-icon svg {
    width: 28px;
    height: 28px;
  }

  .about-intro-content h2 {
    font-size: 20px;
  }

  .about-intro-content p.large {
    font-size: 15px;
  }

  .about-story-card,
  .about-mission-card,
  .about-vision-card,
  .about-difference-section,
  .about-games-section,
  .about-security-section,
  .about-responsible-section,
  .about-support-section {
    padding: 20px;
  }intro-card {
    padding-top: 24px;
  }

  .about-intro-card::before {
    margin-bottom: 0;
  }

  .about-story-card,
  .about-mission-card,
  .about-vision-card,
  .about-difference-section,
  .about-games-section,
  .about-security-section,
  .about-responsible-section,
  .about-support-section {
    padding: 20px;
    padding-top: 24px;
  }

  .about-story-card::before,
  .about-mission-card::before,
  .about-difference-section::before,
  .about-games-section::before,
  .about-security-section::before,
  .about-responsible-section::before,
  .about-support-section::before,
  .about-cta-section::before {
    margin-bottom24px;
    height: 24px;
  }

  .value-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .value-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }

  .difference-item {
    flex-direction: column;
    padding: 18px;
    gap: 12px;
  }

  .difference-number {
    width: 40px;
    padding-top: 32px;
    height: 40px;
    font-size: 18px;
  }

  .support-channels {
    grid-template-columns: 1fr;
  }

  .about-cta-section {
    padding: 32px 20px;
  }

  .cta-circle-1 {
    width: 200px;
    height: 200px;
  }

  .cta-circle-2 {
    width: 150px;
    height: 150px;
  }

  .cta-circle-3 {
    width: 100px;
    height: 100px;
  }

  .about-cta-header {
    margin-bottom: 32px;
  }

  .about-cta-header h2 {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 15px;
  }

  .about-cta-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
  }

  .cta-feature-item {
    padding: 20px 12px;
  }

  .cta-feature-icon {
    width: 48px;
    height: 48px;
  }

  .cta-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .about-cta-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .cta-btn-large,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-cta-trust {
    flex-wrap: wrap;
    gap: 20px;
  }

  .trust-divider {
    display: none;
  }

  .trust-stat strong {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .about-intro-content h2 {
    font-size: 18px;
  }

  .about-intro-content p.large {
    font-size: 14px;
  }

  .about-mission-card h3,
  .about-vision-card h3 {
    font-size: 18px;
  }

  .about-value-card h3 {
    font-size: 16px;
  }

  .about-cta-header h2 {
    font-size: 20px;
  }

  .cta-subtitle {
    font-size: 14px;
  }

  .about-cta-features {
    grid-template-columns: 1fr;
  }

  .cta-feature-text strong {
    font-size: 14px;
  }

  .cta-btn-large {
    font-size: 16px;
    padding: 14px 28px;
  }

  .cta-btn-secondary {
    font-size: 15px;
    padding: 14px 24px;
  }

  .trust-stat strong {
    font-size: 18px;
  }

  .trust-stat span {
    font-size: 12px;
  }
}

/* ==========================================
   SERVICE AREAS PAGE STYLES
   ========================================== */

/* Areas Content Section */
.areas-content-section {
  padding: 32px 0 48px;
}

/* Areas Intro Card */
.areas-intro-card {
  padding: 32px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.18);
}

.areas-intro-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 210, 77, 0.12);
}

.intro-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 14px;
  position: relative;
}

.intro-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gold-grad);
  border-radius: inherit;
  opacity: 0.35;
  filter: blur(10px);
  z-index: -1;
}

.intro-icon svg {
  width: 36px;
  height: 36px;
  color: #0B0810;
}

.intro-text {
  flex: 1;
}

.intro-text h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.intro-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.areas-intro-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
}

.areas-intro-content p:last-child {
  margin-bottom: 0;
}

/* Quick Navigation */
.areas-quick-nav {
  padding: 32px;
  background: rgba(17, 13, 20, 0.35);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 16px;
}

.areas-quick-nav h3 {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nav-region-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: rgba(17, 13, 20, 0.55);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-region-card:hover {
  background: rgba(17, 13, 20, 0.75);
  border-color: rgba(255, 210, 77, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 210, 77, 0.15);
}

.nav-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 10px;
}

.nav-card-icon svg {
  width: 24px;
  height: 24px;
  color: #0B0810;
}

.nav-region-card strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.nav-region-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

/* Services Card */
.areas-services-card {
  padding: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.service-item {
  padding: 24px;
  background: rgba(17, 13, 20, 0.35);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(17, 13, 20, 0.55);
  border-color: rgba(255, 210, 77, 0.25);
  transform: translateY(-2px);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 210, 77, 0.08);
  border: 1px solid rgba(255, 210, 77, 0.25);
  border-radius: 12px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-2);
}

.service-item h4 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.service-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Region Cards */
.region-card {
  padding: 32px;
  scroll-margin-top: 100px;
}

.region-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(255, 210, 77, 0.15);
}

.region-badge {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 14px;
  position: relative;
}

.region-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gold-grad);
  border-radius: inherit;
  opacity: 0.35;
  filter: blur(10px);
  z-index: -1;
}

.region-badge svg {
  width: 36px;
  height: 36px;
  color: #0B0810;
}

.region-title h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.region-title p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.region-content > p {
  margin-bottom: 24px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
}

.region-content h3 {
  margin: 24px 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-2);
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.city-item {
  padding: 18px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.10);
  border-radius: 10px;
  border-left: 3px solid var(--gold-2);
}

.city-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.city-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.region-features {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 210, 77, 0.05);
  border: 1px solid rgba(255, 210, 77, 0.20);
  border-radius: 10px;
}

.region-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-badge {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #0B0810;
}

.region-feature p {
  margin: 0;
  padding-top: 2px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
}

/* Guide Card */
.areas-guide-card {
  padding: 32px;
  background: rgba(17, 13, 20, 0.55);
  border: 1px solid rgba(255, 210, 77, 0.20);
}

.guide-steps {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.guide-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.guide-step:hover {
  background: rgba(17, 13, 20, 0.65);
  border-color: rgba(255, 210, 77, 0.25);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #0B0810;
}

.step-content h4 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.step-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* FAQ Card */
.areas-faq-card {
  padding: 32px;
}

.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.faq-item {
  padding: 20px;
  background: rgba(17, 13, 20, 0.35);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 10px;
  border-left: 3px solid var(--gold-2);
}

.faq-item h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-2);
}

.faq-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* Areas CTA */
.areas-cta-section {
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 241, 166, 0.08) 0%, rgba(225, 138, 45, 0.08) 100%);
  border: 2px solid rgba(255, 210, 77, 0.25);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.areas-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
  box-shadow: 0 0 20px rgba(255, 210, 77, 0.5);
}

.areas-cta-content h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.areas-cta-content > p {
  margin: 0 auto 28px;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.areas-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .areas-content-section {
    padding: 24px 0 32px;
  }

  .areas-intro-card {
    padding: 24px;
  }

  .areas-intro-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-icon {
    width: 56px;
    height: 56px;
  }

  .intro-icon svg {
    width: 32px;
    height: 32px;
  }

  .areas-quick-nav {
    padding: 24px;
  }

  .quick-nav-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .areas-services-card,
  .region-card,
  .areas-guide-card,
  .areas-faq-card {
    padding: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .region-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .region-badge {
    width: 56px;
    height: 56px;
  }

  .region-badge svg {
    width: 32px;
    height: 32px;
  }

  .region-title h2 {
    font-size: 22px;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }

  .guide-step {
    flex-direction: column;
    padding: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .areas-cta-section {
    padding: 32px 24px;
  }

  .areas-cta-content h2 {
    font-size: 22px;
  }

  .areas-cta-content > p {
    font-size: 15px;
  }

  .areas-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .areas-cta-actions .sc-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .intro-text h2 {
    font-size: 20px;
  }

  .nav-region-card {
    padding: 18px 12px;
  }

  .nav-card-icon {
    width: 40px;
    height: 40px;
  }

  .nav-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .region-title h2 {
    font-size: 20px;
  }

  .areas-cta-content h2 {
    font-size: 20px;
  }
}

/* ==========================================
   PROMOTIONS PAGE STYLES
   ========================================== */

/* Promos Content Section */
.promos-content-section {
  padding: 32px 0 48px;
}

/* Promos Intro Card */
.promos-intro-card {
  padding: 32px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.18);
}

.promos-intro-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 210, 77, 0.12);
}

.promos-intro-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
}

.promos-intro-content p:last-child {
  margin-bottom: 0;
}

/* Promo Highlight Card */
.promo-highlight-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(17, 13, 20, 0.75) 0%, rgba(11, 8, 16, 0.85) 100%);
  border: 2px solid rgba(255, 210, 77, 0.30);
}

.promo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold-grad);
  border-radius: 50px;
  z-index: 2;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.promo-badge svg {
  width: 16px;
  height: 16px;
  color: #0B0810;
}

.promo-badge span {
  font-size: 13px;
  font-weight: 700;
  color: #0B0810;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-content {
  padding: 32px;
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.promo-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  position: relative;
}

.promo-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.promo-icon svg {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1;
}

.welcome-icon {
  background: rgba(255, 241, 166, 0.10);
}

.welcome-icon svg {
  color: var(--gold-1);
}

.deposit-icon {
  background: rgba(255, 210, 77, 0.10);
}

.deposit-icon svg {
  color: var(--gold-2);
}

.referral-icon {
  background: rgba(225, 138, 45, 0.10);
}

.referral-icon svg {
  color: var(--gold-3);
}

.promo-title-group h3 {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.promo-tagline {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.70);
}

.promo-details {
  display: grid;
  gap: 28px;
}

.promo-value {
  padding: 24px;
  background: rgba(255, 210, 77, 0.08);
  border: 2px solid rgba(255, 210, 77, 0.25);
  border-radius: 12px;
  text-align: center;
}

.value-amount {
  font-size: 40px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.value-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-description > p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
}

.promo-features {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.promo-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.10);
  border-radius: 8px;
}

.promo-features .feature-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-2);
}

.promo-features .feature-item span {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.promo-cta {
  margin-top: 24px;
}

.promo-cta .sc-btn {
  width: 100%;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 16px;
}

.promo-cta .sc-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.promo-cta .sc-btn:hover svg {
  transform: translateX(4px);
}

/* Promo Card (Regular) */
.promo-card {
  padding: 32px;
}

.promo-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
  padding: 20px;
  background: rgba(255, 210, 77, 0.05);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 10px;
}

.highlight-item {
  text-align: center;
}

.highlight-item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.highlight-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
}

.promo-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.tier-item {
  padding: 20px;
  background: rgba(17, 13, 20, 0.55);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.tier-item:hover {
  background: rgba(17, 13, 20, 0.75);
  border-color: rgba(255, 210, 77, 0.35);
  transform: translateY(-4px);
}

.tier-level {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.tier-bonus {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.tier-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.60);
}

/* Referral Benefits */
.referral-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.benefit-card {
  padding: 20px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 10px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #0B0810;
  margin-bottom: 12px;
}

.benefit-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.referral-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat-box {
  padding: 16px;
  background: rgba(255, 210, 77, 0.08);
  border: 1px solid rgba(255, 210, 77, 0.20);
  border-radius: 10px;
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
}

/* Small Promo Cards */
.promo-card-small {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.promo-icon-small {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 210, 77, 0.08);
  border: 1px solid rgba(255, 210, 77, 0.25);
  border-radius: 12px;
}

.promo-icon-small svg {
  width: 28px;
  height: 28px;
  color: var(--gold-2);
}

.promo-card-small h3 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.promo-card-small p {
  margin: 0 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.promo-rate {
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--gold-grad);
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #0B0810;
}

/* VIP Program */
.vip-program-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(17, 13, 20, 0.65) 0%, rgba(11, 8, 16, 0.75) 100%);
  border: 2px solid rgba(255, 210, 77, 0.25);
}

.vip-content > p {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
}

.vip-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.vip-level {
  padding: 24px 16px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vip-level::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.vip-level:hover {
  transform: translateY(-4px);
}

.vip-level:hover::before {
  opacity: 0.15;
}

.bronze {
  background: rgba(205, 127, 50, 0.08);
  border: 1px solid rgba(205, 127, 50, 0.25);
}

.bronze::before {
  background: linear-gradient(135deg, #CD7F32, #C87533);
}

.silver {
  background: rgba(192, 192, 192, 0.08);
  border: 1px solid rgba(192, 192, 192, 0.25);
}

.silver::before {
  background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
}

.gold {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
}

.gold::before {
  background: linear-gradient(135deg, #FFD700, #FFC700);
}

.platinum {
  background: rgba(229, 228, 226, 0.08);
  border: 1px solid rgba(229, 228, 226, 0.25);
}

.platinum::before {
  background: linear-gradient(135deg, #E5E4E2, #D3D3D3);
}

.level-badge {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.level-badge svg {
  width: 28px;
  height: 28px;
  color: #0B0810;
}

.vip-level h4 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}

.level-perks {
  text-align: left;
  position: relative;
  z-index: 1;
}

.level-perks p {
  margin: 8px 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.vip-benefits-list {
  padding: 24px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 12px;
}

.vip-benefits-list h3 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-2);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.benefits-grid .benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-grid .benefit-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-2);
}

.benefits-grid .benefit-item span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.80);
}

/* Terms Card */
.terms-card {
  padding: 32px;
  background: rgba(17, 13, 20, 0.45);
}

.terms-card h2 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.terms-content h3 {
  margin: 24px 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-2);
}

.terms-content h3:first-child {
  margin-top: 0;
}

.terms-content p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.terms-note {
  display: flex;
  gap: 16px;
  padding: 20px;
  margin-top: 24px;
  background: rgba(225, 138, 45, 0.08);
  border: 1px solid rgba(225, 138, 45, 0.25);
  border-radius: 10px;
  border-left: 3px solid var(--gold-3);
}

.terms-note svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--gold-3);
}

.terms-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* News Card */
.news-card {
  padding: 32px;
}

.news-list {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(17, 13, 20, 0.35);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.news-item:hover {
  background: rgba(17, 13, 20, 0.55);
  border-color: rgba(255, 210, 77, 0.25);
}

.news-date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  padding: 12px;
  background: var(--gold-grad);
  border-radius: 10px;
}

.date-day {
  font-size: 24px;
  font-weight: 800;
  color: #0B0810;
  line-height: 1;
  margin-bottom: 4px;
}

.date-month {
  font-size: 12px;
  font-weight: 600;
  color: #0B0810;
  text-transform: uppercase;
}

.news-content h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.news-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* Newsletter Card */
.newsletter-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 241, 166, 0.08) 0%, rgba(225, 138, 45, 0.08) 100%);
  border: 2px solid rgba(255, 210, 77, 0.25);
  border-radius: 16px;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.newsletter-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 14px;
}

.newsletter-icon svg {
  width: 36px;
  height: 36px;
  color: #0B0810;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.newsletter-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
}

.newsletter-action .sc-btn {
  white-space: nowrap;
}

/* Promos CTA */
.promos-cta-section {
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 241, 166, 0.08) 0%, rgba(225, 138, 45, 0.08) 100%);
  border: 2px solid rgba(255, 210, 77, 0.25);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promos-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-grad);
  box-shadow: 0 0 20px rgba(255, 210, 77, 0.5);
}

.promos-cta-section h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promos-cta-section > p {
  margin: 0 auto 28px;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.promos-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .promo-highlights,
  .promo-tiers,
  .referral-stats,
  .vip-levels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .promos-content-section {
    padding: 24px 0 32px;
  }

  .promos-intro-card,
  .promo-highlight-card,
  .promo-card,
  .vip-program-card,
  .terms-card,
  .news-card {
    padding: 24px;
  }

  .promos-intro-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .promo-badge {
    top: 12px;
    right: 12px;
    font-size: 11px;
    padding: 6px 12px;
  }

  .promo-content {
    padding: 24px;
  }

  .promo-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .promo-icon {
    width: 64px;
    height: 64px;
  }

  .promo-icon svg {
    width: 32px;
    height: 32px;
  }

  .promo-title-group h3 {
    font-size: 22px;
  }

  .value-amount {
    font-size: 32px;
  }

  .promo-highlights,
  .promo-tiers,
  .referral-benefits,
  .referral-stats,
  .vip-levels,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-icon {
    width: 64px;
    height: 64px;
  }

  .newsletter-icon svg {
    width: 32px;
    height: 32px;
  }

  .newsletter-action .sc-btn {
    width: 100%;
  }

  .promos-cta-section {
    padding: 32px 24px;
  }

  .promos-cta-section h2 {
    font-size: 22px;
  }

  .promos-cta-actions {
    flex-direction: column;
  }

  .promos-cta-actions .sc-btn {
    width: 100%;
  }

  .news-item {
    flex-direction: column;
  }

  .news-date {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .promo-title-group h3 {
    font-size: 20px;
  }

  .value-amount {
    font-size: 28px;
  }

  .promos-cta-section h2 {
    font-size: 20px;
  }
}

/* ==========================================
   APP DOWNLOAD PAGE STYLES
   ========================================== */

/* App Content Section */
.app-content-section {
  padding: 32px 0 48px;
}

/* App Intro Card */
.app-intro-card {
  padding: 32px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.18);
}

.app-intro-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 210, 77, 0.12);
}

.app-intro-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
}

.app-intro-content p:last-child {
  margin-bottom: 0;
}

/* App Features Grid */
.app-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.app-feature-card {
  padding: 28px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.app-feature-card:hover {
  background: rgba(17, 13, 20, 0.65);
  border-color: rgba(255, 210, 77, 0.30);
  transform: translateY(-6px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: var(--gold-grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

.lightning-icon {
  background: rgba(255, 241, 166, 0.10);
}

.lightning-icon svg {
  color: var(--gold-1);
}

.shield-icon {
  background: rgba(255, 210, 77, 0.10);
}

.shield-icon svg {
  color: var(--gold-2);
}

.gift-icon {
  background: rgba(225, 138, 45, 0.10);
}

.gift-icon svg {
  color: var(--gold-3);
}

.sync-icon {
  background: rgba(255, 241, 166, 0.10);
}

.sync-icon svg {
  color: var(--gold-1);
}

.bell-icon {
  background: rgba(255, 210, 77, 0.10);
}

.bell-icon svg {
  color: var(--gold-2);
}

.wifi-icon {
  background: rgba(225, 138, 45, 0.10);
}

.wifi-icon svg {
  color: var(--gold-3);
}

.app-feature-card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.app-feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* Download Platform Cards */
.download-platform-card {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(17, 13, 20, 0.65) 0%, rgba(11, 8, 16, 0.75) 100%);
  border: 2px solid rgba(255, 210, 77, 0.25);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: rgba(255, 210, 77, 0.05);
  border-bottom: 1px solid rgba(255, 210, 77, 0.15);
  position: relative;
}

.platform-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  position: relative;
}

.platform-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gold-grad);
  opacity: 0.15;
}

.android-icon {
  background: rgba(61, 220, 132, 0.10);
}

.android-icon svg {
  color: #3DDC84;
}

.ios-icon {
  background: rgba(0, 122, 255, 0.10);
}

.ios-icon svg {
  color: #007AFF;
}

.platform-info {
  flex: 1;
}

.platform-info h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.platform-meta {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.platform-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: var(--gold-grad);
  border-radius: 50px;
  animation: pulse-badge 2s ease-in-out infinite;
}

.platform-badge span {
  font-size: 13px;
  font-weight: 700;
  color: #0B0810;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ios-badge {
  background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
}

.ios-badge span {
  color: #fff;
}

.platform-content {
  padding: 32px;
}

.download-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(255, 210, 77, 0.05);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 10px;
}

/* Installation Methods */
.installation-methods {
  margin-bottom: 32px;
}

.installation-methods h4 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-2);
}

.method-tabs {
  display: grid;
  gap: 20px;
}

.method-tab h5 {
  margin: 0 0 20px;
  padding: 16px 20px;
  background: rgba(255, 210, 77, 0.08);
  border-left: 3px solid var(--gold-2);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.installation-steps {
  display: grid;
  gap: 16px;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(17, 13, 20, 0.35);
  border: 1px solid rgba(255, 210, 77, 0.10);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(17, 13, 20, 0.55);
  border-color: rgba(255, 210, 77, 0.25);
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #0B0810;
}

.step-content h6 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.step-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* Download Actions */
.download-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.download-actions .sc-btn {
  flex: 1;
  min-width: 200px;
  justify-content: center;
  gap: 10px;
}

/* Platform Requirements */
.platform-requirements {
  padding: 24px;
  background: rgba(17, 13, 20, 0.35);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 12px;
}

.platform-requirements h4 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-2);
}

.platform-requirements ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.platform-requirements li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.80);
}

.platform-requirements li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-2);
  font-weight: 700;
}

.platform-requirements strong {
  color: rgba(255, 255, 255, 0.95);
}

/* Features Detailed Grid */
.features-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-detailed-card {
  padding: 28px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 16px;
}

.feature-detailed-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #0B0810;
}

.feature-detailed-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.feature-detailed-card > p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.feature-highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.feature-highlights span {
  padding: 6px 14px;
  background: rgba(255, 210, 77, 0.10);
  border: 1px solid rgba(255, 210, 77, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-2);
}

/* Security Card */
.security-card {
  padding: 32px;
  background: linear-gradient(135deg, rgba(17, 13, 20, 0.65) 0%, rgba(11, 8, 16, 0.75) 100%);
  border: 2px solid rgba(255, 210, 77, 0.25);
  border-radius: 16px;
}

.security-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 210, 77, 0.15);
}

.security-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad);
  border-radius: 16px;
}

.security-icon svg {
  width: 40px;
  height: 40px;
  color: #0B0810;
}

.security-header h2 {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.security-header p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.70);
}

.security-content > p {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.80);
}

.security-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.security-feature {
  padding: 20px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.12);
  border-radius: 12px;
}

.security-feature h4 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-2);
}

.security-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.safety-tips-box {
  padding: 24px;
  background: rgba(225, 138, 45, 0.08);
  border: 1px solid rgba(225, 138, 45, 0.25);
  border-radius: 12px;
  border-left: 3px solid var(--gold-3);
}

.safety-tips-box h4 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-2);
}

.safety-tips-box ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.safety-tips-box li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.80);
}

/* FAQ Card */
.faq-card {
  padding: 32px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 16px;
}

.faq-item {
  padding: 24px;
  margin-bottom: 16px;
  background: rgba(17, 13, 20, 0.35);
  border: 1px solid rgba(255, 210, 77, 0.10);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  background: rgba(17, 13, 20, 0.55);
  border-color: rgba(255, 210, 77, 0.25);
}

.faq-item h4 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.faq-item p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.faq-item strong {
  color: var(--gold-2);
}

/* Comparison Table */
.comparison-table-card {
  padding: 32px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.15);
  border-radius: 16px;
}

.comparison-table {
  display: grid;
  gap: 1px;
  background: rgba(255, 210, 77, 0.10);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--gold-grad);
}

.comparison-header .comparison-cell {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 800;
  color: #0B0810;
  text-align: center;
}

.comparison-header .comparison-cell:first-child {
  text-align: left;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: rgba(17, 13, 20, 0.65);
}

.comparison-cell {
  padding: 14px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-cell:first-child {
  justify-content: flex-start;
  text-align: left;
}

.comparison-cell.highlight {
  background: rgba(255, 210, 77, 0.08);
  color: #fff;
  font-weight: 600;
}

.comparison-note {
  margin: 0;
  padding: 16px;
  background: rgba(255, 210, 77, 0.05);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

/* App Download CTA */
.app-download-cta {
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(255, 241, 166, 0.08) 0%, rgba(225, 138, 45, 0.08) 100%);
  border: 2px solid rgba(255, 210, 77, 0.30);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.app-download-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-grad);
  box-shadow: 0 0 24px rgba(255, 210, 77, 0.6);
}

.cta-content h2 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content > p {
  margin: 0 auto 32px;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-buttons .sc-btn {
  min-width: 240px;
  gap: 12px;
}

.cta-trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(17, 13, 20, 0.45);
  border: 1px solid rgba(255, 210, 77, 0.20);
  border-radius: 50px;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--gold-2);
}

.trust-badge span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .app-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-detailed-grid {
    grid-template-columns: 1fr;
  }

  .security-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .app-content-section {
    padding: 24px 0 32px;
  }

  .app-intro-card,
  .download-platform-card,
  .security-card,
  .faq-card,
  .comparison-table-card {
    padding: 24px;
  }

  .app-intro-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .app-features-grid {
    grid-template-columns: 1fr;
  }

  .platform-header {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .platform-badge {
    position: static;
    margin-top: 16px;
  }

  .platform-content {
    padding: 24px;
  }

  .download-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-actions {
    flex-direction: column;
  }

  .download-actions .sc-btn {
    width: 100%;
  }

  .security-header {
    flex-direction: column;
    text-align: center;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-header .comparison-cell,
  .comparison-cell {
    justify-content: flex-start;
    text-align: left;
  }

  .comparison-header {
    display: none;
  }

  .comparison-row {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .sc-btn {
    width: 100%;
  }

  .cta-trust-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-badge {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .app-download-cta {
    padding: 32px 24px;
  }

  .cta-content h2 {
    font-size: 20px;
  }

  .platform-icon {
    width: 64px;
    height: 64px;
  }

  .platform-icon svg {
    width: 28px;
    height: 28px;
  }

  .security-icon {
    width: 64px;
    height: 64px;
  }

  .security-icon svg {
    width: 32px;
    height: 32px;
  }

  .download-stats {
    grid-template-columns: 1fr;
  }
}
