:root {
  /* Color System */
  --primary: #d4a017;
  --secondary: #7c3aed;
  --bg-base: #0f0f1a;
  --bg-card: #1a1a2e;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --success: #10b981;
  --border: #2a2a40;

  /* Typography */
  --font-display: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell h1,
.site-shell h2,
.site-shell h3,
.site-shell h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.nav-logo img,
.footer-brand img {
  width: 120px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 18px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.w-full {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

.hamburger svg,
.mobile-drawer-close svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-base);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-family: var(--font-display);
}

.mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  background-color: var(--bg-card);
  padding: 80px 0 24px;
  border-top: 1px solid var(--border);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.footer h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.body-text,
.small-text {
  color: var(--text-secondary);
}

.body-text {
  font-size: 16px;
  line-height: 24px;
}

.small-text {
  font-size: 14px;
  line-height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  gap: 16px;
}

.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
  z-index: 90;
  transition: all 0.3s ease;
  animation: pulse 5s infinite;
}

.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.6);
}

.floating-cta svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
  }
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-cta {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }

  .floating-cta svg {
    width: 20px;
    height: 20px;
  }
}

/* index.php */
body.page-index /* CSS Reset & Base */
      * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.page-index {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

body.page-index a {
  color: inherit;
  text-decoration: none;
}

body.page-index img {
  max-width: 100%;
  display: block;
}

body.page-index /* Typography Classes */
      h1, body.page-index h2, body.page-index h3 {
  font-family: var(--font-display);
  font-weight: 700;
}

body.page-index .h1 {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 24px;
}
body.page-index .h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
body.page-index .h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}
body.page-index .body-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}
body.page-index .small-text {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}

body.page-index /* Buttons & CTAs */
      .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

body.page-index .btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 18px;
}
body.page-index .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

body.page-index .btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
}
body.page-index .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

body.page-index .btn-type-b {
  color: var(--text-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.page-index .btn-type-b:hover {
  color: var(--primary);
}
body.page-index .btn-type-b svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s;
}
body.page-index .btn-type-b:hover svg {
  transform: translateX(4px);
}

body.page-index /* Utility */
      .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-index .text-center {
  text-align: center;
}
body.page-index .text-left {
  text-align: left;
}
body.page-index .w-full {
  width: 100%;
}
body.page-index .h-full {
  height: 100%;
}
body.page-index .object-cover {
  object-fit: cover;
}

body.page-index .section-padding {
  padding: 100px 0;
}
body.page-index .bg-card-band {
  background-color: var(--bg-card);
}

body.page-index /* Navbar */
      .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
body.page-index .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-index .nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
body.page-index .nav-links {
  display: flex;
  gap: 32px;
}
body.page-index .nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s;
}
body.page-index .nav-links a:hover {
  color: var(--primary);
}
body.page-index .nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
body.page-index .hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-index .hamburger svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

body.page-index /* Mobile Drawer */
      .mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-base);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}
body.page-index .mobile-drawer.open {
  transform: translateX(0);
}
body.page-index .mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-index .mobile-drawer-close svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
body.page-index .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-family: var(--font-display);
}
body.page-index .mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-index /* Section 1: Hero */
      .hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    45deg,
    rgba(212, 160, 23, 0.05) 0%,
    var(--bg-base) 100%
  );
}
body.page-index .hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 48px;
}
body.page-index .hero-content h1 {
  max-width: 560px;
}
body.page-index .hero-content p {
  max-width: 480px;
  margin-bottom: 32px;
}
body.page-index .hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.15);
}

body.page-index /* Section 2: Why DiwataPlay */
      .license-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}
body.page-index .license-strip::-webkit-scrollbar {
  display: none;
}
body.page-index .license-pill {
  background-color: rgba(212, 160, 23, 0.15);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  white-space: nowrap;
}
body.page-index .trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
body.page-index .trust-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
body.page-index .trust-icon {
  width: 48px;
  height: 48px;
  fill: var(--primary);
  flex-shrink: 0;
}

body.page-index /* Section 3: Game Categories */
      .tabs-header {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
body.page-index .tabs-header::-webkit-scrollbar {
  display: none;
}
body.page-index .tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
body.page-index .tab-btn.active {
  color: var(--text-primary);
}
body.page-index .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
}
body.page-index .tab-content {
  display: none;
}
body.page-index .tab-content.active {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 48px;
  align-items: center;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.page-index .tab-image {
  border-radius: 12px;
  aspect-ratio: 1/1;
}

body.page-index /* Carousel Shared Styles (For Section 4 & Section 7) */
      .carousel-wrapper {
  position: relative;
}
body.page-index .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
body.page-index .carousel-arrow:hover {
  color: var(--primary);
  border-color: var(--primary);
}
body.page-index .prev-arrow {
  left: -24px;
}
body.page-index .next-arrow {
  right: -24px;
}

body.page-index /* Section 4: Bonus Highlights */
      .bonus-banner {
  border-radius: 12px;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
  max-height: 320px;
}
body.page-index .bonus-featured {
  background-color: var(--bg-card);
  border-left: 4px solid var(--primary);
  padding: 32px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 32px;
}
body.page-index .bonus-scroll-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 24px;
  margin-bottom: 0; /* Changed from 32px to 0 for wrapper */
}
body.page-index .bonus-scroll-container::-webkit-scrollbar {
  display: none;
}
body.page-index .bonus-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  min-width: 320px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
}

body.page-index /* Section 5: How To Get Started */
      .timeline-container {
  position: relative;
  padding-left: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}
body.page-index .timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}
body.page-index .step-item {
  position: relative;
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  margin-left: 60px;
  margin-bottom: 32px;
}
body.page-index .step-item:last-child {
  margin-bottom: 0;
}
body.page-index .step-node {
  position: absolute;
  left: -60px;
  top: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  transform: translateX(-5px);
}
body.page-index .step-number {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

body.page-index /* Section 6: Payment Methods */
      .payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
body.page-index .payment-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
body.page-index .payment-icon {
  width: 40px;
  height: 40px;
  fill: var(--text-secondary);
  transition: fill 0.3s;
}
body.page-index .payment-row:hover .payment-icon {
  fill: var(--primary);
}
body.page-index .payment-security {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

body.page-index /* Section 7: Player Reviews */
      .review-carousel-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 24px;
  margin-bottom: 0;
}
body.page-index .review-carousel-container::-webkit-scrollbar {
  display: none;
}

body.page-index .review-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  min-width: calc((100% - 48px) / 3.2);
  scroll-snap-align: start;
  border: 1px solid var(--border);
  position: relative;
}
body.page-index .review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
body.page-index .review-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}
body.page-index .review-quote {
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-primary);
}
body.page-index .review-author {
  color: var(--text-secondary);
  font-size: 14px;
}
body.page-index .review-avatar {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}

body.page-index /* Section 8: FAQ */
      .faq-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px;
}
body.page-index .faq-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
body.page-index .faq-accordion {
  max-width: 640px;
}
body.page-index .faq-item {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
body.page-index .faq-item.active {
  border-left-color: var(--primary);
}
body.page-index .faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
body.page-index .faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-primary);
  transition: transform 0.3s ease;
}
body.page-index .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
body.page-index .faq-answer {
  padding: 0 20px 16px;
  display: none;
  color: var(--text-secondary);
}
body.page-index .faq-item.active .faq-answer {
  display: block;
}

body.page-index /* Footer */
      .footer {
  background-color: var(--bg-card);
  padding: 80px 0 24px;
  border-top: 1px solid var(--border);
}
body.page-index .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
body.page-index .footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
body.page-index .footer h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 18px;
}
body.page-index .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-index .footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
body.page-index .footer-links a:hover {
  color: var(--primary);
}
body.page-index .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
}

body.page-index /* Floating CTA */
      .floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
  z-index: 90;
  transition: all 0.3s ease;
  animation: pulse 5s infinite;
}
body.page-index .floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.6);
}
body.page-index .floating-cta svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
  }
}

