/* ==========================================
   PTGamingPH Master Stylesheet - High Density Theme
   Colors: White, Blue (#0057B8), Dark Navy (#0B3F82), Red (#E31B23), Yellow (#FFC72C)
   Theme Aesthetics: Compact layout, crisp borders, high-density UI components
   ========================================== */

:root {
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --surface: #ffffff;
  --surface-blue: #eef5ff;
  --surface-red: #fff1f2;
  --surface-yellow: #fff8d9;
  --border: #dde3ec;
  --border-strong: #c8d2e1;
  --text: #10213a;
  --text-muted: #475569;
  --blue: #0057b8;
  --blue-dark: #0b3f82;
  --red: #e31b23;
  --red-dark: #b9141b;
  --yellow: #ffc72c;
  --yellow-dark: #854d0e;
  --success: #12805c;
  --shadow-sm: 0 1px 3px rgba(16, 33, 58, 0.05), 0 1px 2px rgba(16, 33, 58, 0.03);
  --shadow: 0 4px 16px rgba(16, 33, 58, 0.08);
  --shadow-hover: 0 8px 24px rgba(16, 33, 58, 0.12);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --max-width: 1240px;
  --header-height: 64px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  padding-bottom: 76px; /* Space for mobile floating bottom bar */
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

a:hover {
  color: var(--blue-dark);
}

img, svg, video, canvas, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  max-width: 100%;
}

button, input, select {
  font: inherit;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--red);
  color: #ffffff;
  padding: 10px 18px;
  z-index: 10000;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 2px;
}

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

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* Typography Scale - High Density Compact Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); }
h2 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }

p {
  margin-bottom: 0.85rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Section Wrapper */
.section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

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

.section-bg-alt {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-header.text-center {
  text-align: center;
  align-items: center;
}

.section-header h2, .section-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.section-header h2::before, .section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background-color: var(--red);
  border-radius: 999px;
  flex-shrink: 0;
  margin-top: 0.25em;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  background: var(--surface-blue);
  border: 1px solid #cce2ff;
  border-radius: 30px;
  padding: 4px 12px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
  margin-bottom: 6px;
}

/* Buttons System - High Density Crisp Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
  text-align: center;
}

.btn-primary-red {
  background-color: var(--red);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(227, 27, 35, 0.22);
}

.btn-primary-red:hover {
  background-color: var(--red-dark);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.32);
  transform: translateY(-1px);
}

.btn-secondary-blue {
  background-color: var(--surface-blue);
  color: var(--blue-dark);
  border-color: var(--border);
}

.btn-secondary-blue:hover {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(255, 199, 44, 0.25);
}

.btn-yellow:hover {
  background-color: var(--yellow-dark);
  color: var(--text);
}

.btn-outline {
  background-color: #ffffff;
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background-color: var(--bg-alt);
  border-color: var(--blue);
  color: var(--blue);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.78rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

/* Badges & Chips */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-red {
  background-color: var(--surface-red);
  color: var(--red);
  border: 1px solid rgba(227, 27, 35, 0.18);
}

.badge-blue {
  background-color: var(--surface-blue);
  color: var(--blue);
  border: 1px solid rgba(0, 87, 184, 0.18);
}

.badge-yellow {
  background-color: var(--surface-yellow);
  color: var(--yellow-dark);
  border: 1px solid rgba(255, 199, 44, 0.35);
}

.badge-hot {
  background-color: var(--red);
  color: #ffffff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: var(--header-height);
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  max-width: var(--max-width) !important;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--blue-dark);
  letter-spacing: -0.03em;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  max-height: 48px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

@media (max-width: 575px) {
  .brand-logo-img {
    max-width: 130px;
    height: auto;
  }
}

.brand-logo-icon {
  width: 36px;
  height: 36px;
  background-color: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(227, 27, 35, 0.2);
}

.brand-logo span.highlight {
  color: var(--red);
}

.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
  }

  .nav-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    padding: 6px 4px;
    position: relative;
  }

  .nav-link:hover, .nav-link.active {
    color: var(--blue);
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--yellow);
    border-radius: 3px 3px 0 0;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .header-actions {
    gap: 6px;
  }
  .header-actions .btn-secondary-blue {
    display: none !important;
  }
  .header-actions .btn-primary-red {
    padding: 6px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
  }
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* Mobile Nav Drawer */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(16, 33, 58, 0.5);
  z-index: 990;
  backdrop-filter: blur(2px);
}

.nav-overlay.is-visible {
  display: block;
}

@media (max-width: 1023px) {
  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 270px;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    z-index: 1100;
    padding: 72px 20px 28px;
    box-shadow: -8px 0 24px rgba(16, 33, 58, 0.25);
    list-style: none;
    overflow-y: auto;
    gap: 12px;
  }

  .nav-menu.is-open .nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue-dark);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }
}

/* Disclosure Banner */
.disclosure-banner {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.disclosure-banner svg {
  flex-shrink: 0;
  color: var(--blue);
}

/* Hero Section - High Density Compact Banner */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #eef5ff 0%, #ffffff 50%, #fff1f2 100%);
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-visual,
  .hero-media,
  .login-hero-grid .login-hero-card,
  .reg-hero-grid .reg-hero-media,
  .hero-blue-panel .hero-split-grid .hero-media-card {
    order: -1;
  }
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  color: var(--yellow-dark);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: var(--surface-yellow);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 199, 44, 0.4);
}

