
    /* Base styles for the page */
    .page-phbet-38-com-login-2 {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Dark background */
      color: #e0e0e0; /* Light text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed floating buttons */
      /* Fallback for header offset if shared.css doesn't provide body padding-top */
      padding-top: var(--header-offset, 122px);
    }

    /* General section styling */
    .page-phbet-38-com-login-2__section-title {
      font-size: 2.2em;
      color: #e94560; /* Accent color */
      text-align: center;
      margin-bottom: 20px;
      padding: 0 15px;
      word-wrap: break-word; /* Ensure long titles wrap */
      overflow-wrap: break-word;
    }

    .page-phbet-38-com-login-2__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Hero Section */
    .page-phbet-38-com-login-2__hero-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 500px;
      padding: 10px 20px 40px; /* 10px top padding for header offset consideration */
      overflow: hidden;
      background-color: #0f0f1d; /* Slightly darker for hero */
    }

    .page-phbet-38-com-login-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-phbet-38-com-login-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for readability */
      border-radius: 10px;
      margin-top: 20px; /* Adjusted margin to avoid overlap with header */
    }

    .page-phbet-38-com-login-2__hero-title {
      font-size: 2.8em;
      color: #e94560;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-phbet-38-com-login-2__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-phbet-38-com-login-2__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-phbet-38-com-login-2__hero-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      font-size: 1.1em;
      min-width: 150px; /* Ensure buttons have a minimum width */
      box-sizing: border-box;
      text-align: center;
    }

    .page-phbet-38-com-login-2__hero-button--primary {
      background-color: #e94560;
      color: #fff;
    }

    .page-phbet-38-com-login-2__hero-button--primary:hover {
      background-color: #ff7e8c;
      transform: translateY(-2px);
    }

    .page-phbet-38-com-login-2__hero-button--secondary {
      background-color: transparent;
      border: 2px solid #e94560;
      color: #e94560;
    }

    .page-phbet-38-com-login-2__hero-button--secondary:hover {
      background-color: #e94560;
      color: #fff;
      transform: translateY(-2px);
    }

    /* Features Section */
    .page-phbet-38-com-login-2__features-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
      text-align: center;
    }

    .page-phbet-38-com-login-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-phbet-38-com-login-2__feature-item {
      background-color: #272740;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-phbet-38-com-login-2__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-phbet-38-com-login-2__feature-icon {
      width: 100px; /* Display size, actual image from gallery will be larger */
      height: 100px;
      margin: 0 auto 20px;
      object-fit: contain;
      max-width: 100%;
      box-sizing: border-box;
      display: block; /* Center image */
    }

    .page-phbet-38-com-login-2__feature-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-phbet-38-com-login-2__feature-description {
      font-size: 1em;
      color: #c0c0c0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Game Providers Section */
    .page-phbet-38-com-login-2__game-providers {
      padding: 60px 20px;
      background-color: #1a1a2e;
      text-align: center;
    }

    .page-phbet-38-com-login-2__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-phbet-38-com-login-2__provider-item {
      background-color: #272740;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
      box-sizing: border-box;
    }

    .page-phbet-38-com-login-2__provider-logo {
      width: 150px; /* Display size, actual image from gallery will be larger */
      height: auto;
      max-height: 80px;
      object-fit: contain;
      margin: 0 auto 10px;
      max-width: 100%;
      box-sizing: border-box;
      display: block; /* Center image */
    }

    .page-phbet-38-com-login-2__provider-name {
      font-size: 1.1em;
      color: #e0e0e0;
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-phbet-38-com-login-2__faq-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-phbet-38-com-login-2__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-phbet-38-com-login-2__faq-item {
      background-color: #272740;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
      box-sizing: border-box;
    }

    .page-phbet-38-com-login-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333350;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-phbet-38-com-login-2__faq-question:hover {
      background-color: #3f3f60;
    }

    .page-phbet-38-com-login-2__faq-title {
      font-size: 1.3em;
      color: #e94560;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex-grow: 1; /* Allow title to take available space */
      padding-right: 10px; /* Space between title and toggle */
    }

    .page-phbet-38-com-login-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #e0e0e0;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      min-width: 20px; /* Ensure toggle icon has space */
      text-align: right;
    }

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

    .page-phbet-38-com-login-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding for consistency with question */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

    .page-phbet-38-com-login-2__faq-item.active .page-phbet-38-com-login-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px 25px !important; /* Adjusted padding for consistency */
      opacity: 1;
    }

    .page-phbet-38-com-login-2__faq-answer p {
      margin: 0;
      color: #c0c0c0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Final CTA Section */
    .page-phbet-38-com-login-2__final-cta {
      padding: 60px 20px;
      text-align: center;
      background-color: #0f0f1d;
    }

    .page-phbet-38-com-login-2__final-cta-button {
      display: inline-block;
      padding: 18px 40px;
      background-color: #e94560;
      color: #fff;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 30px;
      box-sizing: border-box;
    }

    .page-phbet-38-com-login-2__final-cta-button:hover {
      background-color: #ff7e8c;
      transform: translateY(-3px);
    }

    /* Floating Login/Register Buttons */
    .page-phbet-38-com-login-2__floating-actions {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(26, 26, 46, 0.9); /* Semi-transparent background */
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      flex-wrap: wrap;
      justify-content: center;
      max-width: calc(100% - 40px); /* Prevent overflow on very small screens */
      box-sizing: border-box;
    }

    .page-phbet-38-com-login-2__floating-button {
      display: block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      text-align: center;
      white-space: nowrap; /* Prevent text from wrapping inside buttons */
      box-sizing: border-box;
    }

    .page-phbet-38-com-login-2__floating-button--login {
      background-color: #e94560;
      color: #fff;
    }

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

    .page-phbet-38-com-login-2__floating-button--register {
      background-color: transparent;
      border: 2px solid #e94560;
      color: #e94560;
    }

    .page-phbet-38-com-login-2__floating-button--register:hover {
      background-color: #e94560;
      color: #fff;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-phbet-38-com-login-2__hero-section {
        flex-direction: row;
        text-align: left;
        padding-top: 10px; /* Adjusted padding-top for larger screens */
      }

      .page-phbet-38-com-login-2__hero-content {
        text-align: left;
        padding-left: 50px; /* More space on larger screens */
      }

      .page-phbet-38-com-login-2__hero-image {
        opacity: 0.2; /* Slightly less opaque on desktop */
      }

      .page-phbet-38-com-login-2__hero-title {
        font-size: 3.5em;
      }

      .page-phbet-38-com-login-2__hero-subtitle {
        font-size: 1.3em;
      }

      .page-phbet-38-com-login-2__hero-buttons {
        justify-content: flex-start;
      }

      .page-phbet-38-com-login-2__section-title {
        font-size: 2.8em;
      }

      .page-phbet-38-com-login-2__floating-actions {
        bottom: 30px;
        right: 30px;
        left: auto;
        transform: none;
      }
    }

    /* Mobile-specific list item and image responsive rules */
    @media (max-width: 768px) {
      /* Ensure images are responsive */
      .page-phbet-38-com-login-2__hero-image,
      .page-phbet-38-com-login-2__feature-icon,
      .page-phbet-38-com-login-2__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List item (feature-item, provider-item) responsiveness */
      .page-phbet-38-com-login-2__features-grid,
      .page-phbet-38-com-login-2__providers-grid {
        grid-template-columns: 1fr !important; /* Single column for lists on mobile */
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-phbet-38-com-login-2__feature-item,
      .page-phbet-38-com-login-2__provider-item,
      .page-phbet-38-com-login-2__faq-item {
        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-phbet-38-com-login-2__faq-question {
        padding: 15px 20px !important;
      }

      .page-phbet-38-com-login-2__faq-title {
        font-size: 1.1em !important;
      }

      .page-phbet-38-com-login-2__faq-answer {
        padding: 15px 20px !important;
      }

      .page-phbet-38-com-login-2__hero-title {
        font-size: 2.2em;
      }

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

      .page-phbet-38-com-login-2__hero-button {
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-phbet-38-com-login-2__section-title {
        font-size: 1.8em;
      }

      .page-phbet-38-com-login-2__section-description {
        font-size: 0.95em;
      }
    }
  