
    :root {
      --phbet88-primary-color: #FFD700; /* Gold */
      --phbet88-secondary-color: #1a1a1a; /* Dark Grey */
      --phbet88-text-color: #e0e0e0; /* Light Grey */
      --phbet88-dark-background: #0d0d0d; /* Very Dark Grey */
      --phbet88-light-background: #f8f8f8; /* Off-white */
      --phbet88-accent-color: #00BFFF; /* Deep Sky Blue for promotions */
      --phbet88-border-color: #333;
      --phbet88-button-hover-color: #FFFACD; /* Lemon Chiffon */
    }

    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--phbet88-dark-background);
      color: var(--phbet88-text-color);
      line-height: 1.6;
    }

    .page-phbet88 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 20px;
      box-sizing: border-box;
      /* Fallback for body padding-top if shared.css doesn't set it */
      padding-top: var(--header-offset, 122px);
    }

    .page-phbet88__hero-section {
      position: relative;
      background-color: var(--phbet88-secondary-color);
      color: #FFFFFF;
      text-align: center;
      padding: 100px 20px 80px; /* Base padding, body handles main offset */
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
    }

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

    .page-phbet88__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-phbet88__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--phbet88-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-phbet88__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--phbet88-text-color);
    }

    .page-phbet88__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-phbet88__button {
      background-color: var(--phbet88-primary-color);
      color: var(--phbet88-secondary-color);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .page-phbet88__button:hover {
      background-color: var(--phbet88-button-hover-color);
      transform: translateY(-2px);
    }

    .page-phbet88__section {
      background-color: var(--phbet88-secondary-color);
      padding: 40px;
      margin-bottom: 40px;
      border-radius: 10px;
    }

    .page-phbet88__section-title {
      font-size: 2.5em;
      color: var(--phbet88-primary-color);
      text-align: center;
      margin-bottom: 30px;
      border-bottom: 3px solid var(--phbet88-primary-color);
      padding-bottom: 15px;
      display: inline-block;
      width: auto;
      margin-left: auto;
      margin-right: auto;
    }

    .page-phbet88__text-content {
      font-size: 1.1em;
      color: var(--phbet88-text-color);
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-phbet88__game-card {
      background-color: var(--phbet88-dark-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-phbet88__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-phbet88__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency, object-fit will manage */
      object-fit: cover;
      max-width: 100%;
      height: auto; /* Override fixed height on mobile if necessary */
      display: block;
    }

    .page-phbet88__game-title {
      font-size: 1.5em;
      color: var(--phbet88-primary-color);
      margin: 20px 15px 10px;
    }

    .page-phbet88__game-description {
      font-size: 0.95em;
      color: var(--phbet88-text-color);
      padding: 0 15px;
    }

    .page-phbet88__promo-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-phbet88__promo-item {
      background-color: var(--phbet88-dark-background);
      margin-bottom: 15px;
      padding: 25px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-phbet88__promo-icon-container {
        flex-shrink: 0;
        width: 200px; /* Minimum width */
        height: 200px; /* Minimum height */
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        overflow: hidden;
    }
    .page-phbet88__promo-icon-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
        height: auto;
    }

    .page-phbet88__promo-details {
      flex-grow: 1;
    }

    .page-phbet88__promo-title {
      font-size: 1.8em;
      color: var(--phbet88-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-phbet88__promo-description {
      font-size: 1em;
      color: var(--phbet88-text-color);
      margin-bottom: 15px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-phbet88__providers-grid,
    .page-phbet88__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-phbet88__provider-logo-wrapper,
    .page-phbet88__payment-logo-wrapper {
        width: 100%;
        max-width: 200px; /* Max width for the container */
        height: 200px; /* Enforce min height for the container */
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 5px;
        box-sizing: border-box;
        overflow: hidden;
    }
    .page-phbet88__provider-logo,
    .page-phbet88__payment-logo {
        width: 100%; /* Image fills its wrapper */
        height: 100%; /* Image fills its wrapper */
        object-fit: contain; /* Keep aspect ratio, fit inside */
        max-width: 100%; /* Ensure responsiveness */
        max-height: 100%; /* Ensure responsiveness */
    }

    .page-phbet88__faq-section {
      background-color: var(--phbet88-secondary-color);
      padding: 40px;
      margin-bottom: 40px;
      border-radius: 10px;
    }

    .page-phbet88__faq-item {
      background-color: var(--phbet88-dark-background);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box; /* For responsiveness */
    }

    .page-phbet88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--phbet88-dark-background);
      border-bottom: 1px solid var(--phbet88-border-color);
      transition: background-color 0.3s ease;
    }

    .page-phbet88__faq-question:hover {
      background-color: rgba(255, 255, 255, 0.05);
    }

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

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

    .page-phbet88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding, will change on active */
      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(--phbet88-text-color);
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-phbet88__faq-item.active .page-phbet88__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

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

    .page-phbet88__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: calc(100% - 40px); /* Adjust for padding on small screens */
      max-width: 400px; /* Limit width on larger screens */
    }

    .page-phbet88__floating-button {
      flex: 1;
      background-color: var(--phbet88-primary-color);
      color: var(--phbet88-secondary-color);
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-phbet88__floating-button:hover {
      background-color: var(--phbet88-button-hover-color);
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-phbet88 {
        padding: 10px 15px;
        padding-top: var(--header-offset, 122px); /* Fallback for body padding-top */
      }

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

      .page-phbet88__hero-subtitle {
        font-size: 1.2em;
      }

      .page-phbet88__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-phbet88__button {
        width: 100%;
        padding: 12px 20px;
      }

      .page-phbet88__section {
        padding: 25px;
        margin-bottom: 30px;
      }

      .page-phbet88__section-title {
        font-size: 2em;
        margin-bottom: 25px;
      }

      .page-phbet88__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-phbet88__promo-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100% !important; /* List item responsive */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phbet88__promo-icon-container {
        margin-bottom: 15px;
      }

      .page-phbet88__promo-title {
        font-size: 1.5em;
      }

      .page-phbet88__promo-description {
        font-size: 0.9em;
      }

      .page-phbet88__providers-grid,
      .page-phbet88__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Adjust for smaller screens */
        gap: 15px;
      }
      .page-phbet88__provider-logo-wrapper,
      .page-phbet88__payment-logo-wrapper {
          max-width: 150px; /* Smaller on mobile */
          height: 150px; /* Smaller on mobile */
      }

      .page-phbet88__faq-question {
        padding: 15px 20px;
      }

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

      .page-phbet88__faq-answer {
        padding: 0 20px;
      }

      .page-phbet88__faq-item.active .page-phbet88__faq-answer {
        padding: 15px 20px !important;
      }

      .page-phbet88__floating-buttons {
        width: calc(100% - 30px); /* More padding on smaller screens */
        bottom: 15px;
        gap: 10px;
      }
      .page-phbet88__floating-button {
        padding: 10px 15px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
        .page-phbet88__hero-title {
            font-size: 2em;
        }
        .page-phbet88__hero-subtitle {
            font-size: 1em;
        }
        .page-phbet88__section-title {
            font-size: 1.8em;
        }
        .page-phbet88__game-card {
            padding-bottom: 15px;
        }
        .page-phbet88__game-title {
            font-size: 1.3em;
        }
        .page-phbet88__game-description {
            font-size: 0.9em;
        }
        .page-phbet88__promo-title {
            font-size: 1.3em;
        }
        .page-phbet88__promo-description {
            font-size: 0.9em;
        }
    }
  