.hero-title {
  margin-bottom: 12px;
  color: var(--text);
}

.hero-description {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 580px;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 18px;
  width: 100%;
}

@media (max-width: 575px) {
  .hero-cta-group .btn {
    flex: 1 1 0%;
    min-width: 0;
    padding: 10px 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta-group .btn {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.88rem;
    text-align: center;
    justify-content: center;
  }
}

@media (min-width: 576px) {
  .hero-cta-group {
    width: auto;
  }
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  width: 100%;
}

@media (max-width: 767px) {
  .hero-links {
    display: none !important;
  }
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue-dark);
}

.hero-links a:hover {
  text-decoration: underline;
}

/* Hero Canvas Illustration */
.hero-visual {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: #ffffff;
}

.hero-art-container {
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-art-container img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Quick Feature Ribbon */
.quick-ribbon-section {
  background-color: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

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

@media (min-width: 640px) {
  .ribbon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .ribbon-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all 0.15s ease;
}

.ribbon-item:hover {
  background-color: var(--surface-blue);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.ribbon-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: var(--surface-yellow);
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.ribbon-icon:has(img) {
  background: transparent !important;
  background-color: transparent !important;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 0;
}

.panel-card-icon:has(img) {
  background: transparent !important;
  background-color: transparent !important;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 0;
}

.ribbon-item:nth-child(2n) .ribbon-icon {
  background-color: var(--surface-red);
  color: var(--red);
}

.ribbon-item:nth-child(3n) .ribbon-icon {
  background-color: var(--surface-blue);
  color: var(--blue);
}

.ribbon-text {
  display: flex;
  flex-direction: column;
}

.ribbon-title {
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.2;
}

.ribbon-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Featured Game Section */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 992px) {
  .featured-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.featured-main-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.featured-thumb {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.featured-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

@media (min-width: 768px) {
  .featured-main-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: stretch;
    gap: 0;
  }

  .featured-thumb {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    min-height: 280px;
  }

  .featured-info {
    padding: 24px;
  }
}

@media (min-width: 1200px) {
  .featured-main-card {
    grid-template-columns: 320px 1fr;
  }
}

.featured-side-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Spec Stats Grid & Interactive Cards */
.spec-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.spec-stat-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.spec-stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
}

.spec-stat-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.spec-stat-value {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.spec-stat-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.spec-stat-card.card-red {
  background-color: var(--red);
  border-color: var(--red-dark);
  color: #ffffff;
}

.spec-stat-card.card-red .spec-stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.spec-stat-card.card-red .spec-stat-value {
  color: #ffffff;
}

.spec-stat-card.card-red .spec-stat-badge {
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.spec-stat-card.card-yellow {
  background-color: var(--yellow);
  border-color: var(--yellow-dark);
  color: #10213a;
}

.spec-stat-card.card-yellow .spec-stat-label {
  color: #2e3846;
}

.spec-stat-card.card-yellow .spec-stat-value {
  color: #000000;
}

.spec-stat-card.card-yellow .spec-stat-badge {
  background-color: rgba(0, 0, 0, 0.12);
  color: #10213a;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.spec-stat-card.card-blue {
  background-color: var(--blue);
  border-color: var(--blue-dark);
  color: #ffffff;
}

.spec-stat-card.card-blue .spec-stat-label {
  color: rgba(255, 255, 255, 0.9);
}

.spec-stat-card.card-blue .spec-stat-value {
  color: #ffffff;
}

.spec-stat-card.card-blue .spec-stat-badge {
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.interactive-features-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.interactive-features-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-tabs {
  display: flex;
  gap: 4px;
  background-color: var(--bg-alt);
  padding: 3px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.feature-tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 6px 4px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: inherit;
}

.feature-tab-btn:hover {
  color: var(--text);
  background-color: rgba(255,255,255,0.6);
}

.feature-tab-btn.active {
  background-color: #ffffff;
  color: var(--blue);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.feature-tab-content {
  background-color: var(--bg-alt);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.feature-tag-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-pills-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.feature-pill {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
}

.feature-pill.active {
  background-color: var(--surface-blue);
  color: var(--blue);
  border-color: rgba(0, 86, 210, 0.3);
}

.feature-pill.active-red {
  background-color: var(--surface-red);
  color: var(--red);
  border-color: rgba(227, 27, 35, 0.3);
}

.feature-pill-arrow {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
}

/* High Density Game Card Grid & Mobile Auto-scrolling Carousel */
@media (max-width: 991px) {
  .game-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 12px;
    padding: 6px 4px 16px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-behavior: auto; /* Required for JS smooth continuous scroll */
    touch-action: pan-x pan-y;
    cursor: grab;
    width: 100%;
  }

  .game-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .game-grid .game-card {
    flex: 0 0 170px !important;
    min-width: 170px !important;
    max-width: 170px !important;
  }
}

@media (min-width: 992px) {
  .game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .game-grid .is-clone {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .game-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.game-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  flex-direction: column;
  transition: all 0.15s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.game-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

.game-card-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--surface-blue);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.game-card-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
}

.game-fav-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  z-index: 2;
  transition: all 0.15s ease;
}

.game-fav-btn.is-active, .game-fav-btn:hover {
  color: var(--red);
  background: #ffffff;
}

.game-card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.game-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

.game-card-action {
  margin-top: 8px;
}

.game-card-action .btn {
  width: 100%;
  padding: 6px 4px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  text-decoration: none;
}

.game-card-action .btn-primary-red {
  background-color: var(--red) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(227, 27, 35, 0.25);
}

.game-card-action .btn-primary-red:hover {
  background-color: var(--red-dark) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(227, 27, 35, 0.35);
}

.game-card-action .btn-outline {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
}

.game-card-action .btn-outline:hover {
  background-color: var(--bg-alt);
  color: var(--text);
  border-color: var(--blue);
}

/* Promotions & Wheel Section */
.promo-wheel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 992px) {
  .promo-wheel-grid {
    grid-template-columns: 240px 1fr 280px;
  }
}

.promo-guide-panel {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.promo-cards-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease;
}

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

/* Lucky Wheel Panel */
.wheel-panel {
  background: var(--surface-red);
  border: 1px solid rgba(227, 27, 35, 0.12);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.wheel-container {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 14px 0;
}

.wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--yellow);
  background: #10213a url('https://i.ibb.co/sczqzGQ/compressed-ptgaming-spin-the-wheel-image-banner.webp') center / cover no-repeat;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wheel-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 16px solid var(--red-dark);
  z-index: 5;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25));
}

.wheel-center-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--yellow);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--red);
  z-index: 4;
}

