
    /* Page specific CSS for phbet1 */
    .page-phbet1 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 40px;
    }

    .page-phbet1__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Decorative top spacing, assuming body has padding-top for header */
      box-sizing: border-box;
    }

    .page-phbet1__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-phbet1__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
      z-index: 2;
    }

    .page-phbet1__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-phbet1__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffd700; /* Gold color for branding */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-phbet1__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-phbet1__cta-button {
      display: inline-block;
      background-color: #ffd700; /* Gold color for CTA */
      color: #333;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-phbet1__cta-button:hover {
      background-color: #e0b800;
      transform: translateY(-2px);
    }

    .page-phbet1__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-top: 20px;
    }

    .page-phbet1__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-phbet1__section-subtitle {
      font-size: 1.2em;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
    }

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

    .page-phbet1__card {
      background-color: #f0f0f0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-phbet1__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-phbet1__card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-phbet1__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-phbet1__card:hover .page-phbet1__card-image {
      transform: scale(1.05);
    }

    .page-phbet1__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-phbet1__card-title {
      font-size: 1.5em;
      color: #1a1a1a;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-phbet1__card-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-phbet1__promo-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-phbet1__promo-item {
      background-color: #fdfdfd;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 25px;
      text-align: left;
      flex: 1 1 calc(33% - 40px); /* Three items per row on desktop */
      min-width: 280px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-phbet1__promo-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-phbet1__promo-item h3 {
      font-size: 1.3em;
      color: #222;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-phbet1__promo-item p {
      font-size: 0.9em;
      color: #666;
    }

    .page-phbet1__features-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-phbet1__feature-item {
      background-color: #e6f7ff; /* Light blue background */
      border-left: 5px solid #007bff;
      border-radius: 8px;
      padding: 25px;
      text-align: left;
      flex: 1 1 calc(33% - 40px); /* Three items per row on desktop */
      min-width: 280px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-phbet1__feature-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-phbet1__feature-item h3 {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-phbet1__feature-item p {
      font-size: 0.9em;
      color: #444;
    }

    /* FAQ Section Styles */
    .page-phbet1__faq-container {
      margin-top: 40px;
      border-top: 1px solid #eee;
      padding-top: 20px;
    }

    .page-phbet1__faq-item {
      background-color: #fdfdfd;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-phbet1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
    }

    .page-phbet1__faq-question:hover {
      background-color: #e5e5e5;
    }

    .page-phbet1__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-phbet1__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      color: #555;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
    }

    .page-phbet1__faq-item.active .page-phbet1__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, or just rotate */
      content: '−'; /* Visually changes to minus, actual text updated by JS */
    }

    .page-phbet1__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.4s ease;
      background-color: #fff;
      color: #666;
    }

    .page-phbet1__faq-item.active .page-phbet1__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px 20px !important;
      opacity: 1;
    }

    .page-phbet1__faq-answer p {
      margin-bottom: 10px;
      font-size: 0.95em;
    }

    .page-phbet1__payment-providers,
    .page-phbet1__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-phbet1__provider-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 15px 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      font-weight: bold;
      color: #444;
      text-align: center;
      min-width: 120px;
      box-sizing: border-box;
      transition: transform 0.2s ease;
    }

    .page-phbet1__provider-item:hover {
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-phbet1__hero-title {
        font-size: 3em;
      }
      .page-phbet1__hero-subtitle {
        font-size: 1.3em;
      }
      .page-phbet1__section-title {
        font-size: 2em;
      }
      .page-phbet1__promo-item,
      .page-phbet1__feature-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row on tablets */
      }
    }

    @media (max-width: 768px) {
      .page-phbet1__hero-section {
        height: 50vh;
      }
      .page-phbet1__hero-title {
        font-size: 2.5em;
      }
      .page-phbet1__hero-subtitle {
        font-size: 1.1em;
      }
      .page-phbet1__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-phbet1__section {
        padding: 30px 15px;
        margin-top: 15px;
      }
      .page-phbet1__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
      .page-phbet1__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }
      .page-phbet1__grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
      }
      .page-phbet1__card-image-wrapper {
        height: 180px;
      }
      .page-phbet1__card-title {
        font-size: 1.3em;
      }
      .page-phbet1__card-description {
        font-size: 0.9em;
      }
      .page-phbet1__promo-item,
      .page-phbet1__feature-item {
        flex: 1 1 100%; /* Single item per row on mobile */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }
      .page-phbet1__promo-list,
      .page-phbet1__features-list,
      .page-phbet1__payment-providers,
      .page-phbet1__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;
      }
      .page-phbet1__promo-item p,
      .page-phbet1__feature-item p,
      .page-phbet1__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-phbet1__faq-question {
        padding: 15px 15px;
      }
      .page-phbet1__faq-question h3 {
        font-size: 1em;
      }
      .page-phbet1__faq-answer {
        padding: 0 15px;
      }
      .page-phbet1__faq-item.active .page-phbet1__faq-answer {
        padding: 15px 15px !important;
      }
      .page-phbet1__provider-item {
        min-width: unset;
        width: calc(50% - 10px); /* Two items per row */
        padding: 12px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-phbet1__hero-title {
        font-size: 2em;
      }
      .page-phbet1__hero-subtitle {
        font-size: 0.9em;
      }
      .page-phbet1__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-phbet1__section-title {
        font-size: 1.5em;
      }
      .page-phbet1__provider-item {
        width: 100%; /* Single item per row */
      }
    }
  