
    /* CSS for page-phbet-22 */
    :root {
      --phbet-22-primary-color: #f7b32b; /* A vibrant gold/orange */
      --phbet-22-secondary-color: #333;
      --phbet-22-background-dark: #1a1a1a;
      --phbet-22-background-light: #f4f4f4;
      --phbet-22-text-color-light: #fff;
      --phbet-22-text-color-dark: #333;
      --phbet-22-border-radius: 8px;
      --phbet-22-spacing-md: 20px;
      --phbet-22-spacing-lg: 40px;
    }

    .page-phbet-22 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--phbet-22-text-color-dark);
      background-color: var(--phbet-22-background-light);
    }

    .page-phbet-22__hero-section {
      position: relative;
      padding: 10px 0 var(--phbet-22-spacing-lg) 0; /* Adjusted padding-top for fixed header */
      text-align: center;
      color: var(--phbet-22-text-color-light);
      overflow: hidden;
      background-color: var(--phbet-22-background-dark);
    }

    .page-phbet-22__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.5); /* Allowed for background darkening, not color change */
    }

    .page-phbet-22__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: var(--phbet-22-spacing-lg) var(--phbet-22-spacing-md);
    }

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

    .page-phbet-22__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: var(--phbet-22-spacing-md);
      color: #eee;
    }

    .page-phbet-22__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--phbet-22-primary-color);
      color: var(--phbet-22-background-dark);
      border: none;
      border-radius: var(--phbet-22-border-radius);
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure no underline if used with <a> for external links */
    }

    .page-phbet-22__button:hover {
      background-color: #e0a324;
      transform: translateY(-2px);
    }

    .page-phbet-22__section {
      padding: var(--phbet-22-spacing-lg) var(--phbet-22-spacing-md);
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-phbet-22__section--dark {
      background-color: var(--phbet-22-background-dark);
      color: var(--phbet-22-text-color-light);
    }

    .page-phbet-22__section-title {
      font-size: 2.2em;
      margin-bottom: var(--phbet-22-spacing-md);
      color: var(--phbet-22-primary-color);
    }

    .page-phbet-22__section-subtitle {
      font-size: 1.2em;
      margin-bottom: var(--phbet-22-spacing-lg);
      color: #ccc;
    }

    .page-phbet-22__text-content {
      text-align: left;
      margin-bottom: var(--phbet-22-spacing-md);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-phbet-22__text-content p {
      margin-bottom: 1em;
      color: var(--phbet-22-text-color-dark);
    }

    .page-phbet-22__section--dark .page-phbet-22__text-content p {
      color: var(--phbet-22-text-color-light);
    }

    .page-phbet-22__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--phbet-22-spacing-md);
      margin-top: var(--phbet-22-spacing-lg);
    }

    .page-phbet-22__feature-card {
      background-color: #fff;
      padding: var(--phbet-22-spacing-md);
      border-radius: var(--phbet-22-border-radius);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-phbet-22__section--dark .page-phbet-22__feature-card {
      background-color: #2a2a2a;
      color: var(--phbet-22-text-color-light);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-phbet-22__feature-icon {
      width: 200px; /* Minimum 200px as per requirements */
      height: 200px;
      object-fit: contain; /* Ensure full image is visible */
      margin-bottom: 15px;
    }
    .page-phbet-22__feature-card h3 {
      color: var(--phbet-22-primary-color);
      margin-bottom: 10px;
      font-size: 1.4em;
    }

    .page-phbet-22__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--phbet-22-spacing-md);
      margin-top: var(--phbet-22-spacing-lg);
    }

    .page-phbet-22__product-card {
      background-color: #fff;
      border-radius: var(--phbet-22-border-radius);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-phbet-22__section--dark .page-phbet-22__product-card {
      background-color: #2a2a2a;
      color: var(--phbet-22-text-color-light);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-phbet-22__product-image {
      width: 100%;
      height: 200px; /* Minimum 200px height */
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-phbet-22__product-content {
      padding: 15px;
    }

    .page-phbet-22__product-content h3 {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--phbet-22-primary-color);
    }

    .page-phbet-22__product-content p {
      font-size: 0.95em;
      color: #666;
    }
    .page-phbet-22__section--dark .page-phbet-22__product-content p {
      color: #bbb;
    }

    .page-phbet-22__section-image {
      width: 100%;
      max-width: 1000px;
      height: auto;
      object-fit: cover;
      border-radius: var(--phbet-22-border-radius);
      margin-top: var(--phbet-22-spacing-md);
    }

    /* Floating Register/Login Buttons */
    .page-phbet-22__floating-buttons {
      position: fixed;
      bottom: var(--phbet-22-spacing-md);
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      display: flex;
      gap: 15px;
    }

    .page-phbet-22__floating-button {
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.05em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-phbet-22__floating-button--register {
      background-color: var(--phbet-22-primary-color);
      color: var(--phbet-22-background-dark);
    }

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

    .page-phbet-22__floating-button--login {
      background-color: #fff;
      color: var(--phbet-22-background-dark);
    }

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

    /* FAQ Section */
    .page-phbet-22__faq-section {
      background-color: var(--phbet-22-background-dark);
      color: var(--phbet-22-text-color-light);
      padding: var(--phbet-22-spacing-lg) var(--phbet-22-spacing-md);
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-phbet-22__faq-title {
      font-size: 2.2em;
      margin-bottom: var(--phbet-22-spacing-md);
      color: var(--phbet-22-primary-color);
    }

    .page-phbet-22__faq-list {
      margin-top: var(--phbet-22-spacing-lg);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-phbet-22__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      border-radius: var(--phbet-22-border-radius);
      overflow: hidden;
    }

    .page-phbet-22__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      color: var(--phbet-22-primary-color);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-phbet-22__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-phbet-22__faq-question h3 {
      margin: 0;
      color: var(--phbet-22-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-phbet-22__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

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

    .page-phbet-22__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #ccc;
    }

    .page-phbet-22__faq-item.active .page-phbet-22__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }
    
    .page-phbet-22__faq-answer p {
      margin-bottom: 1em;
      color: #ccc;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-phbet-22__hero-title {
        font-size: 2em;
      }

      .page-phbet-22__hero-subtitle {
        font-size: 1.1em;
      }

      .page-phbet-22__section-title {
        font-size: 1.8em;
      }

      .page-phbet-22__section-subtitle {
        font-size: 1em;
      }

      .page-phbet-22__features-grid,
      .page-phbet-22__product-grid {
        grid-template-columns: 1fr;
      }

      .page-phbet-22__floating-buttons {
        flex-direction: column;
        bottom: 10px;
        gap: 10px;
        max-width: calc(100% - 40px); /* Account for section padding */
      }

      .page-phbet-22__floating-button {
        width: 100%;
        text-align: center;
        max-width: 250px;
      }

      /* List item responsive requirements */
      .page-phbet-22__features-grid .page-phbet-22__feature-card,
      .page-phbet-22__product-grid .page-phbet-22__product-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-phbet-22__features-grid,
      .page-phbet-22__product-grid,
      .page-phbet-22__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phbet-22__feature-card p,
      .page-phbet-22__product-content p,
      .page-phbet-22__text-content p,
      .page-phbet-22__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-phbet-22__faq-question,
      .page-phbet-22__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }
    }

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

    .page-phbet-22__product-image {
      max-width: 100% !important;
      height: auto !important; /* Allow height to adjust */
      object-fit: cover !important;
    }
    
  