
    :root {
      --phbet-primary: #FFD700; /* Gold */
      --phbet-secondary: #000000; /* Black */
      --phbet-accent: #FF4500; /* OrangeRed */
      --phbet-text-light: #FFFFFF;
      --phbet-text-dark: #333333;
      --phbet-bg-dark: #1a1a1a;
      --phbet-bg-light: #2c2c2c;
      --phbet-border-color: #444444;
    }

    .page-phbet-com-login-philippines-2 {
      font-family: 'Arial', sans-serif;
      color: var(--phbet-text-light);
      background-color: var(--phbet-bg-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, relying on body padding for header offset */
    }

    .page-phbet-com-login-philippines-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-phbet-com-login-philippines-2__hero-section {
      position: relative;
      text-align: center;
      padding: 80px 20px;
      background-color: var(--phbet-bg-light);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 450px;
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3;
    }

    .page-phbet-com-login-philippines-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-phbet-com-login-philippines-2__hero-title {
      font-size: 3.2em;
      color: var(--phbet-primary);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-phbet-com-login-philippines-2__hero-subtitle {
      font-size: 1.4em;
      color: var(--phbet-text-light);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-phbet-com-login-philippines-2__cta-button {
      display: inline-block;
      background-color: var(--phbet-accent);
      color: var(--phbet-text-light);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-phbet-com-login-philippines-2__cta-button:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-phbet-com-login-philippines-2__section {
      background-color: var(--phbet-bg-light);
      padding: 60px 20px;
      margin-bottom: 40px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__section-title {
      font-size: 2.5em;
      color: var(--phbet-primary);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-phbet-com-login-philippines-2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--phbet-accent);
      border-radius: 2px;
    }

    .page-phbet-com-login-philippines-2__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    /* Features Grid */
    .page-phbet-com-login-philippines-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-phbet-com-login-philippines-2__feature-item {
      background-color: var(--phbet-bg-dark);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      border: 1px solid var(--phbet-border-color);
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-phbet-com-login-philippines-2__feature-icon {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__feature-title {
      font-size: 1.5em;
      color: var(--phbet-primary);
      margin-bottom: 15px;
    }

    .page-phbet-com-login-philippines-2__feature-description {
      font-size: 1em;
      color: var(--phbet-text-light);
    }

    /* How-To Steps */
    .page-phbet-com-login-philippines-2__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-phbet-com-login-philippines-2__step-item {
      display: flex;
      align-items: flex-start;
      background-color: var(--phbet-bg-dark);
      padding: 25px;
      border-radius: 8px;
      border: 1px solid var(--phbet-border-color);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--phbet-accent);
      margin-right: 20px;
      flex-shrink: 0;
      line-height: 1;
    }

    .page-phbet-com-login-philippines-2__step-content {
      flex-grow: 1;
    }

    .page-phbet-com-login-philippines-2__step-title {
      font-size: 1.4em;
      color: var(--phbet-primary);
      margin-bottom: 10px;
    }

    .page-phbet-com-login-philippines-2__step-description {
      font-size: 1em;
      color: var(--phbet-text-light);
    }

    /* Providers & Payments */
    .page-phbet-com-login-philippines-2__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-phbet-com-login-philippines-2__logo-item {
      background-color: var(--phbet-bg-dark);
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
      border: 1px solid var(--phbet-border-color);
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__logo-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      height: auto;
      box-sizing: border-box;
    }

    /* Promotions */
    .page-phbet-com-login-philippines-2__promo-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-phbet-com-login-philippines-2__promo-card {
      background-color: var(--phbet-bg-dark);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      border: 1px solid var(--phbet-border-color);
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-phbet-com-login-philippines-2__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__promo-content {
      padding: 25px;
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__promo-title {
      font-size: 1.6em;
      color: var(--phbet-primary);
      margin-bottom: 15px;
    }

    .page-phbet-com-login-philippines-2__promo-description {
      font-size: 1em;
      color: var(--phbet-text-light);
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-phbet-com-login-philippines-2__faq-list {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-phbet-com-login-philippines-2__faq-item {
      background-color: var(--phbet-bg-dark);
      border: 1px solid var(--phbet-border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--phbet-bg-light);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-phbet-com-login-philippines-2__faq-question h3 {
      font-size: 1.2em;
      color: var(--phbet-primary);
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phbet-com-login-philippines-2__faq-toggle {
      font-size: 1.8em;
      color: var(--phbet-accent);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      line-height: 1;
      width: 25px; /* Ensure consistent width */
      text-align: center;
    }

    .page-phbet-com-login-philippines-2__faq-item.active .page-phbet-com-login-philippines-2__faq-toggle {
      transform: rotate(45deg); /* A common way to make '+' into 'x' or '-' */
    }

    .page-phbet-com-login-philippines-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--phbet-text-light);
      box-sizing: border-box;
    }

    .page-phbet-com-login-philippines-2__faq-item.active .page-phbet-com-login-philippines-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-phbet-com-login-philippines-2__hero-section {
        padding: 60px 15px;
        min-height: 350px;
      }

      .page-phbet-com-login-philippines-2__hero-title {
        font-size: 2.2em;
      }

      .page-phbet-com-login-philippines-2__hero-subtitle {
        font-size: 1.1em;
      }

      .page-phbet-com-login-philippines-2__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-phbet-com-login-philippines-2__section {
        padding: 40px 15px;
      }

      .page-phbet-com-login-philippines-2__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-phbet-com-login-philippines-2__text-content {
        font-size: 1em;
      }

      .page-phbet-com-login-philippines-2__features-grid,
      .page-phbet-com-login-philippines-2__promo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-phbet-com-login-philippines-2__feature-item,
      .page-phbet-com-login-philippines-2__promo-card,
      .page-phbet-com-login-philippines-2__step-item,
      .page-phbet-com-login-philippines-2__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjusted padding for better mobile spacing */
        padding-right: 15px !important;
      }

      .page-phbet-com-login-philippines-2__promo-image {
        height: 180px;
      }

      .page-phbet-com-login-philippines-2__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-phbet-com-login-philippines-2__logo-item {
        height: 80px;
      }

      .page-phbet-com-login-philippines-2__logo-image {
        max-height: 60px;
      }

      .page-phbet-com-login-philippines-2__faq-question {
        padding: 15px 20px;
      }

      .page-phbet-com-login-philippines-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-phbet-com-login-philippines-2__faq-answer {
        padding: 15px 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-phbet-com-login-philippines-2__faq-item.active .page-phbet-com-login-philippines-2__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-phbet-com-login-philippines-2__hero-title {
        font-size: 1.8em;
      }

      .page-phbet-com-login-philippines-2__hero-subtitle {
        font-size: 0.9em;
      }

      .page-phbet-com-login-philippines-2__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-phbet-com-login-philippines-2__section-title {
        font-size: 1.8em;
      }

      .page-phbet-com-login-philippines-2__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-phbet-com-login-philippines-2__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }
    }
  