body.page-index /* Responsive Breakpoints */
      @media (max-width: 1023px) {
  /* Tablet */
  .h1 {
    font-size: 40px;
    line-height: 48px;
  }
  .h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .section-padding {
    padding: 80px 0;
  }

  .hero {
    min-height: 500px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content h1 {
    max-width: 420px;
  }
  .hero-content p {
    max-width: 380px;
  }
  .hero-image-wrapper {
    border-radius: 12px;
  }

  .tab-content.active {
    grid-template-columns: 40% 60%;
  }

  .bonus-scroll-container .bonus-card {
    min-width: 280px;
  }

  .step-item {
    margin-left: 48px;
  }
  .step-node {
    left: -48px;
  }

  .review-card {
    min-width: calc((100% - 24px) / 2.2);
  }

  .faq-layout {
    grid-template-columns: 40% 60%;
  }
  .faq-left {
    top: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  body.page-index /* Mobile */
        .h1 {
    font-size: 32px;
    line-height: 40px;
  }
  body.page-index .h2 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }
  body.page-index .section-padding {
    padding: 60px 0;
  }

  body.page-index .nav-links,
  body.page-index .nav-actions {
    display: none;
  }
  body.page-index .hamburger {
    display: block;
  }

  body.page-index .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body.page-index .hero-content h1 {
    width: 100%;
    max-width: 100%;
  }
  body.page-index .hero-content p {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto 32px;
  }
  body.page-index .hero-image-wrapper {
    order: -1;
    border-radius: 0;
    max-height: 280px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }
  body.page-index .btn-primary {
    width: 100%;
  }

  body.page-index .license-strip {
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
  }
  body.page-index .license-pill {
    scroll-snap-align: start;
  }
  body.page-index .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  body.page-index .trust-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: none;
    padding: 16px 0;
  }
  body.page-index .btn-type-b {
    width: 100%;
    justify-content: center;
  }

  body.page-index .tabs-header {
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  body.page-index .tab-btn {
    scroll-snap-align: start;
    background-color: var(--bg-card);
    padding: 8px 16px;
    border-radius: 9999px;
  }
  body.page-index .tab-btn.active {
    background-color: var(--primary);
    color: #fff;
  }
  body.page-index .tab-btn.active::after {
    display: none;
  }
  body.page-index .tab-content.active {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  body.page-index .tab-image {
    border-radius: 8px;
    max-height: 240px;
  }
  body.page-index .tab-content .h3 {
    text-align: left;
  }

  body.page-index .bonus-banner {
    border-radius: 0;
    margin: 0 -24px 32px;
    width: calc(100% + 48px);
    max-height: 200px;
  }
  body.page-index .bonus-featured {
    padding: 24px;
  }
  body.page-index .bonus-scroll-container .bonus-card {
    min-width: 260px;
  }

  body.page-index .timeline-line,
  body.page-index .step-node {
    display: none;
  }
  body.page-index .step-item {
    margin-left: 0;
    padding: 16px;
    width: 100%;
  }

  body.page-index .payment-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.page-index .payment-row {
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  body.page-index .payment-security {
    text-align: center;
  }

  body.page-index /* 隱藏所有 Carousel 按鈕，手機版保留原生 Swipe 滑動 */
        .carousel-arrow {
    display: none;
  }

  body.page-index .review-card {
    min-width: calc(100% - 40px);
    padding: 20px;
  }

  body.page-index .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.page-index .faq-left {
    position: static;
    text-align: center;
  }
  body.page-index .faq-left .body-text {
    margin: 0 auto;
  }
  body.page-index .faq-accordion {
    max-width: 100%;
  }
  body.page-index .faq-question {
    padding: 16px;
  }
  body.page-index .faq-answer {
    padding: 0 16px 16px;
  }

  body.page-index .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  body.page-index .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  body.page-index .floating-cta {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }
  body.page-index .floating-cta svg {
    width: 20px;
    height: 20px;
  }
}

/* games.php */
body.page-games /* CSS Reset & Base */
      * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.page-games {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

body.page-games a {
  color: inherit;
  text-decoration: none;
}

body.page-games img {
  max-width: 100%;
  display: block;
}

body.page-games /* Typography Classes */
      h1, body.page-games h2, body.page-games h3, body.page-games h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

body.page-games .h1 {
  font-size: 44px;
  line-height: 52px;
  margin-bottom: 24px;
}
body.page-games .h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
body.page-games .h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}
body.page-games .body-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}
body.page-games .small-text {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}
body.page-games .text-primary {
  color: var(--text-primary);
}

body.page-games /* Buttons & CTAs */
      .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

body.page-games .btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 18px;
}
body.page-games .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

body.page-games .btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
}
body.page-games .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

body.page-games .btn-type-b {
  color: var(--text-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.page-games .btn-type-b:hover {
  color: var(--primary);
}
body.page-games .btn-type-b svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s;
}
body.page-games .btn-type-b:hover svg {
  transform: translateX(4px);
}

body.page-games /* Utility */
      .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-games .narrow-container {
  max-width: 800px;
  margin: 0 auto;
}
body.page-games .text-center {
  text-align: center;
}
body.page-games .text-left {
  text-align: left;
}
body.page-games .text-right {
  text-align: right;
}
body.page-games .w-full {
  width: 100%;
}
body.page-games .h-full {
  height: 100%;
}
body.page-games .object-cover {
  object-fit: cover;
}
body.page-games .img-radius {
  border-radius: 12px;
}

body.page-games .section-padding {
  padding: 100px 0;
}
body.page-games .bg-card-band {
  background-color: var(--bg-card);
}
body.page-games .mb-24 {
  margin-bottom: 24px;
}
body.page-games .mb-32 {
  margin-bottom: 32px;
}
body.page-games .mt-40 {
  margin-top: 40px;
}
body.page-games .mt-48 {
  margin-top: 48px;
}

body.page-games /* Grid Layouts */
      .split-60-40 {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
}
body.page-games .split-40-60 {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: center;
}
body.page-games .grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
body.page-games .grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

body.page-games /* Navbar */
      .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
body.page-games .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-games .nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
body.page-games .nav-links {
  display: flex;
  gap: 32px;
}
body.page-games .nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s;
}
body.page-games .nav-links a:hover {
  color: var(--primary);
}
body.page-games .nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
body.page-games .hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-games .hamburger svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

body.page-games /* Mobile Drawer */
      .mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-base);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}
body.page-games .mobile-drawer.open {
  transform: translateX(0);
}
body.page-games .mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-games .mobile-drawer-close svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
body.page-games .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-family: var(--font-display);
}
body.page-games .mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-games /* Section 1: Hero */
      .hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(212, 160, 23, 0.08) 0%,
    var(--bg-base) 60%
  );
}
body.page-games .hero-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.1);
}

body.page-games /* Section 2: Slots List */
      .game-rec-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
body.page-games .game-rec-item:last-child {
  border-bottom: none;
}
body.page-games .game-rec-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

body.page-games /* Section 3: Live Casino Cards */
      .game-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.page-games /* Provider Cards */
      .provider-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.page-games /* Section 8: FAQ */
      .faq-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px;
}
body.page-games .faq-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
body.page-games .faq-accordion {
  max-width: 640px;
}
body.page-games .faq-item {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
body.page-games .faq-item.active {
  border-left-color: var(--primary);
}
body.page-games .faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
body.page-games .faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-primary);
  transition: transform 0.3s ease;
}
body.page-games .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
body.page-games .faq-answer {
  padding: 0 20px 16px;
  display: none;
  color: var(--text-secondary);
}
body.page-games .faq-item.active .faq-answer {
  display: block;
}

body.page-games /* Footer */
      .footer {
  background-color: var(--bg-card);
  padding: 80px 0 24px;
  border-top: 1px solid var(--border);
}
body.page-games .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
body.page-games .footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
body.page-games .footer h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 18px;
}
body.page-games .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-games .footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
body.page-games .footer-links a:hover {
  color: var(--primary);
}
body.page-games .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
}