/* Lucky Wheel Modal Popup */
.wheel-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.wheel-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wheel-modal-content {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border);
}

.wheel-modal-overlay.active .wheel-modal-content {
  transform: scale(1);
}

.wheel-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.wheel-modal-close:hover {
  background-color: rgba(227, 27, 35, 0.9);
  transform: scale(1.05);
}

.wheel-modal-img-link {
  display: block;
  width: 100%;
  background-color: #10213a;
}

.wheel-modal-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.wheel-modal-footer {
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wheel-modal-title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 800;
}

.wheel-modal-desc {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.wheel-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

/* Game Lobby & Category Tabs */
.lobby-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 18px;
  scrollbar-width: thin;
}

.lobby-tab-btn {
  padding: 7px 14px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.lobby-tab-btn.active, .lobby-tab-btn:hover {
  background-color: var(--red);
  color: #ffffff;
  border-color: var(--red);
}

.category-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.category-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--surface-blue) 0%, var(--surface-red) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

/* 3-Panel Section */
.three-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 992px) {
  .three-panel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.panel-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--surface-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  width: 100%;
}

.payment-logo-chip {
  flex: 1 1 0px;
  min-width: 0;
  height: 44px;
  padding: 6px 10px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.payment-logo-chip:hover {
  border-color: var(--blue-light);
  box-shadow: 0 2px 8px rgba(11, 63, 130, 0.1);
}

.payment-logo-chip img {
  max-height: 24px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.qr-placeholder {
  width: 100px;
  height: 100px;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  background-color: var(--bg-alt);
  padding: 6px;
}

/* Article Cards */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease;
}

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

.article-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--surface-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.article-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* FAQ Accordion */
.faq-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .faq-trust-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  overflow: hidden;
}

.faq-question-btn {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq-question-btn:hover {
  background-color: var(--bg-alt);
}

.faq-icon {
  transition: transform 0.15s ease;
  flex-shrink: 0;
  color: var(--blue);
}

.faq-question-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 16px 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
}

.trust-summary-box {
  background-color: var(--surface-blue);
  border: 1px solid rgba(0, 87, 184, 0.18);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item {
  display: flex;
  gap: 12px;
}

.trust-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* Responsible Gaming Box */
.responsible-gaming-block {
  background-color: var(--surface-red);
  border: 1px solid rgba(227, 27, 35, 0.18);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .responsible-gaming-block {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 10px 0;
  background-color: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-muted);
}

.breadcrumb-item a:hover {
  color: var(--blue);
}

.breadcrumb-item.active {
  color: var(--text);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border);
  padding: 36px 0 20px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 1023px) {
  .site-footer {
    padding-bottom: 84px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  margin-bottom: 24px;
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-col:first-child {
    grid-column: span 1;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
  }
  .footer-col:first-child {
    grid-column: span 1;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: var(--text-muted);
  display: inline-block;
  padding: 2px 0;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Mobile Floating Pill Navigation Bar (High Density Theme Spec) */
.mobile-bottom-nav {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 420px;
  height: 56px;
  background-color: var(--blue-dark);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1000;
  box-shadow: 0 10px 28px rgba(11, 63, 130, 0.35);
  padding: 0 12px;
}

@media (min-width: 1024px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
  color: #ffffff;
}

.mobile-nav-raised-btn {
  position: relative;
  top: -12px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.4);
  border: 3px solid #ffffff;
  overflow: hidden;
  padding: 0;
}

.mobile-nav-raised-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.mobile-nav-raised-btn:hover {
  background-color: var(--red-dark);
}

/* Desktop Bottom Conversion Banner */
.desktop-conversion-banner {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-conversion-banner {
    position: fixed;
    bottom: 16px;
    right: 16px;
    max-width: 380px;
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    box-shadow: var(--shadow);
    z-index: 990;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .desktop-banner-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-muted);
  }
}

/* Content Page Layout (Inner Pages) */
.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .content-layout {
    grid-template-columns: 1fr 300px;
  }
}

