
    /* Global styles for this page only, using BEM */
    .page-ph7777 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a1a; /* Dark background for casino theme */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for sticky login button */
    }

    .page-ph7777__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Fixed header padding */
    .page-ph7777__hero-section,
    .page-ph7777__main-content {
        padding-top: 120px; /* Desktop fixed header height */
    }

    .page-ph7777__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-ph7777__section--dark {
      background-color: #222222;
    }

    .page-ph7777__section--highlight {
      background-color: #0e301d; /* A darker green for accent */
    }

    .page-ph7777__heading-primary {
      font-size: 2.8em;
      color: #ffd700; /* Gold for main headings */
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-ph7777__heading-secondary {
      font-size: 2.2em;
      color: #ffffff;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-ph7777__heading-tertiary {
      font-size: 1.6em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-ph7777__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #cccccc;
    }

    .page-ph7777__button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for CTAs */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-ph7777__button--sticky {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: calc(100% - 40px);
      max-width: 350px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }

    .page-ph7777__hero-section {
      background-color: #111111;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 40px 15px;
      min-height: 400px; /* Ensure hero section has a minimum height */
    }

    .page-ph7777__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    }

    .page-ph7777__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin-top: 20px; /* Space between image and text */
    }

    .page-ph7777__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-ph7777__game-card {
      background-color: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      text-decoration: none;
      color: inherit;
    }

    .page-ph7777__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

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

    .page-ph7777__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-bottom: 2px solid #333;
    }

    .page-ph7777__game-info {
      padding: 20px;
    }

    .page-ph7777__game-title {
      font-size: 1.4em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-ph7777__game-description {
      font-size: 0.95em;
      color: #bbbbbb;
    }

    .page-ph7777__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-ph7777__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        background-color: #333333;
        padding: 15px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease;
    }

    .page-ph7777__provider-logo-wrapper:hover {
        transform: translateY(-3px);
    }

    .page-ph7777__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      /* Ensure no filters are applied to change color */
      filter: grayscale(0%); /* Explicitly state no grayscale */
    }

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

    .page-ph7777__feature-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      min-width: 280px;
      text-align: center;
    }

    .page-ph7777__feature-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-ph7777__feature-description {
      color: #cccccc;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-ph7777__faq-list {
      margin-top: 40px;
      text-align: left;
    }

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

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

    .page-ph7777__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-ph7777__faq-question:hover {
      background-color: #444444;
    }

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

    .page-ph7777__faq-item.active .page-ph7777__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-ph7777__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      background-color: #222222;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ph7777__hero-section,
      .page-ph7777__main-content {
          padding-top: 100px; /* Mobile fixed header height */
      }

      .page-ph7777__heading-primary {
        font-size: 2em;
      }

      .page-ph7777__heading-secondary {
        font-size: 1.8em;
      }

      .page-ph7777__section {
        padding: 40px 0;
      }

      .page-ph7777__game-grid,
      .page-ph7777__provider-grid {
        grid-template-columns: 1fr;
      }

      .page-ph7777__feature-item {
        flex: 1 1 100%;
        min-width: unset;
      }

      .page-ph7777__button--sticky {
        width: calc(100% - 30px);
        padding: 12px 20px;
        font-size: 1.1em;
      }

      .page-ph7777__game-image-wrapper img,
      .page-ph7777__provider-logo-wrapper img,
      .page-ph7777__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ph7777__game-image-wrapper,
      .page-ph7777__provider-logo-wrapper,
      .page-ph7777__hero-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  