body.page-games /* Floating CTA */
      .floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
  z-index: 90;
  transition: all 0.3s ease;
  animation: pulse 5s infinite;
}
body.page-games .floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.6);
}
body.page-games .floating-cta svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

body.page-games /* Responsive Breakpoints */
      @media (max-width: 1023px) {
  /* Tablet */
  .h1 {
    font-size: 36px;
    line-height: 44px;
  }
  .section-padding {
    padding: 80px 0;
  }

  .split-60-40 {
    grid-template-columns: 55% 45%;
    gap: 32px;
  }
  .split-40-60 {
    grid-template-columns: 50% 50%;
    gap: 32px;
  }

  .hero {
    min-height: 400px;
  }
  .hero .split-60-40 {
    grid-template-columns: 50% 50%;
  }
  .hero-img-wrapper {
    border-radius: 12px;
  }

  .grid-3-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2-col {
    gap: 20px;
  }

  .faq-layout {
    grid-template-columns: 40% 60%;
  }
  .faq-left {
    top: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  body.page-games /* Mobile */
        .h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  body.page-games .h2 {
    text-align: center;
  }
  body.page-games .section-padding {
    padding: 60px 0;
  }

  body.page-games .nav-links,
  body.page-games .nav-actions {
    display: none;
  }
  body.page-games .hamburger {
    display: block;
  }

  body.page-games .split-60-40,
  body.page-games .split-40-60 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.page-games /* Order adjustments for mobile stacking (Image Top) */
        .mobile-img-top .content-col {
    order: 2;
  }
  body.page-games .mobile-img-top .img-col {
    order: 1;
  }

  body.page-games .hero .split-60-40 {
    text-align: center;
  }
  body.page-games .hero-content h1 {
    width: 100%;
    max-width: 100%;
  }
  body.page-games .hero-content p {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto 32px;
  }
  body.page-games .hero-img-wrapper {
    border-radius: 0;
    max-height: 240px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }

  body.page-games .img-radius {
    border-radius: 8px;
    width: 100%;
  }
  body.page-games .mobile-full-bleed {
    border-radius: 0;
    margin: 0 -24px;
    width: calc(100% + 48px);
    max-height: 240px;
  }

  body.page-games .game-rec-item {
    padding: 16px 0;
  }
  body.page-games .grid-3-col,
  body.page-games .grid-2-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.page-games .btn-primary {
    width: 100%;
  }
  body.page-games .text-right {
    text-align: center;
  }
  body.page-games .text-left-mobile-center {
    text-align: center;
  }

  body.page-games .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.page-games .faq-left {
    position: static;
    text-align: center;
  }
  body.page-games .faq-left .body-text {
    margin: 0 auto;
  }
  body.page-games .faq-accordion {
    max-width: 100%;
  }
  body.page-games .faq-question {
    padding: 16px;
  }
  body.page-games .faq-answer {
    padding: 0 16px 16px;
  }

  body.page-games .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  body.page-games .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  body.page-games .floating-cta {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }
  body.page-games .floating-cta svg {
    width: 20px;
    height: 20px;
  }
}

/* promotions.php */
body.page-promotions /* CSS Reset & Base */
      * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.page-promotions {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

body.page-promotions a {
  color: inherit;
  text-decoration: none;
}

body.page-promotions img {
  max-width: 100%;
  display: block;
}

body.page-promotions /* Typography Classes */
      h1, body.page-promotions h2, body.page-promotions h3, body.page-promotions h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

body.page-promotions .h1 {
  font-size: 44px;
  line-height: 52px;
  margin-bottom: 24px;
}
body.page-promotions .h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
body.page-promotions .h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}
body.page-promotions .body-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}
body.page-promotions .small-text {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}
body.page-promotions .text-primary {
  color: var(--text-primary);
}

body.page-promotions /* Buttons & CTAs */
      .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

body.page-promotions .btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 18px;
}
body.page-promotions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

body.page-promotions .btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
}
body.page-promotions .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

body.page-promotions /* Utility */
      .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-promotions .narrow-container {
  max-width: 800px;
  margin: 0 auto;
}
body.page-promotions .text-center {
  text-align: center;
}
body.page-promotions .text-left {
  text-align: left;
}
body.page-promotions .text-right {
  text-align: right;
}
body.page-promotions .w-full {
  width: 100%;
}
body.page-promotions .h-full {
  height: 100%;
}
body.page-promotions .object-cover {
  object-fit: cover;
}
body.page-promotions .img-radius {
  border-radius: 12px;
}

body.page-promotions .section-padding {
  padding: 100px 0;
}
body.page-promotions .bg-card-band {
  background-color: var(--bg-card);
}
body.page-promotions .mb-16 {
  margin-bottom: 16px;
}
body.page-promotions .mb-24 {
  margin-bottom: 24px;
}
body.page-promotions .mb-28 {
  margin-bottom: 28px;
}
body.page-promotions .mb-32 {
  margin-bottom: 32px;
}
body.page-promotions .mb-40 {
  margin-bottom: 40px;
}
body.page-promotions .mt-32 {
  margin-top: 32px;
}

body.page-promotions /* Grid Layouts */
      .split-55-45 {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
body.page-promotions .split-35-65 {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px;
  align-items: center;
}
body.page-promotions .split-65-35 {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 48px;
  align-items: center;
}
body.page-promotions .grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

body.page-promotions /* Navbar */
      .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
body.page-promotions .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-promotions .nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
body.page-promotions .nav-links {
  display: flex;
  gap: 32px;
}
body.page-promotions .nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s;
}
body.page-promotions .nav-links a:hover {
  color: var(--primary);
}
body.page-promotions .nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
body.page-promotions .hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-promotions .hamburger svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

body.page-promotions /* Mobile Drawer */
      .mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-base);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}
body.page-promotions .mobile-drawer.open {
  transform: translateX(0);
}
body.page-promotions .mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-promotions .mobile-drawer-close svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
body.page-promotions .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-family: var(--font-display);
}
body.page-promotions .mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-promotions /* Section 1: Hero */
      .hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(212, 160, 23, 0.08) 0%,
    var(--bg-base) 60%
  );
}
body.page-promotions .hero-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.1);
}

body.page-promotions /* Section 7: Raffle Tier Cards */
      .raffle-card {
  background-color: var(--bg-card);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
body.page-promotions .raffle-card.platinum {
  border-left: 3px solid var(--primary);
}

body.page-promotions /* Section 9: USDT Cards */
      .usdt-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.page-promotions /* Section 10: Timeline */
      .timeline-container {
  position: relative;
  padding-left: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
body.page-promotions .timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}
body.page-promotions .step-item {
  position: relative;
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  margin-left: 60px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}
body.page-promotions .step-item:last-child {
  margin-bottom: 0;
}
body.page-promotions .step-node {
  position: absolute;
  left: -60px;
  top: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  transform: translateX(-5px);
}
body.page-promotions .step-number {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

body.page-promotions /* Section 11: Terms */
      .term-block {
  margin-bottom: 24px;
}
body.page-promotions .term-block strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
}

body.page-promotions /* Section 12: FAQ */
      .faq-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px;
}
body.page-promotions .faq-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
body.page-promotions .faq-accordion {
  max-width: 640px;
}
body.page-promotions .faq-item {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
body.page-promotions .faq-item.active {
  border-left-color: var(--primary);
}
body.page-promotions .faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
body.page-promotions .faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-primary);
  transition: transform 0.3s ease;
}
body.page-promotions .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
body.page-promotions .faq-answer {
  padding: 0 20px 16px;
  display: none;
  color: var(--text-secondary);
}
body.page-promotions .faq-item.active .faq-answer {
  display: block;
}

body.page-promotions /* Footer */
      .footer {
  background-color: var(--bg-card);
  padding: 80px 0 24px;
  border-top: 1px solid var(--border);
}
body.page-promotions .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
body.page-promotions .footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
body.page-promotions .footer h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 18px;
}
body.page-promotions .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-promotions .footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
body.page-promotions .footer-links a:hover {
  color: var(--primary);
}
body.page-promotions .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
}

