
    /* Base styles for the page */
    .page-phbet-official-website-2 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      overflow-x: hidden;
      /* padding-top is handled by shared.css on the body element */
    }

    /* Floating Register/Login Buttons */
    .page-phbet-official-website-2__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 380px;
      box-sizing: border-box;
    }

    .page-phbet-official-website-2__floating-button {
      flex: 1;
      padding: 12px 10px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      word-break: break-word; /* Ensure text breaks within button */
      white-space: normal; /* Allow text to wrap */
    }

    .page-phbet-official-website-2__floating-button--register {
      background-color: #ffcc00; /* Vibrant yellow */
      color: #333;
    }

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

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

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

    /* General Layout */
    .page-phbet-official-website-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-phbet-official-website-2__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-phbet-official-website-2__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,phbet,games,neon]') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 100px 20px 80px; /* Base padding, assuming body handles header offset */
      border-radius: 0;
      margin-bottom: 0;
      position: relative;
      overflow: hidden;
    }
    
    .page-phbet-official-website-2__hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6); /* Dark overlay */
        z-index: 1;
    }

    .page-phbet-official-website-2__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-phbet-official-website-2__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #ffcc00; /* Yellow for prominence */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      word-break: break-word;
    }

    .page-phbet-official-website-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-break: break-word;
    }

    .page-phbet-official-website-2__cta-button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      word-break: break-word;
      white-space: normal;
    }

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

    /* Headings */
    .page-phbet-official-website-2__section-title {
      font-size: 2.2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 25px;
      padding-bottom: 10px;
      position: relative;
      word-break: break-word;
    }

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

    .page-phbet-official-website-2__sub-title {
      font-size: 1.8em;
      color: #333;
      margin-top: 20px;
      margin-bottom: 15px;
      word-break: break-word;
    }

    /* Text elements */
    .page-phbet-official-website-2__text-content p {
      margin-bottom: 15px;
      font-size: 1.05em;
      color: #555;
      word-break: break-word;
    }

    /* Product Grid */
    .page-phbet-official-website-2__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-phbet-official-website-2__product-card {
      background-color: #fdfdfd;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-phbet-official-website-2__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-phbet-official-website-2__product-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-phbet-official-website-2__product-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-phbet-official-website-2__product-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
      word-break: break-word; /* Ensure title breaks */
    }

    .page-phbet-official-website-2__product-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
      word-break: break-word;
    }

    /* List styles */
    .page-phbet-official-website-2__feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-phbet-official-website-2__feature-item {
      background-color: #e9f5ff;
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 5px;
      font-size: 1.05em;
      color: #333;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-phbet-official-website-2__payment-methods,
    .page-phbet-official-website-2__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-phbet-official-website-2__method-item,
    .page-phbet-official-website-2__provider-item {
      background-color: #f0f0f0;
      padding: 10px 20px;
      border-radius: 20px;
      font-weight: bold;
      color: #555;
      font-size: 0.95em;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-phbet-official-website-2__faq-section {
      margin-top: 40px;
    }

    .page-phbet-official-website-2__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-phbet-official-website-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #fff;
      cursor: pointer;
      user-select: none;
      font-size: 1.15em;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-phbet-official-website-2__faq-question:hover {
      background-color: #f0f0f0;
    }
    
    .page-phbet-official-website-2__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
        color: #007bff;
        word-break: break-word;
    }

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

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

    .page-phbet-official-website-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      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: 1.0em;
      background-color: #e9f5ff;
      border-top: 1px solid #ddd;
    }

    .page-phbet-official-website-2__faq-item.active .page-phbet-official-website-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-phbet-official-website-2__faq-answer p {
      margin-bottom: 0; /* Remove default paragraph margin */
      word-break: break-word;
    }

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

      .page-phbet-official-website-2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-phbet-official-website-2__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-phbet-official-website-2__section-title {
        font-size: 1.8em;
      }

      .page-phbet-official-website-2__sub-title {
        font-size: 1.5em;
      }

      .page-phbet-official-website-2__container {
        padding: 15px;
      }

      .page-phbet-official-website-2__section {
        padding: 20px;
      }

      .page-phbet-official-website-2__product-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
      }

      .page-phbet-official-website-2__product-image {
        height: 180px;
      }

      .page-phbet-official-website-2__feature-list {
        grid-template-columns: 1fr; /* Single column for mobile */
      }
      
      /* Mobile specific list item styles */
      .page-phbet-official-website-2__feature-item,
      .page-phbet-official-website-2__method-item,
      .page-phbet-official-website-2__provider-item {
        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 smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        text-align: center;
      }

      .page-phbet-official-website-2__feature-list,
      .page-phbet-official-website-2__payment-methods,
      .page-phbet-official-website-2__game-providers {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-phbet-official-website-2__faq-question {
        font-size: 1.05em;
        padding: 12px 15px;
      }

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

      .page-phbet-official-website-2__floating-buttons {
        gap: 10px;
        bottom: 15px;
        width: calc(100% - 30px); /* Account for page padding */
      }

      .page-phbet-official-website-2__floating-button {
        font-size: 1em;
        padding: 10px 8px;
      }
    }

    @media (max-width: 480px) {
      .page-phbet-official-website-2__hero-section {
        padding: 80px 15px 60px;
      }
      .page-phbet-official-website-2__hero-title {
        font-size: 1.8em;
      }
      .page-phbet-official-website-2__hero-subtitle {
        font-size: 1em;
      }
      .page-phbet-official-website-2__floating-buttons {
        max-width: 95%;
      }
    }
  