.sidebar-box {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 80px;
}

/* ==========================================
   App Download Page Specific Styles
   ========================================== */
.app-download-page {
  background-color: var(--bg-alt);
  padding-bottom: 40px;
}

.app-download-page .container {
  max-width: 1160px;
}

.app-section {
  margin-bottom: 32px;
}

/* Eyebrow Label */
.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.eyebrow-line {
  width: 18px;
  height: 3px;
  background-color: var(--yellow);
  border-radius: 2px;
  display: inline-block;
}

/* Page Card Common Styling */
.app-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
  box-shadow: var(--shadow);
}

/* Hero Section Layout */
.app-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 992px) {
  .app-hero-grid {
    grid-template-columns: 58% 42%;
  }
}

.hero-bullet-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 16px 0 24px 0;
}

@media (max-width: 576px) {
  .hero-bullet-list {
    grid-template-columns: 1fr;
  }
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.hero-bullet-item svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* 4-Card Benefit Strip */
.benefit-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 992px) {
  .benefit-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--surface-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Split Convenience Section */
.split-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 992px) {
  .split-section-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.checklist-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.checklist-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: var(--surface-blue);
  border: 1px solid rgba(0, 87, 184, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue-dark);
}

/* 4-Step Installation Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--blue);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
}

/* Device Compatibility Grid */
.device-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .device-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.device-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.device-fact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: auto;
}

.device-fact-table td {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}

.device-fact-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--blue-dark);
}

/* 6-Card App Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-num-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.benefit-num-bg {
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0, 87, 184, 0.06);
  user-select: none;
  line-height: 1;
}

/* 4 Interface Preview Cards */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 992px) {
  .preview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.preview-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.preview-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  background-color: var(--surface-blue);
  display: block;
}

.preview-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Accordion FAQ Styling */
.app-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.app-faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

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

.app-faq-item summary::after {
  content: "＋";
  font-size: 1.2rem;
  color: var(--blue);
  font-weight: 800;
}

.app-faq-item[open] summary::after {
  content: "－";
}

.app-faq-content {
  padding: 0 20px 16px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
}

/* Final CTA Strip */
.final-cta-strip {
  background-color: var(--blue-dark);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

/* ==========================================
   Casino Page Specific Styles
   ========================================== */
.casino-page {
  background-color: #ffffff;
  padding-bottom: 0;
}

.casino-page .container {
  max-width: 1160px;
}

/* Horizontal Scroll Rails & Marquee Auto-Scroll */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-auto-scroll 30s linear infinite;
}

.marquee-track-slow {
  animation-duration: 42s;
}

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

@keyframes marquee-auto-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.horizontal-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  margin-top: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--border);
}

.horizontal-rail::-webkit-scrollbar {
  height: 6px;
}

.horizontal-rail::-webkit-scrollbar-track {
  background: var(--border);
  border-radius: 3px;
}

.horizontal-rail::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

.rail-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .rail-card {
    flex: 0 0 260px;
  }
}

.rail-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.rail-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background-color: var(--surface-blue);
}

.rail-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* Featured Collections 3-Grid */
.featured-collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .featured-collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .featured-collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.collection-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: var(--surface-blue);
}

.collection-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

/* Featured Games 3-Grid */
.featured-games-3grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .featured-games-3grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .featured-games-3grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.featured-game-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.featured-game-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background-color: var(--surface-blue);
}

/* Related Guides Grid */
.guide-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .guide-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .guide-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.guide-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: var(--surface-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom Game Stats Card System (Matching Official Stats Mockup) */
.game-stats-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 4px solid #1d61e0;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(16, 33, 58, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-stats-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 33, 58, 0.12);
}

.game-stats-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.game-stats-thumb-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
}

.game-stats-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.game-stats-rank-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.game-stats-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.game-stats-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.game-stats-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-stats-hot-badge {
  background-color: #fef2f2;
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.game-stats-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
}

.game-stats-stars {
  color: #f59e0b;
}

.game-stats-score {
  font-weight: 800;
  color: var(--blue-dark);
}

.game-stats-winners {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.game-stats-winners-count {
  color: #dc2626;
  font-weight: 800;
}

.game-stats-rtp-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.game-stats-divider {
  border-top: 1px solid var(--border);
  margin: 14px 0;
}

.game-stats-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  text-align: center;
  align-items: center;
}

.game-stats-col-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.game-stats-col-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.1;
}

.game-stats-col-mid {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 0 4px;
}

.game-stats-meter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.game-stats-meter-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.game-stats-meter-val {
  color: #dc2626;
  font-weight: 800;
}