body.page-promotions /* Floating CTA */
      .floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
  z-index: 90;
  transition: all 0.3s ease;
  animation: pulse 5s infinite;
}
body.page-promotions .floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.6);
}
body.page-promotions .floating-cta svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
  }
}

body.page-promotions /* Responsive Breakpoints */
      @media (max-width: 1023px) {
  /* Tablet */
  .h1 {
    font-size: 36px;
    line-height: 44px;
  }
  .section-padding {
    padding: 80px 0;
  }

  .split-55-45 {
    grid-template-columns: 50% 50%;
    gap: 32px;
  }
  .split-35-65 {
    grid-template-columns: 40% 60%;
    gap: 32px;
  }
  .split-65-35 {
    grid-template-columns: 60% 40%;
    gap: 32px;
  }

  .hero {
    min-height: 400px;
  }
  .hero-img-wrapper {
    border-radius: 12px;
  }

  .narrow-container {
    padding: 0 40px;
    width: 100%;
  }
  .step-item {
    margin-left: 48px;
    padding: 20px;
  }
  .step-node {
    left: -48px;
  }

  .faq-layout {
    grid-template-columns: 40% 60%;
  }
  .faq-left {
    top: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  body.page-promotions /* Mobile */
        .h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  body.page-promotions .h2 {
    text-align: center;
  }
  body.page-promotions .section-padding {
    padding: 60px 0;
  }

  body.page-promotions .nav-links,
  body.page-promotions .nav-actions {
    display: none;
  }
  body.page-promotions .hamburger {
    display: block;
  }

  body.page-promotions .split-55-45,
  body.page-promotions .split-35-65,
  body.page-promotions .split-65-35,
  body.page-promotions .grid-2-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.page-promotions .mobile-img-top .content-col {
    order: 2;
  }
  body.page-promotions .mobile-img-top .img-col {
    order: 1;
  }

  body.page-promotions .hero .split-55-45 {
    text-align: center;
  }
  body.page-promotions .hero-content h1 {
    width: 100%;
    max-width: 100%;
  }
  body.page-promotions .hero-content p {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto 32px;
  }
  body.page-promotions .hero-img-wrapper {
    border-radius: 0;
    max-height: 240px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }

  body.page-promotions .img-radius {
    border-radius: 8px;
    width: 100%;
  }
  body.page-promotions .mobile-full-bleed {
    border-radius: 0;
    margin: 0 -24px;
    width: calc(100% + 48px);
    max-height: 280px;
  }

  body.page-promotions .narrow-container {
    padding: 0 20px;
  }
  body.page-promotions .btn-primary {
    width: 100%;
  }
  body.page-promotions .text-right,
  body.page-promotions .text-left {
    text-align: center;
  }

  body.page-promotions .timeline-line,
  body.page-promotions .step-node {
    display: none;
  }
  body.page-promotions .step-item {
    margin-left: 0;
    padding: 16px;
    width: 100%;
    margin-bottom: 24px;
  }

  body.page-promotions .raffle-card {
    padding: 12px;
  }
  body.page-promotions .usdt-card {
    padding: 16px;
  }
  body.page-promotions .grid-2-col {
    gap: 16px;
  }

  body.page-promotions .term-block {
    margin-bottom: 16px;
  }

  body.page-promotions .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.page-promotions .faq-left {
    position: static;
    text-align: center;
  }
  body.page-promotions .faq-left .body-text {
    margin: 0 auto;
  }
  body.page-promotions .faq-accordion {
    max-width: 100%;
  }
  body.page-promotions .faq-question {
    padding: 16px;
  }
  body.page-promotions .faq-answer {
    padding: 0 16px 16px;
  }

  body.page-promotions .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  body.page-promotions .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  body.page-promotions .floating-cta {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }
  body.page-promotions .floating-cta svg {
    width: 20px;
    height: 20px;
  }
}

/* register.php */
body.page-register /* CSS Reset & Base */
      * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.page-register {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

body.page-register a {
  color: inherit;
  text-decoration: none;
}

body.page-register img {
  max-width: 100%;
  display: block;
}

body.page-register /* Typography Classes */
      h1, body.page-register h2, body.page-register h3, body.page-register h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

body.page-register .h1 {
  font-size: 44px;
  line-height: 52px;
  margin-bottom: 24px;
}
body.page-register .h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
body.page-register .h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}
body.page-register .body-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}
body.page-register .small-text {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}
body.page-register .text-primary {
  color: var(--text-primary);
}

body.page-register /* Buttons & CTAs */
      .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

body.page-register .btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 18px;
  margin-top: 24px;
}
body.page-register .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

body.page-register .btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
  margin-top: 0;
}
body.page-register .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

body.page-register /* Utility */
      .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-register .narrow-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-register .checklist-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-register .text-center {
  text-align: center;
}
body.page-register .text-left {
  text-align: left;
}
body.page-register .w-full {
  width: 100%;
}
body.page-register .h-full {
  height: 100%;
}
body.page-register .object-cover {
  object-fit: cover;
}
body.page-register .img-radius {
  border-radius: 16px;
}

body.page-register /* Conversion Page Spacing */
      .section-padding {
  padding: 80px 0;
}
body.page-register .bg-card-band {
  background-color: var(--bg-card);
}

body.page-register /* Grid Layouts */
      .split-55-45 {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
body.page-register .grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
body.page-register .grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
body.page-register .staggered-col-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

body.page-register /* Navbar */
      .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
body.page-register .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-register .nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
body.page-register .nav-links {
  display: flex;
  gap: 32px;
}
body.page-register .nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s;
}
body.page-register .nav-links a:hover {
  color: var(--primary);
}
body.page-register .nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
body.page-register .hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-register .hamburger svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

body.page-register /* Mobile Drawer */
      .mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-base);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}
body.page-register .mobile-drawer.open {
  transform: translateX(0);
}
body.page-register .mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-register .mobile-drawer-close svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
body.page-register .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-family: var(--font-display);
}
body.page-register .mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-register /* Section 1: Hero */
      .hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(212, 160, 23, 0.08) 0%,
    var(--bg-base) 60%
  );
}
body.page-register .hero-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.1);
}

body.page-register /* Section 2: Registration Steps (Timeline) */
      .timeline-container {
  position: relative;
  padding-left: 24px;
  margin-top: 40px;
  margin-bottom: 24px;
}
body.page-register .timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}
body.page-register .step-item {
  position: relative;
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  margin-left: 60px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}
body.page-register .step-item:last-child {
  margin-bottom: 0;
}
body.page-register .step-node {
  position: absolute;
  left: -60px;
  top: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  transform: translateX(-5px);
}
body.page-register .step-number {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

body.page-register /* Section 3: What You Unlock */
      .unlock-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}
body.page-register .unlock-card-vip {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  margin-top: 24px;
}

body.page-register /* Section 4: Requirements */
      .req-item {
  margin-bottom: 24px;
}
body.page-register .req-item:last-child {
  margin-bottom: 0;
}

body.page-register /* Section 5: Account Security (Trust Badges) */
      .trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
body.page-register .trust-icon {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  flex-shrink: 0;
}
body.page-register .trust-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

body.page-register /* Section 6: Checklist */
      .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
body.page-register .checklist-item:last-child {
  border-bottom: none;
}
body.page-register .checklist-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  width: 48px;
  flex-shrink: 0;
  line-height: 1;
}

body.page-register /* Section 7: Player Reviews */
      .review-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  height: 100%;
}
body.page-register .review-quote {
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-primary);
}
body.page-register .review-author {
  color: var(--text-secondary);
  font-size: 14px;
}
body.page-register .review-avatar {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
}

body.page-register /* Section 8: FAQ */
      .faq-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px;
}
body.page-register .faq-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
body.page-register .faq-accordion {
  max-width: 640px;
}
body.page-register .faq-item {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
body.page-register .faq-item.active {
  border-left-color: var(--primary);
}
body.page-register .faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
body.page-register .faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-primary);
  transition: transform 0.3s ease;
}
body.page-register .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
body.page-register .faq-answer {
  padding: 0 20px 16px;
  display: none;
  color: var(--text-secondary);
}
body.page-register .faq-item.active .faq-answer {
  display: block;
}

