
    /* Base styles for the page-ph78 scope */
    .page-ph78 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-ph78__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-ph78__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-ph78__section--dark {
      background-color: #0f0f1d;
    }

    .page-ph78__section-title {
      font-size: 2.5em;
      color: #ffe066; /* Gold/yellow accent */
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-ph78__section-subtitle {
      font-size: 1.2em;
      color: #cccccc;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-ph78__hero-section {
      position: relative;
      padding-top: 120px; /* For fixed header */
      text-align: center;
      background-color: #1a1a2e; /* Ensure background matches */
    }

    .page-ph78__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-ph78__hero-content {
      padding: 30px 15px;
      background: linear-gradient(180deg, rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 1));
      margin-top: -50px; /* Overlap slightly with image */
      position: relative;
      z-index: 1;
      border-radius: 0 0 8px 8px;
    }

    .page-ph78__hero-title {
      font-size: 3em;
      color: #fff;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ph78__hero-description {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 30px;
    }

    .page-ph78__button {
      display: inline-block;
      background-color: #ff4d4d; /* Red accent */
      color: #fff;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-ph78__button:hover {
      background-color: #ff7070;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-ph78__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: none; /* Hidden by default, shown on mobile */
    }

    .page-ph78__floating-login-button {
      background-color: #00b300; /* Green for login/promo */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      animation: page-ph78__pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-ph78__floating-login-button:hover {
      background-color: #00e600;
      animation: none;
    }

    @keyframes page-ph78__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* About Section */
    .page-ph78__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      text-align: left;
      gap: 30px;
      padding: 20px;
    }

    .page-ph78__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-ph78__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-ph78__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-ph78__about-text p {
      margin-bottom: 15px;
      color: #e0e0e0;
    }

    .page-ph78__about-text strong {
      color: #ffe066;
    }

    /* Game Categories Section */
    .page-ph78__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 20px;
    }

    .page-ph78__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-ph78__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-ph78__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-ph78__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistent card appearance */
      object-fit: cover;
      display: block;
    }

    .page-ph78__game-card-content {
      padding: 20px;
    }

    .page-ph78__game-card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-ph78__game-card-title a {
      color: #ffe066;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-ph78__game-card-title a:hover {
      color: #fff;
    }

    .page-ph78__game-card-description {
      font-size: 0.95em;
      color: #b0b0b0;
      margin-bottom: 20px;
    }

    /* Game Providers Section */
    .page-ph78__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller for logos */
      gap: 20px;
      padding: 20px;
      justify-items: center;
    }

    .page-ph78__provider-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      width: 100%; /* Ensure it takes full grid column width */
      max-width: 200px; /* Limit individual logo size */
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      height: 100px; /* Fixed height for logos */
    }

    .page-ph78__provider-item:hover {
      transform: translateY(-5px);
    }

    .page-ph78__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Adjust based on desired logo size */
      height: auto;
      display: block;
    }

    /* Registration/Login Section */
    .page-ph78__registration-section .page-ph78__button {
      margin: 10px;
    }

    /* App Download Section */
    .page-ph78__app-download-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 40px;
      padding: 20px;
    }

    .page-ph78__app-qr-code-wrapper {
      background-color: #2a2a4a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-ph78__app-qr-code {
      width: 200px;
      height: 200px;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 15px auto;
    }

    .page-ph78__app-download-links {
      text-align: left;
    }

    .page-ph78__app-download-links h3 {
      color: #ffe066;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-ph78__app-download-links p {
      color: #e0e0e0;
      margin-bottom: 20px;
      max-width: 400px;
    }

    .page-ph78__app-download-button {
      display: block;
      background-color: #007bff; /* Blue for app download */
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 15px;
      transition: background-color 0.3s ease;
      text-align: center;
    }

    .page-ph78__app-download-button:hover {
      background-color: #0056b3;
    }

    /* Payment Methods Section */
    .page-ph78__payment-methods-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .page-ph78__payment-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      padding: 15px 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 10px;
      color: #e0e0e0;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-ph78__payment-icon {
      width: 40px; /* Display size, source image must be >= 200px */
      height: 40px; /* Display size, source image must be >= 200px */
      object-fit: contain;
    }

    /* FAQ Section */
    .page-ph78__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
      padding: 20px;
    }

    .page-ph78__faq-item {
      background-color: #2a2a4a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .page-ph78__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #3a3a5a;
      color: #ffe066;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-ph78__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: #ffe066; /* Ensure h3 color is consistent */
    }

    .page-ph78__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-ph78__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-ph78__faq-item.active .page-ph78__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar on expand */
    }

    .page-ph78__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-ph78__faq-item.active .page-ph78__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 15px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-ph78__faq-answer p {
      margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-ph78__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }

      .page-ph78__hero-title {
        font-size: 2.2em;
      }

      .page-ph78__hero-description {
        font-size: 1em;
      }

      .page-ph78__section-title {
        font-size: 2em;
      }

      .page-ph78__about-content {
        flex-direction: column;
        text-align: center;
      }

      .page-ph78__about-image-wrapper {
        order: -1; /* Image above text on mobile */
      }

      .page-ph78__game-categories {
        grid-template-columns: 1fr;
      }

      .page-ph78__app-download-content {
        flex-direction: column;
      }

      .page-ph78__app-download-links {
        text-align: center;
      }

      .page-ph78__app-download-button {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
      }

      .page-ph78__floating-login {
        display: block; /* Show floating button on mobile */
      }
      
      /* Ensure images are responsive on mobile */
      .page-ph78__hero-image,
      .page-ph78__about-image,
      .page-ph78__game-card-image,
      .page-ph78__provider-logo,
      .page-ph78__app-qr-code,
      .page-ph78__payment-icon {
          max-width: 100% !important;
          height: auto !important;
      }

      .page-ph78__game-card-image-wrapper,
      .page-ph78__about-image-wrapper,
      .page-ph78__app-qr-code-wrapper,
      .page-ph78__provider-item,
      .page-ph78__payment-item {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  