
    /* Base styles for the page */
    .page-ph777link {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 50px; /* Ensure space above footer */
    }

    /* Fixed Navigation Spacing */
    .page-ph777link__hero-section {
      padding-top: 120px; /* Desktop spacing for fixed header */
      text-align: center;
      position: relative;
      overflow: hidden;
      background-color: #2a2a2a;
    }

    .page-ph777link__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover; /* Ensure image covers space without distortion */
      width: 100%; /* Important for responsive image container */
      max-height: 500px; /* Limit hero image height */
    }

    .page-ph777link__hero-content {
      position: absolute;
      bottom: 0; /* Position content at the bottom of the hero */
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0)); /* Gradient for text readability */
      color: #ffffff;
    }

    .page-ph777link__hero-content h1 {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fdd835; /* Gold/yellow for highlights */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-ph777link__hero-content p {
      font-size: 1.2em;
      margin-bottom: 25px;
    }

    .page-ph777link__button {
      display: inline-block;
      background-color: #fdd835;
      color: #1a1a1a;
      padding: 12px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-ph777link__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-ph777link__section h2 {
      font-size: 2.2em;
      color: #fdd835;
      margin-bottom: 30px;
      border-bottom: 2px solid #fdd835;
      padding-bottom: 10px;
      display: inline-block;
    }

    .page-ph777link__section h3 {
      font-size: 1.8em;
      color: #ffffff;
      margin-bottom: 20px;
    }

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

    .page-ph777link__promo-box {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 30px;
      margin-top: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }

    .page-ph777link__promo-box h3 {
      color: #fdd835;
      font-size: 2em;
      margin-bottom: 15px;
    }

    .page-ph777link__promo-box p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-ph777link__download-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .page-ph777link__download-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      flex: 1;
      min-width: 280px;
      max-width: 400px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.5);
      text-align: center;
    }

    .page-ph777link__download-item img {
      max-width: 100%;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      width: 100%; /* Ensure responsive image */
      max-height: 300px; /* Constrain height for download images */
      object-fit: contain;
    }

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

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

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

    .page-ph777link__game-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-ph777link__game-card-content {
      padding: 15px;
    }

    .page-ph777link__game-card-content h3 {
      font-size: 1.3em;
      color: #fdd835;
      margin-bottom: 10px;
    }

    .page-ph777link__game-card-content p {
      font-size: 0.9em;
      color: #cccccc;
    }

    .page-ph777link__game-link {
      color: #fdd835;
      text-decoration: none;
    }

    .page-ph777link__game-link:hover {
      text-decoration: underline;
    }

    .page-ph777link__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-ph777link__provider-logos img {
      height: 80px; /* Fixed height for logos */
      width: auto;
      max-width: 150px;
      object-fit: contain;
      background-color: #333; /* Background for visibility if logo is transparent */
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      transition: transform 0.2s ease;
    }

    .page-ph777link__provider-logos img:hover {
      transform: scale(1.05);
    }

    .page-ph777link__list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ph777link__list-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.4);
      font-size: 1.1em;
      color: #e0e0e0;
      display: flex;
      align-items: center;
    }

    .page-ph777link__list-item::before {
      content: '✓';
      color: #fdd835;
      font-weight: bold;
      margin-right: 15px;
      font-size: 1.3em;
    }

    /* FAQ Styles */
    .page-ph777link__faq-container {
      margin-top: 40px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

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

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

    .page-ph777link__faq-question h3 {
      margin: 0;
      color: #fdd835;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-ph777link__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
    }

    .page-ph777link__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: #2a2a2a;
      color: #cccccc;
    }

    .page-ph777link__faq-answer p {
      padding-top: 10px; /* Add padding inside answer content */
      padding-bottom: 10px;
      margin: 0;
    }

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

    /* Floating Login Button */
    .page-ph777link__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #fdd835;
      color: #1a1a1a;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0,0,0,0.5);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-ph777link__pulse 2s infinite;
    }

    .page-ph777link__floating-button:hover {
      background-color: #ffeb3b;
      transform: scale(1.05);
    }

    @keyframes page-ph777link__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 216, 53, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(253, 216, 53, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 216, 53, 0);
      }
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ph777link__hero-section {
        padding-top: 100px; /* Mobile spacing for fixed header */
      }
      .page-ph777link__hero-content h1 {
        font-size: 2em;
      }
      .page-ph777link__hero-content p {
        font-size: 1em;
      }
      .page-ph777link__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-ph777link__section {
        padding: 30px 15px;
      }
      .page-ph777link__section h2 {
        font-size: 1.8em;
      }
      .page-ph777link__section h3 {
        font-size: 1.5em;
      }
      .page-ph777link__download-item {
        min-width: unset;
        width: 100%;
      }
      .page-ph777link__game-grid {
        grid-template-columns: 1fr;
      }
      .page-ph777link__list-item {
        font-size: 1em;
        padding: 15px;
      }
      .page-ph777link__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-ph777link__faq-question h3 {
        font-size: 1.1em;
      }
      .page-ph777link__faq-answer {
        padding: 0 15px;
      }
      .page-ph777link__faq-item.active .page-ph777link__faq-answer {
        padding: 15px !important;
      }
      .page-ph777link__floating-button {
        padding: 12px 20px;
        font-size: 0.9em;
        bottom: 15px;
        right: 15px;
      }

      /* Image responsive optimization for mobile */
      .page-ph777link__hero-image,
      .page-ph777link__download-item img,
      .page-ph777link__game-card img,
      .page-ph777link__provider-logos img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
    }
  