body.page-register /* Footer */
      .footer {
  background-color: var(--bg-card);
  padding: 80px 0 24px;
  border-top: 1px solid var(--border);
}
body.page-register .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
body.page-register .footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
body.page-register .footer h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 18px;
}
body.page-register .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-register .footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
body.page-register .footer-links a:hover {
  color: var(--primary);
}
body.page-register .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
}

body.page-register /* Floating CTA */
      .floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
  z-index: 90;
  transition: all 0.3s ease;
  animation: pulse 5s infinite;
}
body.page-register .floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.6);
}
body.page-register .floating-cta svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
  }
}

body.page-register /* Responsive Breakpoints */
      @media (max-width: 1023px) {
  /* Tablet */
  .h1 {
    font-size: 36px;
    line-height: 44px;
  }
  .section-padding {
    padding: 64px 0;
  }

  .split-55-45 {
    grid-template-columns: 50% 50%;
    gap: 32px;
  }
  .hero {
    min-height: 400px;
  }
  .hero-img-wrapper {
    border-radius: 12px;
  }

  .step-item {
    margin-left: 48px;
    padding: 20px;
  }
  .step-node {
    left: -48px;
  }

  .unlock-card,
  .unlock-card-vip {
    padding: 20px;
  }
  .grid-2-col {
    gap: 20px;
  }

  .trust-badge {
    gap: 16px;
  }
  .staggered-col-wrapper {
    gap: 24px;
  }

  .checklist-item {
    padding: 16px 0;
  }

  .review-card {
    padding: 24px;
  }

  .faq-layout {
    grid-template-columns: 40% 60%;
  }
  .faq-left {
    top: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  body.page-register /* Mobile */
        .h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  body.page-register .h2 {
    text-align: center;
  }
  body.page-register .section-padding {
    padding: 48px 0;
  }

  body.page-register .nav-links,
  body.page-register .nav-actions {
    display: none;
  }
  body.page-register .hamburger {
    display: block;
  }

  body.page-register .split-55-45,
  body.page-register .grid-2-col,
  body.page-register .grid-3-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.page-register .mobile-img-top .content-col {
    order: 2;
  }
  body.page-register .mobile-img-top .img-col {
    order: 1;
  }

  body.page-register .hero .split-55-45 {
    text-align: center;
    gap: 32px;
  }
  body.page-register .hero-content h1 {
    width: 100%;
    max-width: 100%;
  }
  body.page-register .hero-content p {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
  }
  body.page-register .hero-img-wrapper {
    border-radius: 0;
    max-height: 240px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }

  body.page-register .btn-primary {
    width: 100%;
  }
  body.page-register .text-left-mobile-center {
    text-align: center;
  }

  body.page-register /* Timeline Mobile */
        .timeline-line, body.page-register .step-node {
    display: none;
  }
  body.page-register .step-item {
    margin-left: 0;
    padding: 16px;
    width: 100%;
    margin-bottom: 20px;
  }

  body.page-register /* Unlocks Mobile */
        .unlock-card {
    padding: 16px;
  }
  body.page-register .unlock-card-vip {
    padding: 20px;
    margin-top: 0;
  }
  body.page-register .grid-2-col {
    gap: 16px;
  }

  body.page-register /* Requirements Mobile */
        .req-item {
    margin-bottom: 20px;
  }

  body.page-register /* Security Mobile */
        .trust-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  body.page-register .trust-icon {
    width: 28px;
    height: 28px;
  }
  body.page-register .staggered-col-wrapper {
    gap: 20px;
  }

  body.page-register /* Checklist Mobile */
        .checklist-num {
    font-size: 28px;
    width: 36px;
  }

  body.page-register /* Reviews Mobile */
        .review-card {
    padding: 20px;
  }
  body.page-register .grid-3-col {
    gap: 16px;
  }

  body.page-register /* FAQ Mobile */
        .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.page-register .faq-left {
    position: static;
    text-align: center;
  }
  body.page-register .faq-left .body-text {
    margin: 0 auto;
  }
  body.page-register .faq-accordion {
    max-width: 100%;
  }
  body.page-register .faq-question {
    padding: 16px;
  }
  body.page-register .faq-answer {
    padding: 0 16px 16px;
  }

  body.page-register .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  body.page-register .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  body.page-register .floating-cta {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }
  body.page-register .floating-cta svg {
    width: 20px;
    height: 20px;
  }
}

/* download.php */
body.page-download /* CSS Reset & Base */
      * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.page-download {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

body.page-download a {
  color: inherit;
  text-decoration: none;
}

body.page-download img {
  max-width: 100%;
  display: block;
}

body.page-download /* Typography Classes */
      h1, body.page-download h2, body.page-download h3, body.page-download h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

body.page-download .h1 {
  font-size: 44px;
  line-height: 52px;
  margin-bottom: 24px;
}
body.page-download .h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
body.page-download .h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}
body.page-download .body-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}
body.page-download .small-text {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}
body.page-download .text-primary {
  color: var(--text-primary);
}

body.page-download /* Buttons & CTAs */
      .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

body.page-download .btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 18px;
  margin-top: 24px;
}
body.page-download .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

body.page-download .btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
  margin-top: 0;
}
body.page-download .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

body.page-download /* Utility */
      .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-download .narrow-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-download .text-center {
  text-align: center;
}
body.page-download .text-left {
  text-align: left;
}
body.page-download .w-full {
  width: 100%;
}
body.page-download .h-full {
  height: 100%;
}
body.page-download .object-cover {
  object-fit: cover;
}
body.page-download .img-radius {
  border-radius: 12px;
}

body.page-download .section-padding {
  padding: 80px 0;
}
body.page-download .bg-card-band {
  background-color: var(--bg-card);
}
body.page-download .mb-24 {
  margin-bottom: 24px;
}
body.page-download .mb-32 {
  margin-bottom: 32px;
}
body.page-download .mb-40 {
  margin-bottom: 40px;
}

body.page-download /* Grid Layouts */
      .split-55-45 {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
body.page-download .split-40-60 {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: start;
}
body.page-download .split-60-40 {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: start;
}
body.page-download .grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
body.page-download .grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-download /* Navbar */
      .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
body.page-download .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-download .nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
body.page-download .nav-links {
  display: flex;
  gap: 32px;
}
body.page-download .nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s;
}
body.page-download .nav-links a:hover {
  color: var(--primary);
}
body.page-download .nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
body.page-download .hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-download .hamburger svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

body.page-download /* Mobile Drawer */
      .mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-base);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}
body.page-download .mobile-drawer.open {
  transform: translateX(0);
}
body.page-download .mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-download .mobile-drawer-close svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
body.page-download .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-family: var(--font-display);
}
body.page-download .mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-download /* Section 1: Hero */
      .hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(212, 160, 23, 0.08) 0%,
    var(--bg-base) 60%
  );
}
body.page-download .hero-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.1);
}

body.page-download /* Section 2: Advantage Cards */
      .advantage-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}
body.page-download .advantage-icon {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  margin-bottom: 16px;
}