.game-stats-meter-track {
  flex: 1;
  height: 10px;
  background-color: var(--border);
  border-radius: 9999px;
  overflow: hidden;
}

.game-stats-meter-fill {
  height: 100%;
  background-color: #1d61e0;
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.game-stats-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.game-stats-btn-outline {
  flex: 1;
  padding: 10px 8px;
  border: 1.5px solid #1d61e0;
  color: #1d61e0;
  background: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s ease;
}

.game-stats-btn-outline:hover {
  background-color: var(--surface-blue);
  color: var(--blue-dark);
}

.game-stats-btn-solid {
  flex: 2;
  padding: 10px 8px;
  background-color: #1d61e0;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 6px rgba(29, 97, 224, 0.25);
  transition: all 0.15s ease;
}

.game-stats-btn-solid:hover {
  background-color: var(--blue-dark);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(29, 97, 224, 0.35);
}

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

/* ==========================================
   Promotions Page Custom Styles (.promotions-page)
   ========================================== */
.promotions-page {
  background-color: var(--bg-alt);
  color: var(--text);
  font-size: 0.95rem;
}

.promotions-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .promotions-container {
    padding: 0 20px;
  }
}

/* Breadcrumbs Section */
.promo-breadcrumb-wrap {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.82rem;
}

.promo-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
}

.promo-breadcrumb-item a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}

.promo-breadcrumb-item a:hover {
  text-decoration: underline;
}

.promo-breadcrumb-sep {
  color: var(--border-strong);
}

.promo-breadcrumb-current {
  color: var(--text-muted);
  font-weight: 600;
}

/* Section Wrapper */
.promo-section {
  padding: 24px 0;
}

.promo-section-white {
  background-color: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.promo-section-blue {
  background-color: var(--surface-blue);
  border-top: 1px solid rgba(0,87,184,0.15);
  border-bottom: 1px solid rgba(0,87,184,0.15);
}

/* Top Showcase Grid */
.top-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 992px) {
  .top-showcase-grid {
    grid-template-columns: 360px 1fr;
    gap: 20px;
  }
}

.promo-explorer-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wheel-graphic-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 12px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-circle-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wheel-circle-center {
  position: absolute;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 4px 12px rgba(11, 63, 130, 0.3);
  border: 3px solid #ffffff;
}

.explorer-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.explorer-link-chip {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--surface-blue);
  border: 1px solid rgba(0,87,184,0.2);
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.explorer-link-chip:hover, .explorer-link-chip:focus {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.top-showcase-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .top-showcase-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.showcase-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.showcase-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.showcase-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.showcase-card-facts {
  margin: 12px 0 16px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.showcase-card-facts li {
  margin-bottom: 4px;
}

.showcase-card-facts li:last-child {
  margin-bottom: 0;
}

/* Section Header Component */
.promo-section-header {
  margin-bottom: 20px;
}

.promo-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.promo-section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.25;
  margin-bottom: 8px;
}

.promo-section-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 820px;
  line-height: 1.5;
}

/* New User Strip Grid */
.strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strip-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.strip-card-icon {
  width: 40px;
  height: 40px;
  background: var(--surface-blue);
  border: 1px solid rgba(0,87,184,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.strip-card-content {
  flex: 1;
}

/* Featured Comparison Panel */
.comparison-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

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

@media (min-width: 640px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .comparison-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.comparison-col {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.comparison-col-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}

.comparison-col-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-dark);
  display: block;
  margin-bottom: 4px;
}

.comparison-col-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Promo Hero Split Section */
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-split-grid {
    grid-template-columns: 1fr 440px;
  }
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
}

.chip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.chip-check {
  color: var(--blue);
  font-weight: 800;
}

/* Overview Section Grid */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .overview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.overview-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.overview-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-blue);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,87,184,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 12px;
}

/* How Promotions Work Split Section */
.split-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .split-work-grid {
    grid-template-columns: 1fr 420px;
  }
}

.work-rows-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.work-row-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.turnover-formula-box {
  background: var(--surface-blue);
  border: 1px solid rgba(0,87,184,0.25);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 16px;
}

.turnover-formula-code {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 8px 0 10px;
}

/* Category Cards Grid */
.category-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .category-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.category-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.category-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8rem;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}

.fact-row:last-child {
  border-bottom: none;
}

.fact-label {
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.fact-value {
  color: var(--text-muted);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 12px 0 16px;
}

.tag-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
}

/* Full Width Disclaimer Panel */
.disclaimer-panel {
  background: var(--surface-yellow);
  border: 1px solid rgba(255,199,44,0.5);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
}

.disclaimer-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--yellow-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-body {
  font-size: 0.88rem;
  color: #523e02;
  line-height: 1.55;
}

/* ==========================================
   PTGaming Payment Guide Page Styles
   ========================================== */
.payments-page {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 16px;
  padding-bottom: 40px;
}

.payment-section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.payment-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.eyebrow-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--surface-blue);
  border: 1px solid #cce2ff;
  border-radius: 30px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.check-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: 22px 0 28px;
}

.check-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-blue);
  border: 1px solid #cce2ff;
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-dark);
  box-shadow: 0 1px 3px rgba(11, 63, 130, 0.05);
  line-height: 1.4;
}

