
    /* Base styles for the page */
    .page-phbet-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small decorative padding, relying on body padding for header offset */
    }

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

    /* Hero Section */
    .page-phbet-2__hero-section {
      position: relative;
      background-color: #000;
      color: #fff;
      text-align: center;
      padding: 80px 20px 60px;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-phbet-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      z-index: 1;
    }

    .page-phbet-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-phbet-2__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffd700; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-phbet-2__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-phbet-2__cta-button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-phbet-2__cta-button {
      background-color: #ffd700; /* Gold */
      color: #000;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      border: none;
    }

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

    /* Floating Buttons */
    .page-phbet-2__floating-buttons {
      position: fixed;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
      pointer-events: none; /* Allow clicks to pass through if not on button */
    }

    .page-phbet-2__floating-button {
      background-color: #007bff; /* Blue for primary action */
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      font-size: 0.95em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      pointer-events: auto; /* Re-enable clicks for the button itself */
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-phbet-2__floating-button--register {
      background-color: #28a745; /* Green */
    }

    .page-phbet-2__floating-button--login {
      background-color: #007bff; /* Blue */
    }

    .page-phbet-2__floating-button--register:hover {
      background-color: #218838;
      transform: translateY(-3px);
    }

    .page-phbet-2__floating-button--login:hover {
      background-color: #0056b3;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-phbet-2__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-phbet-2__section-title {
      font-size: 2em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-phbet-2__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffd700; /* Gold accent */
      border-radius: 2px;
    }

    /* Promotions Section */
    .page-phbet-2__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-phbet-2__promo-card {
      background-color: #fdfdfd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      border: 1px solid #eee;
    }

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

    .page-phbet-2__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-phbet-2__promo-content {
      padding: 20px;
    }

    .page-phbet-2__promo-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-phbet-2__promo-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-phbet-2__promo-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-phbet-2__promo-button:hover {
      background-color: #0056b3;
    }

    /* Game Providers & Payment Methods */
    .page-phbet-2__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-phbet-2__logo-item {
      text-align: center;
      padding: 15px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      border: 1px solid #eee;
    }

    .page-phbet-2__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-phbet-2__logo-image {
      max-width: 120px;
      height: auto;
      display: block;
      margin: 0 auto 10px;
    }

    .page-phbet-2__logo-name {
      font-size: 0.9em;
      color: #555;
      font-weight: bold;
    }

    /* About Section */
    .page-phbet-2__about-content {
      text-align: center;
    }

    .page-phbet-2__about-text {
      font-size: 1.1em;
      color: #444;
      margin-bottom: 25px;
    }

    .page-phbet-2__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      margin-top: 20px;
    }

    /* FAQ Section */
    .page-phbet-2__faq-item {
      background-color: #fdfdfd;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-phbet-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f0f0f0;
      border-bottom: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-phbet-2__faq-question:hover {
      background-color: #e6e6e6;
    }

    .page-phbet-2__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-phbet-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

    .page-phbet-2__faq-item.active .page-phbet-2__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-phbet-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 0.95em;
    }

    .page-phbet-2__faq-item.active .page-phbet-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-phbet-2__container {
        padding: 15px;
      }

      .page-phbet-2__hero-section {
        padding: 60px 15px 40px;
        margin-bottom: 30px;
      }

      .page-phbet-2__hero-title {
        font-size: 2em;
      }

      .page-phbet-2__hero-subtitle {
        font-size: 1em;
      }

      .page-phbet-2__cta-button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-phbet-2__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-phbet-2__floating-buttons {
        flex-direction: row;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(0, 0, 0, 0.8);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        gap: 5px;
      }

      .page-phbet-2__floating-button {
        flex: 1;
        margin: 0 5px;
        font-size: 0.9em;
        padding: 10px 15px;
      }

      .page-phbet-2__section {
        padding: 25px;
        margin-bottom: 20px;
      }

      .page-phbet-2__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }

      .page-phbet-2__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

      .page-phbet-2__promo-title {
        font-size: 1.2em;
      }

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

      .page-phbet-2__logo-image {
        max-width: 80px;
      }

      .page-phbet-2__faq-question {
        padding: 12px 15px;
      }

      .page-phbet-2__faq-question h3 {
        font-size: 1em;
      }

      .page-phbet-2__faq-answer {
        padding: 0 15px;
        font-size: 0.9em;
      }

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

      /* Image responsive optimization */
      .page-phbet-2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-phbet-2__hero-background,
      .page-phbet-2__promo-image,
      .page-phbet-2__logo-image,
      .page-phbet-2__about-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List item responsive optimization */
      .page-phbet-2__logo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phbet-2__logo-item {
        width: 100% !important; /* Ensure items take full width in small grids */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-phbet-2__promotions-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phbet-2__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }
    @media (max-width: 480px) {
        .page-phbet-2__floating-buttons {
            gap: 0;
            padding: 8px 0;
        }
        .page-phbet-2__floating-button {
            padding: 8px 10px;
            font-size: 0.85em;
        }
    }
  