body.page-download /* Section 3 & 4: Guides & Timeline */
      .timeline-container {
  position: relative;
  padding-left: 24px;
  margin-top: 32px;
  margin-bottom: 24px;
}
body.page-download .timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}
body.page-download .step-item {
  position: relative;
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 20px;
  margin-left: 48px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
body.page-download .step-item:last-child {
  margin-bottom: 0;
}
body.page-download .step-node {
  position: absolute;
  left: -48px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  transform: translateX(-5px);
}
body.page-download .step-number {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
body.page-download .info-tip {
  background-color: var(--bg-card);
  border-radius: 12px;
  border-left: 3px solid var(--secondary);
  padding: 16px;
  font-style: italic;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 24px;
}

body.page-download /* Section 5: App vs Browser Comparison */
      .desktop-compare-table {
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background-color: var(--bg-card);
}
body.page-download .compare-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--primary);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
body.page-download .compare-header-cell {
  padding: 16px 24px;
  text-align: center;
}
body.page-download .compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
body.page-download .compare-row:last-child {
  border-bottom: none;
}
body.page-download .compare-cell {
  padding: 20px 24px;
  font-size: 15px;
  color: var(--text-secondary);
}
body.page-download .compare-cell strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
}
body.page-download .mobile-compare-cards {
  display: none;
}
body.page-download .compare-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
body.page-download .compare-card h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
body.page-download .compare-stat {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
body.page-download .compare-stat:last-child {
  margin-bottom: 0;
}
body.page-download .compare-stat strong {
  color: var(--text-primary);
}

body.page-download /* Section 6: Download Bonus Callout */
      .bonus-callout {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1;
}

body.page-download /* Section 7: Player Reviews */
      .review-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  height: 100%;
}
body.page-download .review-quote {
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-primary);
}
body.page-download .review-author {
  color: var(--text-secondary);
  font-size: 14px;
}
body.page-download .review-avatar {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
}

body.page-download /* Section 8: FAQ */
      .faq-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px;
}
body.page-download .faq-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
body.page-download .faq-accordion {
  max-width: 640px;
}
body.page-download .faq-item {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
body.page-download .faq-item.active {
  border-left-color: var(--primary);
}
body.page-download .faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
body.page-download .faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-primary);
  transition: transform 0.3s ease;
}
body.page-download .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
body.page-download .faq-answer {
  padding: 0 20px 16px;
  display: none;
  color: var(--text-secondary);
}
body.page-download .faq-item.active .faq-answer {
  display: block;
}

body.page-download /* Footer */
      .footer {
  background-color: var(--bg-card);
  padding: 80px 0 24px;
  border-top: 1px solid var(--border);
}
body.page-download .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
body.page-download .footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
body.page-download .footer h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 18px;
}
body.page-download .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-download .footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
body.page-download .footer-links a:hover {
  color: var(--primary);
}
body.page-download .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
}

body.page-download /* Floating CTA */
      .floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
  z-index: 90;
  transition: all 0.3s ease;
  animation: pulse 5s infinite;
}
body.page-download .floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.6);
}
body.page-download .floating-cta svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
  }
}

body.page-download /* Responsive Breakpoints */
      @media (max-width: 1023px) {
  /* Tablet */
  .h1 {
    font-size: 36px;
    line-height: 44px;
  }
  .section-padding {
    padding: 64px 0;
  }

  .split-55-45 {
    grid-template-columns: 50% 50%;
    gap: 32px;
  }
  .split-40-60 {
    grid-template-columns: 45% 55%;
    gap: 32px;
  }
  .split-60-40 {
    grid-template-columns: 55% 45%;
    gap: 32px;
  }

  .hero {
    min-height: 400px;
  }
  .hero-img-wrapper {
    border-radius: 12px;
  }

  .grid-2-col {
    gap: 20px;
  }
  .advantage-card {
    padding: 20px;
  }

  .timeline-container {
    padding-left: 20px;
  }
  .step-item {
    margin-left: 40px;
    padding: 16px;
  }
  .step-node {
    left: -40px;
  }

  .compare-header-cell {
    padding: 12px 16px;
  }
  .compare-cell {
    padding: 16px;
  }

  .bonus-callout {
    font-size: 40px;
  }

  .faq-layout {
    grid-template-columns: 40% 60%;
  }
  .faq-left {
    top: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  body.page-download /* Mobile */
        .h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  body.page-download .h2 {
    text-align: center;
  }
  body.page-download .section-padding {
    padding: 48px 0;
  }

  body.page-download .nav-links,
  body.page-download .nav-actions {
    display: none;
  }
  body.page-download .hamburger {
    display: block;
  }

  body.page-download .split-55-45,
  body.page-download .split-40-60,
  body.page-download .split-60-40,
  body.page-download .grid-2-col,
  body.page-download .grid-3-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.page-download /* Order adjustments for mobile stacking */
        .mobile-img-top .content-col {
    order: 2;
  }
  body.page-download .mobile-img-top .img-col {
    order: 1;
  }

  body.page-download .hero .split-55-45 {
    text-align: center;
    gap: 32px;
  }
  body.page-download .hero-content h1 {
    width: 100%;
    max-width: 100%;
  }
  body.page-download .hero-content p {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
  }
  body.page-download .hero-img-wrapper {
    border-radius: 0;
    max-height: 240px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }

  body.page-download .img-radius {
    border-radius: 8px;
    width: 100%;
  }
  body.page-download .mobile-full-bleed {
    border-radius: 0;
    margin: 0 -24px;
    width: calc(100% + 48px);
    max-height: 300px;
  }

  body.page-download .btn-primary {
    width: 100%;
  }
  body.page-download .text-left-mobile-center {
    text-align: center;
  }

  body.page-download /* Timeline Mobile */
        .timeline-line, body.page-download .step-node {
    display: none;
  }
  body.page-download .step-item {
    margin-left: 0;
    padding: 16px;
    width: 100%;
    margin-bottom: 16px;
  }
  body.page-download .step-number {
    display: inline-block;
  }

  body.page-download /* Advantages Mobile */
        .advantage-card {
    padding: 16px;
  }
  body.page-download .grid-2-col {
    gap: 16px;
  }

  body.page-download /* Comparison Table Mobile */
        .desktop-compare-table {
    display: none;
  }
  body.page-download .mobile-compare-cards {
    display: block;
  }

  body.page-download /* Bonus Callout */
        .bonus-callout {
    font-size: 32px;
  }

  body.page-download /* Reviews Mobile */
        .review-card {
    padding: 20px;
  }
  body.page-download .grid-3-col {
    gap: 16px;
  }

  body.page-download /* FAQ Mobile */
        .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.page-download .faq-left {
    position: static;
    text-align: center;
  }
  body.page-download .faq-left .body-text {
    margin: 0 auto;
  }
  body.page-download .faq-accordion {
    max-width: 100%;
  }
  body.page-download .faq-question {
    padding: 16px;
  }
  body.page-download .faq-answer {
    padding: 0 16px 16px;
  }

  body.page-download .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  body.page-download .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  body.page-download .floating-cta {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }
  body.page-download .floating-cta svg {
    width: 20px;
    height: 20px;
  }
}

/* about.php */
body.page-about /* CSS Reset & Base */
      * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.page-about {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

body.page-about a {
  color: inherit;
  text-decoration: none;
}

body.page-about img {
  max-width: 100%;
  display: block;
}

body.page-about /* Typography Classes */
      h1, body.page-about h2, body.page-about h3, body.page-about h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

body.page-about .h1 {
  font-size: 44px;
  line-height: 52px;
  margin-bottom: 24px;
}
body.page-about .h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
body.page-about .h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}
body.page-about .body-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}
body.page-about .small-text {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}
body.page-about .text-primary {
  color: var(--text-primary);
}
body.page-about .text-white {
  color: #ffffff;
}
body.page-about /* Forced white for Mission section */

      /* Buttons & CTAs */
      .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

body.page-about .btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 18px;
}
body.page-about .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

body.page-about .btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
}
body.page-about .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

body.page-about /* Type B CTA - Internal Links */
      .btn-type-b {
  color: var(--text-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 18px;
}
body.page-about .btn-type-b:hover {
  color: var(--primary);
}
body.page-about .btn-type-b svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s;
}
body.page-about .btn-type-b:hover svg {
  transform: translateX(4px);
}

body.page-about /* Type C CTA - Utility Link */
      .btn-type-c {
  color: var(--text-secondary);
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  margin-top: 32px;
  transition: color 0.3s;
}
body.page-about .btn-type-c:hover {
  color: var(--primary);
  text-decoration: underline;
}