.hero-blue-panel {
  background: linear-gradient(180deg, #eef6ff 0%, #f4f8fe 100%);
  border: 1px solid #cce0f8;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.payments-page .hero-blue-panel,
.legit-check-page .hero-blue-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 36px 0;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-split-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.hero-media-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.notice-banner-yellow {
  background: #fff8d9;
  border: 1px solid #ffe899;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: #523e02;
  line-height: 1.6;
}

.notice-banner-blue {
  background: var(--surface-blue);
  border: 1px solid #cce2ff;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--blue-dark);
  line-height: 1.6;
}

.grid-4-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .grid-4-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-2-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .grid-2-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pay-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pay-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.pay-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.pay-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.pay-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.split-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 860px) {
  .split-section-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bordered-rows-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bordered-row-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.row-number-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-blue);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-content h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.row-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.method-rail-wrapper {
  position: relative;
  margin: 12px 0;
}

.method-rail-card {
  flex: 0 0 270px;
  min-width: 270px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.method-badge-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.fact-pill-tag {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  background: var(--bg-alt);
  color: var(--blue-dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 8px;
  line-height: 1.3;
}

.cta-blue-panel {
  background: linear-gradient(135deg, #0757b5 0%, #033a7c 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.cta-blue-panel .eyebrow-text {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.cta-blue-panel h2 {
  color: #ffffff;
}

.cta-blue-panel p {
  color: rgba(255, 255, 255, 0.9);
}

.btn-yellow-accent {
  background-color: var(--yellow);
  color: #10213a;
  font-weight: 800;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.btn-yellow-accent:hover {
  background-color: #ffd659;
  color: #000000;
  transform: translateY(-1px);
}

.btn-white-outline {
  background-color: transparent;
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.btn-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
}

.gcash-section-box {
  background: #ffffff;
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.payments-page .gcash-section-box {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 36px 0;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

@media (min-width: 768px) {
  .gcash-section-box {
    padding: 36px;
  }
}

/* ==========================================
   PTGaming Legitimacy & Security Page Styles
   ========================================== */
.legit-check-page {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 16px;
  padding-bottom: 40px;
}

.legit-section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.legit-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Status Badges */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.3;
  white-space: nowrap;
}

.status-pill svg {
  flex-shrink: 0;
}

.status-confirmed {
  background: #EAF7F2;
  color: #117A54;
  border: 1px solid #B3E5D1;
}

.status-needs-verification {
  background: #FFF8E6;
  color: #925800;
  border: 1px solid #FFE2A8;
}

.status-warning {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

/* Verdict Card - Unboxed for natural open layout */
.verdict-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.verdict-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .verdict-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.verdict-column {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.verdict-column.col-confirmed {
  border-top: 4px solid #117A54;
}

.verdict-column.col-unresolved {
  border-top: 4px solid #C57B00;
}

.verdict-column.col-action {
  border-top: 4px solid var(--blue);
}

.verdict-col-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.verdict-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.verdict-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.45;
}

.verdict-list li::before {
  content: "•";
  font-weight: bold;
  color: var(--blue);
}

/* Evidence Matrix Table */
.evidence-matrix-wrapper {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.evidence-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  text-align: left;
}

.evidence-table th {
  background: var(--surface-blue);
  color: var(--blue-dark);
  font-weight: 800;
  padding: 12px 14px;
  border-bottom: 2px solid #CCE2FF;
  white-space: nowrap;
}

.evidence-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-muted);
  line-height: 1.5;
}

.evidence-table tr:last-child td {
  border-bottom: none;
}

.evidence-table tr:nth-child(even) td {
  background-color: #FAFCFF;
}

.evidence-table .check-title {
  font-weight: 800;
  color: var(--text);
  display: block;
}

/* Evidence Matrix Mobile Cards */
.evidence-cards-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 767px) {
  .evidence-matrix-wrapper {
    display: none;
  }
  .evidence-cards-mobile {
    display: flex;
  }
}

.evidence-card-m {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.evidence-card-m-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.evidence-card-m-title {
  font-weight: 800;
  color: var(--text);
  font-size: 0.95rem;
}

.evidence-card-m-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.82rem;
}

.evidence-card-m-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-dark);
}

.evidence-card-m-val {
  color: var(--text-muted);
  line-height: 1.45;
}

/* Domain Anatomy Diagram */
.domain-anatomy-box {
  background: #142033;
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.domain-url-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-family: monospace;
  font-size: 0.95rem;
  background: #0B1321;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #23344E;
  align-items: center;
}

.part-protocol { color: #58A6FF; font-weight: bold; }
.part-subdomain { color: #FFC928; font-weight: bold; }
.part-domain { color: #7EE787; font-weight: bold; background: rgba(126,231,135,0.15); padding: 2px 4px; border-radius: 4px; }
.part-path { color: #D2A8FF; }

.domain-parts-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  font-size: 0.78rem;
}

.legend-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-tag {
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.legend-desc {
  color: #A3B3C9;
}

/* Red Flags Grid */
.red-flags-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .red-flags-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .red-flags-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.red-flag-card {
  background: #ffffff;
  border: 1px solid #FFCDD2;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.red-flag-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: #E31B23;
}

.red-flag-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.red-flag-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #FFF0F1;
  color: #E31B23;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.red-flag-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.red-flag-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.red-flag-action {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #C62828;
  background: #FFEBEE;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: auto;
  align-self: flex-start;
}

/* Process Steps Grid */
.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .process-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .process-steps-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.process-step-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.process-step-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.process-step-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.process-step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Account Protection Grid */
.protection-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .protection-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .protection-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.protection-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.protection-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.protection-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* HTML/CSS Graphic Layered Stack */
.legit-stack-graphic {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.stack-layer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-blue);
  border: 1px solid #CCE2FF;
  border-radius: 8px;
  padding: 12px 16px;
}

.stack-layer-num {
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--blue);
  background: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #CCE2FF;
}

.stack-layer-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
}

/* ==========================================
   PTGaming Registration Guide Page Styles
   ========================================== */
.registration-guide-page {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 40px;
}

/* Section Eyebrow Label */
.eyebrow-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  background: var(--surface-blue);
  border: 1px solid #CCE2FF;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  width: fit-content;
}

/* Blue Registration Hero Panel */
.reg-hero-panel {
  background: linear-gradient(135deg, #0757b5 0%, #033a7c 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .reg-hero-panel {
    padding: 36px 32px;
  }
}

.reg-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 992px) {
  .reg-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
  }
}

