/* CSS Variables[cite: 15] */
      :root {
        --primary: #1a3c8f;
        --secondary: #3a9fe0;
        --surface: #0d1f4e;
        --card-bg: #162654;
        --gradient: linear-gradient(135deg, #1a3c8f 0%, #3a9fe0 100%);
        --text-pri: #ffffff;
        --text-sec: #a8bfdf;
        --success: #2ecc71;
        --border: #243a6b;
        --gold: #f0c040;

        --font-display: "Poppins", sans-serif;
        --font-body: "Nunito", sans-serif;
      }

      /* Resets */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: var(--font-body);
        background-color: var(--surface);
        color: var(--text-pri);
        line-height: 1.6;
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }
      ul {
        list-style: none;
      }

      /* Typography */
      h1,
      h2,
      h3,
      .poppins {
        font-family: var(--font-display);
      }
      h1 {
        font-weight: 800;
        font-size: 44px;
        line-height: 1.35;
        margin-bottom: 24px;
        text-align: center;
      }
      h2 {
        font-weight: 800;
        font-size: 32px;
        margin-bottom: 24px;
      }

      .h2-accent {
        display: inline-block;
        border-bottom: 4px solid var(--gold);
        padding-bottom: 8px;
        margin-bottom: 40px;
      }
      .text-sec {
        color: var(--text-sec);
      }
      .text-center {
        text-align: center;
      }

      /* Layout & Utilities[cite: 15] */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }
      .section-pad {
        padding: 96px 0;
      }
      .bg-card {
        background-color: var(--card-bg);
      }
      .bg-surface {
        background-color: var(--surface);
      }
      .hr-top {
        border-top: 1px solid var(--border);
      }
      .hr-bottom {
        border-bottom: 1px solid var(--border);
      }

      /* Buttons[cite: 15] */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 16px;
        padding: 14px 28px;
        transition: all 0.3s ease;
        cursor: pointer;
        border-radius: 50px;
      }
      .btn-primary {
        background: var(--gradient);
        color: #fff;
        border: none;
      }
      .btn-primary:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(58, 159, 224, 0.4);
      }
      .btn-secondary {
        background: transparent;
        color: var(--secondary);
        border: 2px solid var(--secondary);
        border-radius: 6px;
      }
      .btn-secondary:hover {
        background: rgba(58, 159, 224, 0.1);
      }

      /* Navbar[cite: 15] */
      header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(13, 31, 78, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border);
      }
      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
      }
      .logo {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 24px;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .logo svg {
        fill: var(--gold);
        width: 28px;
        height: 28px;
      }
      .nav-links {
        display: flex;
        gap: 32px;
      }
      .nav-links a {
        font-weight: 600;
        font-size: 15px;
        transition: color 0.2s;
      }
      .nav-links a.active,
      .nav-links a:hover {
        color: var(--secondary);
      }
      .nav-actions {
        display: flex;
        gap: 16px;
        align-items: center;
      }
      .hamburger {
        display: none;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
      }

      /* Mobile Menu */
      .mobile-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
      }
      .mobile-menu.active {
        display: flex;
      }

      /* SECTION 1: HERO (About Layout)[cite: 15] */
      .hero {
        position: relative;
        padding: 96px 24px;
        text-align: center;
        background: linear-gradient(90deg, #0d1f4e 0%, #162654 100%);
      }
      .hero-content {
        max-width: 760px;
        margin: 0 auto;
      }
      .hero-content p {
        font-size: 18px;
        line-height: 1.7;
        margin: 0 auto 48px auto;
        color: var(--text-sec);
        max-width: 640px;
      }
      .hero-banner-wrap {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        border-radius: 8px;
        overflow: hidden;
      }
      .hero-banner-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 31, 78, 0.4);
        pointer-events: none;
      }
      .hero-banner {
        width: 100%;
        max-height: 320px;
        object-fit: cover;
        border-radius: 8px;
      }

      /* SECTION 2: BRAND STORY[cite: 15] */
      .story-container {
        max-width: 800px;
        margin: 0 auto;
      }
      .story-container p {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 24px;
      }
      .pull-quote {
        border-left: 3px solid var(--gold);
        color: var(--secondary);
        font-size: 20px;
        padding-left: 20px;
        margin: 40px 0;
        font-style: italic;
        line-height: 1.6;
      }

      /* SECTION 3: MILESTONES[cite: 15] */
      .timeline-container {
        max-width: 720px;
        margin: 0 auto;
      }
      .timeline {
        position: relative;
        margin: 48px 0 0 0;
        padding-left: 24px;
      }
      .timeline::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        bottom: 0;
        width: 2px;
        background: var(--secondary);
      }
      .timeline-item {
        position: relative;
        padding-left: 32px;
        margin-bottom: 48px;
      }
      .timeline-item:last-child {
        margin-bottom: 0;
      }
      .timeline-marker {
        position: absolute;
        left: -9px;
        top: 8px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--surface);
        border: 2px solid var(--secondary);
        z-index: 2;
      }
      .timeline-item.today .timeline-marker {
        background: var(--gold);
        border-color: var(--gold);
      }
      .timeline-year {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 28px;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 12px;
        line-height: 1;
      }
      .timeline-item.today .timeline-year {
        background: none;
        color: var(--gold);
        -webkit-text-fill-color: var(--gold);
      }
      .timeline-desc {
        font-size: 16px;
        color: var(--text-sec);
        line-height: 1.6;
      }
      .timeline-item.today .timeline-desc {
        color: #fff;
      }

      /* SECTION 4: PAGCOR LICENCE[cite: 15] */
      .banner-top {
        width: 100%;
        max-height: 260px;
        object-fit: cover;
        opacity: 0.5;
        display: block;
        margin-bottom: 48px;
        border-radius: 12px;
      }
      .editorial-container {
        max-width: 800px;
        margin: 0 auto;
      }
      .inset-card {
        background: var(--card-bg);
        border-radius: 12px;
        border-left: 4px solid var(--gold);
        padding: 32px;
        margin: 40px 0;
      }
      .inset-card h3 {
        font-family: var(--font-display);
        font-size: 18px;
        margin-bottom: 16px;
        color: #fff;
      }
      .inset-card p {
        font-size: 16px;
        color: var(--text-sec);
        line-height: 1.7;
        margin-bottom: 0;
      }

      /* SECTION 5: SECURITY AND TECHNOLOGY[cite: 15] */
      .sec-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
        margin-top: 48px;
      }
      .sec-item {
        border-left: 3px solid var(--secondary);
        padding-left: 20px;
        text-align: left;
      }
      .sec-item h3 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 8px;
        color: #fff;
      }
      .sec-item p {
        font-size: 15px;
        color: var(--text-sec);
        line-height: 1.6;
      }

      /* SECTION 6: PROVIDERS[cite: 15] */
      .provider-list {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
      }
      .provider-item {
        border-bottom: 1px solid var(--border);
        padding: 24px 0;
      }
      .provider-item:first-child {
        border-top: 1px solid var(--border);
      }
      .provider-name {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 18px;
        color: #fff;
        margin-bottom: 8px;
      }
      .provider-desc {
        font-size: 16px;
        color: var(--text-sec);
        line-height: 1.6;
      }

      /* SECTION 7: RESPONSIBLE GAMING[cite: 15] */
      .rg-tools {
        margin-top: 40px;
        border-top: 1px solid var(--border);
      }
      .rg-tool {
        border-bottom: 1px solid var(--border);
        padding: 24px 0;
      }
      .rg-tool-head {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .rg-tool-icon {
        width: 24px;
        height: 24px;
        stroke: var(--secondary);
        stroke-width: 2;
        fill: none;
        flex-shrink: 0;
      }
      .rg-tool-title {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 16px;
        color: #fff;
        margin: 0;
      }
      .rg-tool-body {
        font-size: 15px;
        color: var(--text-sec);
        margin-top: 12px;
        line-height: 1.6;
        padding-left: 40px;
      }
      .support-card {
        background: transparent;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 24px;
        margin-top: 40px;
      }
      .support-card h3 {
        font-family: var(--font-display);
        font-size: 16px;
        margin-bottom: 12px;
      }
      .support-card p {
        font-size: 15px;
        color: var(--text-sec);
        margin: 0;
      }

      /* SECTION 8: CONTACT[cite: 15] */
      .contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 48px;
        margin-bottom: 32px;
      }
      .contact-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 32px 24px;
        text-align: center;
      }
      .contact-icon {
        width: 36px;
        height: 36px;
        stroke: var(--secondary);
        stroke-width: 1.5;
        fill: none;
        margin: 0 auto 16px auto;
        display: block;
      }
      .contact-card h3 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 16px;
        color: #fff;
        margin-bottom: 8px;
      }
      .contact-card p {
        font-size: 14px;
        color: var(--text-sec);
        line-height: 1.5;
      }
      .address-text {
        text-align: center;
        font-size: 14px;
        color: var(--text-sec);
        margin-top: 24px;
      }

      /* SECTION 9: FAQ[cite: 15] */
      .faq-wrap {
        max-width: 780px;
        margin: 0 auto;
      }
      .faq-item {
        background: var(--card-bg);
        border-bottom: 1px solid var(--border);
      }
      .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 24px;
        background: none;
        border: none;
        color: #fff;
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        text-align: left;
      }
      .faq-icon {
        transition: transform 0.3s ease;
        fill: var(--secondary);
        width: 24px;
        height: 24px;
      }
      .faq-item.active .faq-icon {
        transform: rotate(180deg);
      }
      .faq-answer {
        padding: 0 24px;
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.3s ease,
          padding 0.3s ease;
        font-size: 15px;
        color: var(--text-sec);
      }
      .faq-item.active .faq-answer {
        padding: 0 24px 24px 24px;
        max-height: 400px;
      }

      /* FOOTER[cite: 15] */
      footer {
        background: #0a1638;
        padding: 60px 0 30px;
        border-top: 1px solid var(--border);
        font-size: 14px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 40px;
      }
      .footer-col h4 {
        font-family: var(--font-display);
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
      }
      .footer-col ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-col a {
        color: var(--text-sec);
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: var(--secondary);
      }
      .footer-bottom {
        border-top: 1px solid var(--border);
        padding-top: 24px;
        text-align: center;
        color: var(--text-sec);
        font-size: 12px;
      }
      .footer-bottom p {
        margin-bottom: 8px;
      }

      /* RESPONSIVE[cite: 15] */
      @media (max-width: 1023px) {
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 767px) {
        h1 {
          font-size: 28px;
        }
        h2 {
          font-size: 26px;
        }
        .section-pad {
          padding: 56px 0;
        }
        .nav-links,
        .nav-actions {
          display: none;
        }
        .hamburger {
          display: block;
        }

        .hero {
          padding: 56px 24px;
        }
        .hero-content p {
          font-size: 16px;
          margin-bottom: 32px;
        }
        .hero-banner {
          max-height: 200px;
        }

        .sec-grid {
          grid-template-columns: 1fr;
          gap: 28px;
        }

        /* Mobile Accordion for RG Tools */
        .rg-tool-head {
          cursor: pointer;
          justify-content: space-between;
          position: relative;
        }
        .rg-tool-title-wrap {
          display: flex;
          align-items: center;
          gap: 12px;
        }
        .rg-tool-body {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
          padding-left: 0;
          margin-top: 0;
        }
        .rg-tool.active .rg-tool-body {
          max-height: 300px;
          margin-top: 16px;
        }
        .rg-chevron {
          width: 20px;
          height: 20px;
          fill: var(--secondary);
          transition: transform 0.3s;
          display: block;
        }
        .rg-tool.active .rg-chevron {
          transform: rotate(180deg);
        }

        .contact-grid {
          grid-template-columns: 1fr;
        }

        .footer-grid {
          grid-template-columns: 1fr;
        }
      }
      @media (min-width: 768px) {
        .rg-chevron {
          display: none;
        } /* Hide chevron on desktop since it's fully expanded */
      }