body.page-about /* Utility */
      .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-about .narrow-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-about .medium-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-about .text-center {
  text-align: center;
}
body.page-about .text-left {
  text-align: left;
}
body.page-about .w-full {
  width: 100%;
}
body.page-about .h-full {
  height: 100%;
}
body.page-about .object-cover {
  object-fit: cover;
}
body.page-about .img-radius {
  border-radius: 12px;
}

body.page-about .section-padding {
  padding: 100px 0;
}
body.page-about .bg-card-band {
  background-color: var(--bg-card);
}
body.page-about .mb-24 {
  margin-bottom: 24px;
}
body.page-about .mb-28 {
  margin-bottom: 28px;
}
body.page-about .mb-32 {
  margin-bottom: 32px;
}
body.page-about .mb-40 {
  margin-bottom: 40px;
}

body.page-about /* Grid Layouts */
      .split-55-45 {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
body.page-about .split-30-70 {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;
  align-items: start;
}
body.page-about .grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

body.page-about /* Navbar */
      .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
body.page-about .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-about .nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
body.page-about .nav-links {
  display: flex;
  gap: 32px;
}
body.page-about .nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s;
}
body.page-about .nav-links a:hover {
  color: var(--primary);
}
body.page-about .nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
body.page-about .hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-about .hamburger svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

body.page-about /* Mobile Drawer */
      .mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-base);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}
body.page-about .mobile-drawer.open {
  transform: translateX(0);
}
body.page-about .mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-about .mobile-drawer-close svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
body.page-about .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-family: var(--font-display);
}
body.page-about .mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-about /* Section 1: Hero */
      .hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(212, 160, 23, 0.08) 0%,
    var(--bg-base) 60%
  );
}
body.page-about .hero-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.1);
}

body.page-about /* Section 3: Licensing */
      .info-card-secondary {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  border-left: 3px solid var(--secondary);
  margin-top: 32px;
}

body.page-about /* Section 4: Security Cards */
      .security-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  height: 100%;
}
body.page-about .security-icon {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  margin-bottom: 16px;
}

body.page-about /* Section 8: FAQ */
      .faq-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px;
}
body.page-about .faq-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
body.page-about .faq-accordion {
  max-width: 640px;
}
body.page-about .faq-item {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
body.page-about .faq-item.active {
  border-left-color: var(--primary);
}
body.page-about .faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
body.page-about .faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-primary);
  transition: transform 0.3s ease;
}
body.page-about .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
body.page-about .faq-answer {
  padding: 0 20px 16px;
  display: none;
  color: var(--text-secondary);
}
body.page-about .faq-item.active .faq-answer {
  display: block;
}

body.page-about /* Footer */
      .footer {
  background-color: var(--bg-card);
  padding: 80px 0 24px;
  border-top: 1px solid var(--border);
}
body.page-about .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
body.page-about .footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
body.page-about .footer h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 18px;
}
body.page-about .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-about .footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
body.page-about .footer-links a:hover {
  color: var(--primary);
}
body.page-about .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
}

body.page-about /* Responsive Breakpoints */
      @media (max-width: 1023px) {
  /* Tablet */
  .h1 {
    font-size: 36px;
    line-height: 44px;
  }
  .section-padding {
    padding: 80px 0;
  }

  .split-55-45 {
    grid-template-columns: 50% 50%;
    gap: 32px;
  }
  .split-30-70 {
    grid-template-columns: 35% 65%;
    gap: 32px;
  }

  .hero {
    min-height: 400px;
  }
  .hero-img-wrapper {
    border-radius: 12px;
  }

  .narrow-container,
  .medium-container {
    padding: 0 40px;
  }

  .grid-2-col {
    gap: 20px;
  }
  .security-card {
    padding: 20px;
  }
  .info-card-secondary {
    padding: 20px;
  }

  .faq-layout {
    grid-template-columns: 40% 60%;
  }
  .faq-left {
    top: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  body.page-about /* Mobile */
        .h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  body.page-about .h2 {
    text-align: center;
  }
  body.page-about .section-padding {
    padding: 60px 0;
  }

  body.page-about .nav-links,
  body.page-about .nav-actions {
    display: none;
  }
  body.page-about .hamburger {
    display: block;
  }

  body.page-about .split-55-45,
  body.page-about .split-30-70,
  body.page-about .grid-2-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.page-about /* Order adjustments for mobile stacking */
        .mobile-img-top .content-col {
    order: 2;
  }
  body.page-about .mobile-img-top .img-col {
    order: 1;
  }

  body.page-about .hero .split-55-45 {
    text-align: center;
    gap: 32px;
  }
  body.page-about .hero-content h1 {
    width: 100%;
    max-width: 100%;
  }
  body.page-about .hero-content p {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  body.page-about .hero-img-wrapper {
    border-radius: 0;
    max-height: 240px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }

  body.page-about .narrow-container,
  body.page-about .medium-container {
    padding: 0 20px;
    width: 100%;
  }

  body.page-about /* PAGCOR Section Mobile Image */
        .split-30-70 .img-col img {
    max-width: 200px;
    margin: 0 auto;
    border-radius: 8px;
  }

  body.page-about .info-card-secondary {
    padding: 16px;
    margin-top: 24px;
  }
  body.page-about .security-card {
    padding: 16px;
  }

  body.page-about .btn-type-b {
    width: 100%;
    justify-content: center;
  }
  body.page-about .btn-type-c {
    width: 100%;
    text-align: center;
  }

  body.page-about .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.page-about .faq-left {
    position: static;
    text-align: center;
  }
  body.page-about .faq-left .body-text {
    margin: 0 auto;
  }
  body.page-about .faq-accordion {
    max-width: 100%;
  }
  body.page-about .faq-question {
    padding: 16px;
  }
  body.page-about .faq-answer {
    padding: 0 16px 16px;
  }

  body.page-about .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  body.page-about .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* agent.php */
body.page-agent /* CSS Reset & Base */
      * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.page-agent {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
}

body.page-agent a {
  color: inherit;
  text-decoration: none;
}

body.page-agent img {
  max-width: 100%;
  display: block;
}

body.page-agent /* Typography Classes */
      h1, body.page-agent h2, body.page-agent h3, body.page-agent h4 {
  font-family: var(--font-display);
  font-weight: 700;
}

body.page-agent .h1 {
  font-size: 44px;
  line-height: 52px;
  margin-bottom: 24px;
}
body.page-agent .h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
body.page-agent .h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 12px;
}
body.page-agent .body-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
}
body.page-agent .small-text {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
}
body.page-agent .text-primary {
  color: var(--text-primary);
}

body.page-agent /* Buttons & CTAs */
      .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
}

body.page-agent .btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 9999px;
  padding: 16px 32px;
  font-size: 18px;
  margin-top: 24px;
}
body.page-agent .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
}

body.page-agent .btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 24px;
  margin-top: 0;
}
body.page-agent .btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

body.page-agent /* Utility */
      .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-agent .narrow-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-agent .text-center {
  text-align: center;
}
body.page-agent .text-left {
  text-align: left;
}
body.page-agent .text-right {
  text-align: right;
}
body.page-agent .w-full {
  width: 100%;
}
body.page-agent .h-full {
  height: 100%;
}
body.page-agent .object-cover {
  object-fit: cover;
}
body.page-agent .img-radius {
  border-radius: 12px;
}

body.page-agent .section-padding {
  padding: 100px 0;
}
body.page-agent .bg-card-band {
  background-color: var(--bg-card);
}
body.page-agent .mb-16 {
  margin-bottom: 16px;
}
body.page-agent .mb-24 {
  margin-bottom: 24px;
}
body.page-agent .mb-32 {
  margin-bottom: 32px;
}
body.page-agent .mb-40 {
  margin-bottom: 40px;
}

body.page-agent /* Grid Layouts */
      .split-55-45 {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}
body.page-agent .grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
body.page-agent .grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-agent /* Navbar */
      .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
body.page-agent .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-agent .nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
body.page-agent .nav-links {
  display: flex;
  gap: 32px;
}
body.page-agent .nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s;
}
body.page-agent .nav-links a:hover {
  color: var(--primary);
}
body.page-agent .nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
body.page-agent .hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-agent .hamburger svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