.reg-hero-panel .eyebrow-text {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.reg-hero-panel h1 {
  color: #ffffff;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.reg-hero-panel p.hero-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.reg-hero-safety-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.reg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.reg-hero-reminder {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  margin: 0;
}

.reg-hero-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0b1d3a;
}

.reg-hero-media img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

/* Benefit Cards Grid */
.reg-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .reg-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reg-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reg-benefit-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.reg-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.reg-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.reg-benefit-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.reg-benefit-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Split Section Grid */
.reg-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 992px) {
  .reg-split-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
  }
}

.reg-split-grid.reverse-desktop {
  @media (min-width: 992px) {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* Bordered Rows Checklist */
.reg-check-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.reg-check-row-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.reg-check-row-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid #CCE2FF;
}

.reg-check-row-content h3, .reg-check-row-content h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.reg-check-row-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Preparation Cards Grid */
.reg-prep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .reg-prep-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reg-prep-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reg-prep-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.reg-prep-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.reg-prep-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface-blue);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reg-prep-card-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--blue-dark);
}

.reg-prep-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Horizontal 5-Step Process Grid */
.reg-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

@media (min-width: 640px) {
  .reg-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reg-steps-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
}

.reg-step-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.reg-step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #ffffff;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(11, 63, 130, 0.2);
}

.reg-step-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.reg-step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.reg-steps-note {
  background: var(--surface-blue);
  border: 1px solid #CCE2FF;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

/* Tips Grid (Gold Accents) */
.reg-tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .reg-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reg-tips-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reg-tip-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.reg-tip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface-yellow);
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  border: 1px solid #FFE2A8;
}

.reg-tip-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
}

.reg-tip-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Troubleshooting Issue Rows */
.reg-issues-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.reg-issue-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.reg-issue-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface-blue);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.reg-issue-content h3, .reg-issue-content h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.reg-issue-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Account Verification Mini-Cards Grid */
.reg-mini-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 16px;
  margin-bottom: 18px;
}

@media (min-width: 500px) {
  .reg-mini-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reg-mini-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.reg-mini-card-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.reg-mini-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Yellow Warning Banner */
.notice-banner-yellow {
  background-color: var(--surface-yellow);
  border: 1px solid #FFE2A8;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.86rem;
  color: var(--yellow-dark);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Semantic Details/Summary FAQ Accordion */
.reg-faq-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .reg-faq-card {
    padding: 32px;
  }
}

.reg-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.reg-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.15s ease;
}

.reg-faq-item[open] {
  border-color: var(--blue);
}

.reg-faq-summary {
  padding: 16px 20px;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  list-style: none;
}

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

.reg-faq-summary:hover {
  background-color: var(--surface-blue);
  color: var(--blue-dark);
}

.reg-faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--blue);
}

.reg-faq-item[open] .reg-faq-icon {
  transform: rotate(180deg);
}

.reg-faq-body {
  padding: 0 20px 18px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 14px;
}

/* ==========================================
   PTGaming Login Hero Media Card Styles
   ========================================== */
.login-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 992px) {
  .login-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
  }
}

.login-hero-card {
  position: relative;
  background: #0b1d3a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(7, 87, 181, 0.2);
  border: 1px solid rgba(0, 87, 184, 0.28);
  display: flex;
  flex-direction: column;
}

.login-hero-card-header {
  background: #061327;
  padding: 0 16px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: #A3B3C9;
}

.login-hero-ssl-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: monospace;
  font-size: 0.75rem;
}

.login-hero-ssl-bar svg {
  color: #7EE787;
}

.login-hero-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(126, 231, 135, 0.15);
  color: #7EE787;
  border: 1px solid rgba(126, 231, 135, 0.3);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.login-hero-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #08162b;
}

