/* CSS Variables */
      :root {
        --color-primary: #2d6a4f;
        --color-accent: #d4a012;
        --color-bg: #f7f4ee;
        --color-card-bg: #ffffff;
        --color-surface: #ede8df;
        --color-text-main: #1a1a18;
        --color-text-secondary: #6b6b60;
        --color-border: #d6d1c7;
        --color-dark-bg: #1a2e23;
        --color-accent-wash: rgba(45, 106, 79, 0.1);

        --font-display: "Space Grotesk", sans-serif;
        --font-body: "Inter", sans-serif;
        --font-mono: "Space Mono", monospace;

        --container-max: 1080px;
        --section-padding: 80px;
      }

      /* Reset & Base */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: var(--font-body);
        background-color: var(--color-bg);
        color: var(--color-text-main);
        line-height: 1.6;
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      /* Typography */
      h1,
      h2,
      h3 {
        font-family: var(--font-display);
        font-weight: 700;
      }
      h1 {
        font-size: 56px;
        line-height: 1.1;
        color: #f5f5f0;
        margin-bottom: 24px;
        text-align: center;
      }
      h2 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 24px;
      }
      .section-label {
        font-family: var(--font-mono);
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--color-text-secondary);
        margin-bottom: 16px;
        display: block;
      }
      p {
        font-size: 16px;
        color: var(--color-text-secondary);
        margin-bottom: 24px;
      }

      .emphasis-text {
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 18px;
        color: var(--color-primary);
      }

      /* Layout Utility */
      section {
        padding: var(--section-padding) 0;
      }
      .container {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 24px;
      }

      /* Buttons & Links */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.2s ease;
        border-radius: 0;
        border: none;
        padding: 16px 32px;
      }
      .btn-primary {
        background-color: var(--color-primary);
        color: #ffffff;
      }
      .btn-primary:hover {
        background-color: var(--color-accent);
        color: var(--color-text-main);
      }

      .btn-accent {
        background-color: var(--color-accent);
        color: var(--color-text-main);
      }
      .btn-accent:hover {
        background-color: #ffffff;
      }

      .btn-text {
        background: transparent;
        color: var(--color-primary);
        padding: 16px 0;
      }
      .btn-text span {
        display: inline-block;
        transition: transform 0.2s ease;
        margin-left: 8px;
      }
      .btn-text:hover span {
        transform: translateX(4px);
      }

      /* Centered CTA Container */
      .section-cta {
        margin-top: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
      }

      /* External Link Styles */
      .ext-link {
        font-family: var(--font-display);
        font-weight: 500;
        color: var(--color-primary);
        text-decoration: underline;
        transition: color 0.2s ease;
      }
      .ext-link:hover {
        color: var(--color-accent);
      }

      /* Navbar */
      .navbar {
        padding: 24px 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
      }
      .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .logo {
        font-family: var(--font-display);
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.5px;
      }
      .nav-links {
        display: flex;
        gap: 40px;
        align-items: center;
      }
      .nav-links a {
        color: #ffffff;
        font-size: 15px;
        opacity: 0.9;
      }
      .nav-links a:hover {
        opacity: 1;
      }
      .nav-auth {
        display: flex;
        align-items: center;
        gap: 24px;
      }
      .nav-auth .login {
        color: #ffffff;
        font-size: 15px;
      }
      .nav-auth .register {
        background: var(--color-accent);
        color: var(--color-text-main);
        padding: 10px 24px;
        font-family: var(--font-display);
        font-weight: 500;
      }
      .hamburger {
        display: none;
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
      }

      /* Mobile Menu */
      .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-dark-bg);
        z-index: 1000;
        padding: 80px 32px 32px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
      }
      .mobile-menu.active {
        right: 0;
      }
      .close-menu {
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 28px;
        cursor: pointer;
      }
      .mobile-menu a {
        display: block;
        color: #ffffff;
        font-size: 18px;
        margin-bottom: 24px;
        font-family: var(--font-display);
      }
      .mobile-menu .auth-group {
        margin-top: 48px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Section 1: Hero (Completely Redesigned, Split Layout) */
      .hero-about {
        background-color: var(--color-dark-bg);
        padding: 160px 0; /* More grandiose height */
        position: relative;
        overflow: hidden;
      }
      .hero-about-layout {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 80px; /* Grandiose gap */
      }
      .hero-about-left {
        flex: 0 0 40%;
        display: flex;
        justify-content: flex-end; /* Align Badge to the right boundary of its column */
        position: relative;
      }
      .hero-about-badge {
        width: 100%;
        max-width: 400px; /* Large, impressive badge */
        position: relative;
        /* Subtle 3D shadow */
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
      }
      .hero-about-badge svg {
        width: 100%;
        height: auto;
        opacity: 1; /* Completely visible */
      }
      .hero-about-right {
        flex: 0 0 60%;
        display: flex;
        justify-content: flex-start;
      }
      .hero-about-content {
        position: relative;
        z-index: 2;
        text-align: left; /* Strict left align */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
      .hero-about-content h1 {
        font-size: 64px; /* Grandiose font size */
        line-height: 1.1;
        color: #f5f5f0;
        margin-bottom: 24px;
        max-width: none; /* Take up available space */
        text-align: left;
      }
      .hero-about-content p {
        color: #c8d0ca;
        font-size: 20px; /* Large, impressive body text */
        margin-bottom: 0;
        max-width: 560px; /* Limit for better readability */
      }

      /* Section 3: PAGCOR License */
      .pagcor {
        background-color: var(--color-surface);
      }
      .verify-box {
        background-color: #ffffff;
        padding: 24px;
        border-radius: 2px;
        border-left: 3px solid var(--color-primary);
        margin-top: 32px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 16px;
        color: var(--color-text-main);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
      }

      /* Section 4: Security (Definition List) */
      .def-list {
        margin-top: 40px;
      }
      .def-item {
        margin-bottom: 36px;
      }
      .def-item:last-child {
        margin-bottom: 0;
      }
      .def-header {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
      }
      .def-line {
        width: 24px;
        height: 2px;
        background-color: var(--color-primary);
        margin-right: 12px;
        flex-shrink: 0;
      }
      .def-title {
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 18px;
        color: var(--color-text-main);
      }
      .def-desc {
        margin-left: 36px;
        margin-bottom: 0;
      }

      /* Section 5: Responsible Gaming (Left Vertical Line) */
      .rg-wrapper {
        position: relative;
      }
      .rg-line {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background-color: var(--color-primary);
      }
      .rg-content {
        margin-left: 32px;
        padding-bottom: 8px;
      }
      .rg-item {
        margin-bottom: 28px;
      }
      .rg-item:last-child {
        margin-bottom: 0;
      }
      .rg-subtitle {
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 18px;
        color: var(--color-text-main);
        margin-bottom: 8px;
      }
      .rg-desc {
        margin-bottom: 0;
      }

      /* Section 6: Customer Support (Row List) */
      .support-list {
        margin-top: 40px;
        margin-bottom: 32px;
        border-top: 1px solid var(--color-border);
      }
      .support-row {
        display: flex;
        padding: 20px 0;
        border-bottom: 1px solid var(--color-border);
      }
      .support-name {
        width: 140px;
        flex-shrink: 0;
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 18px;
        color: var(--color-text-main);
      }
      .support-desc {
        flex: 1;
        font-size: 16px;
        color: var(--color-text-secondary);
        margin-bottom: 0;
      }
      .common-requests {
        font-size: 16px;
        color: var(--color-text-secondary);
        margin-top: 32px;
        margin-bottom: 0;
      }

      /* FAQ */
      .faq {
        padding: 40px 0 100px;
      }
      .faq-list {
        margin-top: 48px;
      }
      .faq-item {
        border-bottom: 1px solid var(--color-surface);
      }
      .faq-question {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        padding: 24px 0;
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 500;
        color: var(--color-text-main);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
      }
      .faq-icon {
        color: var(--color-primary);
        transition: transform 0.25s ease-out;
        font-size: 20px;
      }
      .faq-question[aria-expanded="true"] .faq-icon {
        transform: rotate(180deg);
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.25s ease-out,
          opacity 0.25s ease-out;
        opacity: 0;
      }
      .faq-answer-inner {
        padding: 0 0 24px 24px;
        border-left: 2px solid var(--color-primary);
        margin-bottom: 24px;
        font-size: 16px;
        color: var(--color-text-secondary);
      }
      .faq-item.active .faq-answer {
        opacity: 1;
      }

      /* Footer */
      .footer {
        background-color: var(--color-dark-bg);
        color: #ffffff;
        padding: 100px 0 40px;
      }
      .footer-top {
        display: flex;
        justify-content: space-between;
        gap: 64px;
        margin-bottom: 80px;
      }
      .footer-brand {
        flex: 0 0 60%;
      }
      .footer-brand .logo {
        display: block;
        margin-bottom: 24px;
      }
      .footer-brand p {
        color: #c8d0ca;
        margin-bottom: 32px;
        font-size: 16px;
        max-width: 480px;
      }
      .social-links {
        display: flex;
        gap: 24px;
      }
      .social-links a {
        font-family: var(--font-mono);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-accent);
      }
      .footer-links {
        flex: 0 0 40%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .footer-col h4 {
        font-family: var(--font-mono);
        font-size: 12px;
        letter-spacing: 2px;
        color: #8a9990;
        margin-bottom: 24px;
        text-transform: uppercase;
      }
      .footer-col ul li {
        margin-bottom: 16px;
      }
      .footer-col ul li a {
        color: #e0e5e2;
        font-size: 15px;
        transition: color 0.2s;
      }
      .footer-col ul li a:hover {
        color: #ffffff;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        font-size: 14px;
        color: #8a9990;
      }
      .disclaimer {
        line-height: 1.5;
        max-width: 600px;
      }
      .legal-badges {
        display: flex;
        gap: 16px;
        align-items: center;
      }
      .license-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: var(--color-surface);
        color: var(--color-primary);
        font-family: var(--font-mono);
        font-size: 12px;
        font-weight: 700;
        padding: 8px 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      .license-badge::before {
        content: "";
        display: block;
        width: 4px;
        height: 4px;
        background-color: var(--color-primary);
      }

      /* Responsive Breakpoints */
      @media (max-width: 1023px) {
        /* Tablet */
        h1 {
          font-size: 48px;
        }
        .hero-about-layout {
          gap: 40px;
        }
        .hero-about-left {
          flex: 0 0 35%;
        }
        .hero-about-badge {
          max-width: 320px;
        }
        .hero-about-content h1 {
          font-size: 50px;
        }
        .footer-top {
          flex-direction: column;
          gap: 48px;
        }
        .footer-brand,
        .footer-links {
          flex: 1;
        }
      }

      @media (max-width: 767px) {
        /* Mobile */
        h1 {
          font-size: 32px;
        }
        h2 {
          font-size: 32px;
        }

        .nav-links,
        .nav-auth {
          display: none;
        }
        .hamburger {
          display: block;
        }

        .hero-about {
          padding: 120px 0 80px;
        }
        .hero-about-layout {
          flex-direction: column;
          gap: 48px;
          align-items: flex-start;
        }
        .hero-about-left {
          flex: 0 0 auto;
          width: 100%;
          justify-content: center;
        } /* Center badge on mobile */
        .hero-about-badge {
          max-width: 200px;
        }
        .hero-about-right {
          flex: 0 0 auto;
          width: 100%;
          justify-content: flex-start;
        }
        .hero-about-content h1 {
          font-size: 36px;
        }
        .hero-about-content p {
          font-size: 18px;
          max-width: 100%;
        }

        .def-desc {
          margin-left: 0;
          margin-top: 8px;
        }

        .rg-line {
          width: 2px;
        }
        .rg-content {
          margin-left: 24px;
        }

        .support-row {
          flex-direction: column;
          gap: 8px;
        }
        .support-name {
          width: 100%;
        }

        .footer-bottom {
          flex-direction: column;
          gap: 24px;
        }
      }
