
    /* General styles for the page, scoped to page-phbet-25 */
    .page-phbet-25 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Space above footer */
    }

    .page-phbet-25__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Hero Section */
    .page-phbet-25__hero-section {
      position: relative;
      background-color: #0d1a26; /* Dark background for contrast */
      color: #fff;
      text-align: center;
      padding: 10px 0 60px; /* Reduced top padding as body handles header offset */
      overflow: hidden;
    }

    .page-phbet-25__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)); /* Overlay for text readability */
      z-index: 1;
    }

    .page-phbet-25__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .page-phbet-25__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .page-phbet-25__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-phbet-25__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-phbet-25__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-phbet-25__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-phbet-25__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-phbet-25__section:nth-of-type(even) {
      background-color: #eef4f8;
    }

    .page-phbet-25__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    /* Promotions Grid */
    .page-phbet-25__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-phbet-25__promotion-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-phbet-25__promotion-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-phbet-25__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .page-phbet-25__promotion-title {
      font-size: 1.8em;
      color: #1a1a1a;
      margin-bottom: 15px;
    }

    .page-phbet-25__promotion-description {
      color: #555;
      margin-bottom: 20px;
      flex-grow: 1; /* Allow description to take available space */
    }

    .page-phbet-25__promotion-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 10px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none; /* Ensure it's a button style without link behavior */
      cursor: pointer;
    }

    .page-phbet-25__promotion-button:hover {
      background-color: #0056b3;
    }

    /* Steps List */
    .page-phbet-25__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .page-phbet-25__step-item {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: center;
      flex: 1;
      min-width: 280px;
      max-width: 380px;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-phbet-25__step-number {
      font-size: 2.5em;
      color: #ffcc00;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-phbet-25__step-title {
      font-size: 1.5em;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .page-phbet-25__step-description {
      color: #555;
    }

    /* Games Grid */
    .page-phbet-25__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-phbet-25__game-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-phbet-25__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .page-phbet-25__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-phbet-25__game-info {
      padding: 20px;
      text-align: left;
    }

    .page-phbet-25__game-title {
      font-size: 1.4em;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .page-phbet-25__game-provider {
      font-size: 0.9em;
      color: #777;
    }

    /* General Text */
    .page-phbet-25__text-content {
      max-width: 800px;
      margin: 0 auto 40px;
      text-align: left;
      color: #444;
    }

    .page-phbet-25__text-content p {
      margin-bottom: 1em;
    }

    /* FAQ Section */
    .page-phbet-25__faq-section {
      background-color: #f0f5f9;
      padding: 60px 0;
      text-align: center;
    }

    .page-phbet-25__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-phbet-25__faq-item {
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-phbet-25__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #0d1a26;
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-phbet-25__faq-question:hover {
      background-color: #1a2b3c;
    }

    .page-phbet-25__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      flex-grow: 1;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-phbet-25__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      margin-left: 15px;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-phbet-25__faq-item.active .page-phbet-25__faq-toggle {
      transform: rotate(45deg); /* Plus to X effect */
    }

    .page-phbet-25__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #333;
    }

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

    .page-phbet-25__faq-answer p {
      margin-bottom: 1em;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-phbet-25__hero-title {
        font-size: 2.2em;
      }

      .page-phbet-25__hero-subtitle {
        font-size: 1.2em;
      }

      .page-phbet-25__section-title {
        font-size: 2em;
      }

      .page-phbet-25__promotions-grid,
      .page-phbet-25__games-grid {
        grid-template-columns: 1fr;
      }

      .page-phbet-25__steps-list {
        flex-direction: column;
        align-items: center;
      }

      .page-phbet-25__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding for smaller screens */
      }

      .page-phbet-25__promotion-card,
      .page-phbet-25__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-phbet-25__promotion-image,
      .page-phbet-25__game-image {
        max-width: 100% !important;
        height: auto !important; /* Maintain aspect ratio */
        box-sizing: border-box !important;
      }

      .page-phbet-25__faq-question {
        padding: 15px 20px;
      }

      .page-phbet-25__faq-question h3 {
        font-size: 1.1em;
      }

      .page-phbet-25__faq-answer {
        padding: 0 20px;
      }

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

    /* Ensure text wrapping for all text elements */
    .page-phbet-25 p,
    .page-phbet-25 h1,
    .page-phbet-25 h2,
    .page-phbet-25 h3,
    .page-phbet-25 h4,
    .page-phbet-25 li,
    .page-phbet-25 button,
    .page-phbet-25 span {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }
  