
    :root {
      --page-ph779__primary-color: #f7931a; /* Orange for accents */
      --page-ph779__secondary-color: #2c3e50; /* Dark blue/grey for backgrounds */
      --page-ph779__accent-color: #e67e22; /* Slightly darker orange */
      --page-ph779__text-color: #ecf0f1; /* Light grey for text */
      --page-ph779__dark-text-color: #34495e; /* Darker text for light backgrounds */
      --page-ph779__background-color: #1a252f; /* Dark background */
      --page-ph779__card-background: #2c3e50;
      --page-ph779__border-color: rgba(255, 255, 255, 0.1);
      --page-ph779__button-hover: #e06e1b;
    }

    .page-ph779 {
      font-family: 'Arial', sans-serif;
      color: var(--page-ph779__text-color);
      background-color: var(--page-ph779__background-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-ph779__section {
      padding: 60px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-ph779__section {
        padding: 40px 15px;
      }
    }

    .page-ph779__section--dark {
      background-color: var(--page-ph779__secondary-color);
    }

    .page-ph779__heading {
      color: var(--page-ph779__primary-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-ph779__subheading {
      color: var(--page-ph779__text-color);
      margin-bottom: 30px;
      font-size: 1.5em;
      font-weight: normal;
    }

    .page-ph779__paragraph {
      margin-bottom: 20px;
      font-size: 1.1em;
      color: var(--page-ph779__text-color);
    }

    .page-ph779__button {
      display: inline-block;
      background-color: var(--page-ph779__primary-color);
      color: var(--page-ph779__background-color);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-ph779__button:hover {
      background-color: var(--page-ph779__button-hover);
      color: var(--page-ph779__text-color);
    }

    /* Hero Section */
    .page-ph779__hero-section {
      position: relative;
      overflow: hidden;
      padding-top: 120px; /* Space for fixed header */
      background-color: var(--page-ph779__background-color);
    }

    @media (max-width: 768px) {
      .page-ph779__hero-section {
        padding-top: 100px; /* Space for fixed header on mobile */
      }
    }

    .page-ph779__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 250px; /* Ensure visibility */
    }

    .page-ph779__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .page-ph779__hero-image {
        width: 100% !important;
        height: auto !important;
      }
    }

    .page-ph779__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      z-index: 2;
      padding: 20px;
      width: 90%;
      max-width: 800px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }
    
    .page-ph779__hero-content h1 {
        color: var(--page-ph779__primary-color);
        font-size: 3em;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ph779__hero-content p {
        font-size: 1.3em;
        margin-bottom: 25px;
        color: var(--page-ph779__text-color);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    @media (max-width: 768px) {
        .page-ph779__hero-content h1 {
            font-size: 2em;
        }
        .page-ph779__hero-content p {
            font-size: 1em;
        }
        .page-ph779__hero-button {
            padding: 12px 25px;
            font-size: 1em;
        }
    }

    /* Floating Login Button */
    .page-ph779__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-ph779__primary-color);
      color: var(--page-ph779__background-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-ph779__floating-login:hover {
      background-color: var(--page-ph779__button-hover);
      transform: translateY(-3px);
      color: var(--page-ph779__text-color);
    }

    @media (max-width: 768px) {
      .page-ph779__floating-login {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
    }

    /* Game Categories */
    .page-ph779__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-ph779__game-card {
      background-color: var(--page-ph779__card-background);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

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

    .page-ph779__game-card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-ph779__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 768px) {
      .page-ph779__game-card-image {
        width: 100% !important;
        height: auto !important;
      }
    }

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

    .page-ph779__game-card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-ph779__primary-color);
      text-decoration: none;
      display: block; /* Ensure the whole title is clickable */
    }

    .page-ph779__game-card-title a {
      color: var(--page-ph779__primary-color);
      text-decoration: none;
    }

    .page-ph779__game-card-title a:hover {
      text-decoration: underline;
    }

    .page-ph779__game-card-description {
      font-size: 0.95em;
      color: var(--page-ph779__text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-ph779__game-card-button {
      background-color: var(--page-ph779__primary-color);
      color: var(--page-ph779__background-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      display: inline-block;
      align-self: flex-start;
    }

    .page-ph779__game-card-button:hover {
      background-color: var(--page-ph779__button-hover);
      color: var(--page-ph779__text-color);
    }

    /* Provider Logos */
    .page-ph779__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-ph779__provider-logo-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 80px; /* Fixed height for logos */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--page-ph779__card-background);
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
    }

    .page-ph779__provider-logo-container:hover {
      transform: scale(1.05);
    }

    .page-ph779__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    @media (max-width: 768px) {
      .page-ph779__provider-logo {
        width: 100% !important;
        height: auto !important;
      }
    }

    /* FAQ Section */
    .page-ph779__faq-section {
      text-align: left;
      padding-top: 60px;
    }

    .page-ph779__faq-list {
      margin-top: 30px;
      border-top: 1px solid var(--page-ph779__border-color);
    }

    .page-ph779__faq-item {
      border-bottom: 1px solid var(--page-ph779__border-color);
      margin-bottom: 10px;
    }

    .page-ph779__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 15px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-ph779__card-background);
      border-radius: 8px;
      margin-bottom: 5px;
      transition: background-color 0.3s ease;
    }

    .page-ph779__faq-question:hover {
      background-color: var(--page-ph779__secondary-color);
    }

    .page-ph779__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-ph779__text-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-ph779__faq-toggle {
      font-size: 1.5em;
      color: var(--page-ph779__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

    .page-ph779__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: var(--page-ph779__card-background);
      border-radius: 0 0 8px 8px;
      margin-top: -5px; /* Overlap with question card for smooth transition */
      color: var(--page-ph779__text-color);
      font-size: 1em;
    }

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

    .page-ph779__faq-answer p {
      margin: 0;
    }

    @media (max-width: 768px) {
      .page-ph779__faq-question {
        padding: 15px 10px;
      }
      .page-ph779__faq-question h3 {
        font-size: 1em;
      }
      .page-ph779__faq-answer {
        padding: 15px 10px;
        font-size: 0.9em;
      }
      .page-ph779__faq-item.active .page-ph779__faq-answer {
        padding: 15px 10px !important;
      }
    }

    /* General responsive adjustments */
    @media (max-width: 768px) {
      .page-ph779__heading {
        font-size: 2em;
      }
      .page-ph779__subheading {
        font-size: 1.2em;
      }
      .page-ph779__paragraph {
        font-size: 1em;
      }
    }
  