body.page-agent /* Mobile Drawer */
      .mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-base);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}
body.page-agent .mobile-drawer.open {
  transform: translateX(0);
}
body.page-agent .mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
body.page-agent .mobile-drawer-close svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
body.page-agent .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-family: var(--font-display);
}
body.page-agent .mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-agent /* Section 1: Hero */
      .hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(212, 160, 23, 0.08) 0%,
    var(--bg-base) 60%
  );
}
body.page-agent .hero-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 0 60px rgba(212, 160, 23, 0.1);
}

body.page-agent /* Section 3: Commission Levels */
      .level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
body.page-agent .level-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}
body.page-agent .level-card.special {
  border-top: 4px solid var(--primary);
}
body.page-agent .level-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
body.page-agent .level-data-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}
body.page-agent .level-data-label {
  color: var(--text-secondary);
}
body.page-agent .level-data-value {
  color: var(--text-primary);
  font-weight: 500;
  text-align: right;
}
body.page-agent .level-data-value.highlight {
  color: var(--primary);
  font-weight: 700;
}

body.page-agent .referral-bonus-block {
  background-color: var(--bg-card);
  border-radius: 12px;
  border-left: 3px solid var(--secondary);
  padding: 20px;
  margin: 32px auto 0;
  max-width: 800px;
}

body.page-agent /* Section 4: Comparison Table */
      .desktop-compare-table {
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background-color: var(--bg-card);
}
body.page-agent .compare-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--primary);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
body.page-agent .compare-header-cell {
  padding: 16px 24px;
  text-align: center;
}
body.page-agent .compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
body.page-agent .compare-row:last-child {
  border-bottom: none;
}
body.page-agent .compare-cell {
  padding: 20px 24px;
  font-size: 15px;
  color: var(--text-secondary);
}
body.page-agent .compare-cell strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
}
body.page-agent .mobile-compare-cards {
  display: none;
}
body.page-agent .compare-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
body.page-agent .compare-card h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
body.page-agent .compare-stat {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
body.page-agent .compare-stat:last-child {
  margin-bottom: 0;
}
body.page-agent .compare-stat strong {
  color: var(--text-primary);
  display: inline-block;
  width: 65px;
}
body.page-agent .recommendation-text {
  font-style: italic;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 32px auto 0;
}

body.page-agent /* Section 5: Timeline Steps */
      .timeline-container {
  position: relative;
  padding-left: 24px;
  margin-top: 32px;
  margin-bottom: 24px;
}
body.page-agent .timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}
body.page-agent .step-item {
  position: relative;
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  margin-left: 60px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}
body.page-agent .step-item:last-child {
  margin-bottom: 0;
}
body.page-agent .step-node {
  position: absolute;
  left: -60px;
  top: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  transform: translateX(-5px);
}
body.page-agent .step-number {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

body.page-agent /* Section 6: Agent Tools */
      .tool-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}
body.page-agent .tool-icon {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  margin-bottom: 16px;
}

body.page-agent /* Section 7: Player Reviews */
      .review-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  height: 100%;
}
body.page-agent .review-quote {
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-primary);
}
body.page-agent .review-author {
  color: var(--text-secondary);
  font-size: 14px;
}
body.page-agent .review-avatar {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
}

body.page-agent /* Section 8: FAQ */
      .faq-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 48px;
}
body.page-agent .faq-left {
  position: sticky;
  top: 100px;
  align-self: start;
}
body.page-agent .faq-accordion {
  max-width: 640px;
}
body.page-agent .faq-item {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
body.page-agent .faq-item.active {
  border-left-color: var(--primary);
}
body.page-agent .faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
}
body.page-agent .faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-primary);
  transition: transform 0.3s ease;
}
body.page-agent .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
body.page-agent .faq-answer {
  padding: 0 20px 16px;
  display: none;
  color: var(--text-secondary);
}
body.page-agent .faq-item.active .faq-answer {
  display: block;
}

body.page-agent /* Footer */
      .footer {
  background-color: var(--bg-card);
  padding: 80px 0 24px;
  border-top: 1px solid var(--border);
}
body.page-agent .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
body.page-agent .footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
body.page-agent .footer h4 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 18px;
}
body.page-agent .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-agent .footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s;
}
body.page-agent .footer-links a:hover {
  color: var(--primary);
}
body.page-agent .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
}

body.page-agent /* Floating CTA */
      .floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
  z-index: 90;
  transition: all 0.3s ease;
  animation: pulse 5s infinite;
}
body.page-agent .floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.6);
}
body.page-agent .floating-cta svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 160, 23, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
  }
}

body.page-agent /* Responsive Breakpoints */
      @media (max-width: 1023px) {
  /* Tablet */
  .h1 {
    font-size: 36px;
    line-height: 44px;
  }
  .section-padding {
    padding: 80px 0;
  }

  .split-55-45 {
    grid-template-columns: 50% 50%;
    gap: 32px;
  }
  .hero {
    min-height: 400px;
  }
  .hero-img-wrapper {
    border-radius: 12px;
  }

  .level-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .grid-2-col,
  .grid-3-col {
    gap: 20px;
  }

  .step-item {
    margin-left: 48px;
  }
  .step-node {
    left: -48px;
  }

  .compare-header-cell,
  .compare-cell {
    padding: 16px;
  }

  .faq-layout {
    grid-template-columns: 40% 60%;
  }
  .faq-left {
    top: 80px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767px) {
  body.page-agent /* Mobile */
        .h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  body.page-agent .h2 {
    text-align: center;
  }
  body.page-agent .section-padding {
    padding: 60px 0;
  }

  body.page-agent .nav-links,
  body.page-agent .nav-actions {
    display: none;
  }
  body.page-agent .hamburger {
    display: block;
  }

  body.page-agent .split-55-45,
  body.page-agent .grid-2-col,
  body.page-agent .grid-3-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.page-agent .mobile-img-top .content-col {
    order: 2;
  }
  body.page-agent .mobile-img-top .img-col {
    order: 1;
  }

  body.page-agent .hero .split-55-45 {
    text-align: center;
    gap: 32px;
  }
  body.page-agent .hero-content h1 {
    width: 100%;
    max-width: 100%;
  }
  body.page-agent .hero-content p {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  body.page-agent .hero-img-wrapper {
    border-radius: 0;
    max-height: 240px;
    margin: 0 -24px;
    width: calc(100% + 48px);
  }

  body.page-agent .btn-primary {
    width: 100%;
  }

  body.page-agent .level-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  body.page-agent .level-card {
    padding: 16px;
  }
  body.page-agent .referral-bonus-block {
    padding: 16px;
    margin-top: 24px;
  }

  body.page-agent /* Comparison Table Mobile */
        .desktop-compare-table {
    display: none;
  }
  body.page-agent .mobile-compare-cards {
    display: block;
  }

  body.page-agent /* Timeline Mobile */
        .timeline-line, body.page-agent .step-node {
    display: none;
  }
  body.page-agent .step-item {
    margin-left: 0;
    padding: 16px;
    width: 100%;
    margin-bottom: 20px;
  }

  body.page-agent /* Tools & Reviews */
        .tool-card {
    padding: 16px;
  }
  body.page-agent .review-card {
    padding: 20px;
  }
  body.page-agent .grid-2-col,
  body.page-agent .grid-3-col {
    gap: 16px;
  }

  body.page-agent .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.page-agent .faq-left {
    position: static;
    text-align: center;
  }
  body.page-agent .faq-left .body-text {
    margin: 0 auto;
  }
  body.page-agent .faq-accordion {
    max-width: 100%;
  }
  body.page-agent .faq-question {
    padding: 16px;
  }
  body.page-agent .faq-answer {
    padding: 0 16px 16px;
  }

  body.page-agent .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  body.page-agent .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  body.page-agent .floating-cta {
    width: 48px;
    height: 48px;
    bottom: 24px;
    right: 24px;
  }
  body.page-agent .floating-cta svg {
    width: 20px;
    height: 20px;
  }
}