.login-hero-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  display: block;
}

.login-hero-overlay-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(8, 22, 43, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #ffffff;
}

.login-hero-overlay-info {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.login-hero-overlay-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(7, 87, 181, 0.4);
  color: #58A6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(88, 166, 255, 0.3);
}

.login-hero-overlay-text strong {
  display: block;
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
}

.login-hero-overlay-text span {
  font-size: 0.7rem;
  color: #A3B3C9;
}

/* Prominent QR Code Section in Hero */
.login-hero-qr-prominent {
  background: #ffffff;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-hero-qr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.login-hero-qr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-yellow);
  color: var(--yellow-dark);
  border: 1px solid #FFE2A8;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
}

.login-hero-qr-body {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 480px) {
  .login-hero-qr-body {
    flex-direction: column;
    text-align: center;
  }
}

.login-hero-qr-frame {
  position: relative;
  background: #ffffff;
  padding: 6px;
  border-radius: 12px;
  border: 2px solid var(--blue);
  box-shadow: 0 4px 16px rgba(7, 87, 181, 0.16);
  flex-shrink: 0;
}

.login-hero-qr-frame img {
  width: 92px;
  height: 92px;
  border-radius: 6px;
  display: block;
}

.login-hero-qr-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.login-hero-qr-details h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin: 0;
  line-height: 1.3;
}

.login-hero-qr-details p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.login-hero-qr-btn {
  margin-top: 4px;
  width: fit-content;
}

@media (max-width: 480px) {
  .login-hero-qr-btn {
    width: 100%;
  }
}

/* Interactive Login Diagnostic Helper */
.login-diag-widget {
  background: #ffffff;
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
  margin-top: 24px;
}

.login-diag-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 20px;
}

.login-diag-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.login-diag-tab-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--blue-dark);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.login-diag-tab-btn:hover {
  background: var(--surface-blue);
  border-color: var(--blue);
}

.login-diag-tab-btn.is-active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(0, 87, 184, 0.25);
}

.login-diag-panel {
  display: none;
  background: var(--surface-blue);
  border: 1px solid rgba(0, 87, 184, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  animation: fadeInDiag 0.25s ease-in-out forwards;
}

.login-diag-panel.is-active {
  display: block;
}

@keyframes fadeInDiag {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-diag-input-group {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 14px 0;
}

@media (max-width: 576px) {
  .login-diag-input-group {
    flex-direction: column;
  }
}

.login-diag-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
}

.login-diag-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.15);
}

.login-diag-result {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.5;
  display: none;
}

.login-diag-result.is-visible {
  display: block;
}

.login-diag-result.success {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: #1B5E20;
}

.login-diag-result.info {
  background: #E3F2FD;
  border: 1px solid #90CAF9;
  color: #0D47A1;
}

/* Guide Card Thumbnail Image */
.guide-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  display: block;
}

/* Login Issues Interactive Filters & Drawers */
.issue-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.issue-filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-strong);
  color: var(--blue-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.issue-filter-btn:hover {
  background: var(--surface-blue);
  border-color: var(--blue);
}

.issue-filter-btn.is-active {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 87, 184, 0.2);
}

.issue-toggle-btn {
  background: var(--surface-blue);
  border: 1px solid rgba(0, 87, 184, 0.25);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  text-align: center;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.issue-toggle-btn:hover {
  background: rgba(0, 87, 184, 0.12);
}

.issue-quick-drawer {
  display: none;
  margin-top: 10px;
  padding: 12px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
  font-size: 0.84rem;
  color: var(--text);
  animation: fadeInDiag 0.2s ease forwards;
}

/* Interactive Safety Self-Checker */
.safety-checker-card {
  background: #ffffff;
  border: 2px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.safety-score-container {
  margin-bottom: 20px;
}

.safety-score-track {
  width: 100%;
  height: 12px;
  background: var(--bg-alt);
  border-radius: 6px;
  overflow: hidden;
  margin: 10px 0;
  border: 1px solid var(--border);
}

.safety-score-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 50%, var(--success) 100%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.safety-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.safety-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.safety-check-item:hover {
  border-color: var(--blue);
  background: var(--surface-blue);
}

.safety-check-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  margin-top: 2px;
}

.badge-green {
  background-color: #E8F5E9;
  color: #1B5E20;
  border: 1px solid #A5D6A7;
}

/* ==========================================
   Infinite Marquee Articles Carousel
   ========================================== */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 20px 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}

.marquee-container:hover .marquee-track,
.marquee-track:focus-within,
.marquee-track.is-paused {
  animation-play-state: paused !important;
}

.marquee-card {
  width: 320px;
  flex-shrink: 0;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.marquee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}

.marquee-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--surface-blue);
  overflow: hidden;
  position: relative;
}

.marquee-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.marquee-card:hover .marquee-card-thumb img {
  transform: scale(1.04);
}

.marquee-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.marquee-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.marquee-btn {
  background: #ffffff;
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.marquee-btn:hover {
  background: var(--surface-blue);
  color: var(--blue-dark);
  border-color: var(--blue);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    overflow-x: auto;
    width: 100%;
  }
}







