
    :root {
      --page-phbet16-primary-color: #e0b000; /* Golden yellow */
      --page-phbet16-secondary-color: #333;
      --page-phbet16-background-dark: #1a1a1a;
      --page-phbet16-text-light: #f5f5f5;
      --page-phbet16-text-dark: #1a1a1a;
      --page-phbet16-border-color: #444;
      --page-phbet16-button-hover: #ffcc00;
    }

    .page-phbet16 {
      font-family: 'Arial', sans-serif;
      color: var(--page-phbet16-text-light);
      background-color: var(--page-phbet16-background-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-phbet16__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-phbet16__section--dark {
      background-color: var(--page-phbet16-secondary-color);
    }

    .page-phbet16__heading {
      color: var(--page-phbet16-primary-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      text-transform: uppercase;
    }

    .page-phbet16__subheading {
      color: var(--page-phbet16-text-light);
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-phbet16__paragraph {
      margin-bottom: 20px;
      font-size: 1.1em;
      color: var(--page-phbet16-text-light);
    }

    .page-phbet16__hero-section {
      background-color: #000;
      position: relative;
      overflow: hidden;
      padding: 10px 0 60px; /* Small padding-top to avoid double offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .page-phbet16__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
      max-width: 100%;
    }

    .page-phbet16__hero-content {
      position: relative;
      z-index: 2;
      color: var(--page-phbet16-text-light);
      padding: 20px;
      max-width: 900px;
    }

    .page-phbet16__hero-title {
      font-size: 3.5em;
      color: var(--page-phbet16-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-phbet16__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-phbet16__cta-button {
      background-color: var(--page-phbet16-primary-color);
      color: var(--page-phbet16-text-dark);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      text-decoration: none;
    }

    .page-phbet16__cta-button:hover {
      background-color: var(--page-phbet16-button-hover);
    }

    .page-phbet16__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-phbet16__feature-card {
      background-color: var(--page-phbet16-secondary-color);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-phbet16__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-phbet16__feature-icon {
      margin-bottom: 15px;
      width: 100%;
      max-width: 300px; /* Example size */
      height: auto;
      border-radius: 5px;
      object-fit: cover;
    }

    .page-phbet16__feature-title {
      color: var(--page-phbet16-primary-color);
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-phbet16__feature-description {
      color: var(--page-phbet16-text-light);
      font-size: 1em;
    }

    .page-phbet16__game-providers-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-phbet16__provider-item {
      background-color: var(--page-phbet16-secondary-color);
      padding: 15px 25px;
      border-radius: 5px;
      font-weight: bold;
      color: var(--page-phbet16-text-light);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
      max-width: 200px; /* Adjust as needed */
      width: 100%;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-phbet16__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-phbet16__payment-card {
      background-color: var(--page-phbet16-secondary-color);
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-phbet16__payment-icon {
      max-width: 150px; /* Example size */
      width: 100%;
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
      object-fit: cover;
    }

    .page-phbet16__payment-name {
      color: var(--page-phbet16-text-light);
      font-weight: bold;
    }

    .page-phbet16__faq-section {
      background-color: var(--page-phbet16-background-dark);
    }

    .page-phbet16__faq-list {
      margin-top: 30px;
      text-align: left;
      list-style: none;
      padding: 0;
    }

    .page-phbet16__faq-item {
      background-color: var(--page-phbet16-secondary-color);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-phbet16__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      transition: background-color 0.3s ease;
    }

    .page-phbet16__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-phbet16__faq-question h3 {
      margin: 0;
      color: var(--page-phbet16-primary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-phbet16__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-phbet16-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-phbet16__faq-item.active .page-phbet16__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-phbet16__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Adjusted padding for answer content */
      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(--page-phbet16-text-light);
      font-size: 1em;
      text-align: left;
    }

    .page-phbet16__faq-item.active .page-phbet16__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 20px !important; /* Ensure padding is applied when active */
      opacity: 1;
    }

    .page-phbet16__promotion-link {
      color: var(--page-phbet16-primary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-phbet16__promotion-link:hover {
      color: var(--page-phbet16-button-hover);
    }

    /* Floating Register/Login Buttons */
    .page-phbet16__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-phbet16__floating-button {
      background-color: var(--page-phbet16-primary-color);
      color: var(--page-phbet16-text-dark);
      padding: 10px 20px;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    .page-phbet16__floating-button:hover {
      background-color: var(--page-phbet16-button-hover);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-phbet16__section {
        padding: 30px 15px;
      }

      .page-phbet16__heading {
        font-size: 2em;
      }

      .page-phbet16__subheading {
        font-size: 1.5em;
      }

      .page-phbet16__hero-title {
        font-size: 2.5em;
      }

      .page-phbet16__hero-description {
        font-size: 1.1em;
      }

      .page-phbet16__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-phbet16__features-grid {
        grid-template-columns: 1fr;
      }

      .page-phbet16__provider-item,
      .page-phbet16__payment-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;
      }
      
      .page-phbet16__game-providers-list,
      .page-phbet16__payment-methods-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-phbet16__faq-question {
        padding: 12px 15px;
      }

      .page-phbet16__faq-question h3 {
        font-size: 1.1em;
      }

      .page-phbet16__faq-answer {
        padding: 15px 15px !important;
      }

      .page-phbet16__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-phbet16__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      /* Ensure all images are responsive */
      .page-phbet16 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  