
    :root {
      --page-ph799__primary-color: #0A192F; /* Dark Blue */
      --page-ph799__secondary-color: #FFD700; /* Gold */
      --page-ph799__accent-color: #FF5733; /* Orange-Red */
      --page-ph799__text-color: #333333;
      --page-ph799__light-text-color: #ffffff;
      --page-ph799__background-color: #F5F5F5;
      --page-ph799__card-background: #ffffff;
      --page-ph799__border-color: #e0e0e0;
    }

    /* Base styles for the page content */
    .page-ph799 {
      font-family: 'Arial', sans-serif;
      color: var(--page-ph799__text-color);
      background-color: var(--page-ph799__background-color);
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Space for floating button */
    }

    /* Fixed header spacing */
    .page-ph799__hero-section,
    .page-ph799__main-content {
      padding-top: 100px; /* For mobile fixed header */
    }
    @media (min-width: 769px) {
      .page-ph799__hero-section,
      .page-ph799__main-content {
        padding-top: 120px; /* For desktop fixed header */
      }
    }

    .page-ph799__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

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

    .page-ph799__section {
      background-color: var(--page-ph799__card-background);
      margin-bottom: 30px;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
    }
    @media (max-width: 768px) {
      .page-ph799__section {
        padding: 20px 15px;
        margin-bottom: 20px;
      }
    }

    .page-ph799__section-title {
      font-size: 2.2em;
      color: var(--page-ph799__primary-color);
      margin-bottom: 25px;
      text-align: center;
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .page-ph799__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
    }

    .page-ph799__text-center {
      text-align: center;
    }

    .page-ph799__button {
      display: inline-block;
      background-color: var(--page-ph799__accent-color);
      color: var(--page-ph799__light-text-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
    }

    .page-ph799__button:hover {
      background-color: #e64a2d; /* Darker accent */
    }

    /* Hero Section */
    .page-ph799__hero-section {
      position: relative;
      text-align: center;
      color: var(--page-ph799__light-text-color);
      overflow: hidden;
      background-color: var(--page-ph799__primary-color);
      padding-bottom: 40px;
    }

    .page-ph799__hero-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%; /* Ensure image is responsive */
      object-fit: cover;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-ph799__hero-content {
      position: relative; /* Ensure content is above image if needed */
      z-index: 2;
      padding: 20px 15px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-ph799__hero-title {
      font-size: 2.8em;
      margin-top: 20px;
      margin-bottom: 15px;
      color: var(--page-ph799__secondary-color);
      line-height: 1.2;
    }

    .page-ph799__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    @media (max-width: 768px) {
      .page-ph799__hero-title {
        font-size: 2em;
      }
      .page-ph799__hero-subtitle {
        font-size: 1em;
      }
      .page-ph799__hero-content {
        padding: 15px;
      }
    }

    /* Floating Login Button */
    .page-ph799__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-ph799__accent-color);
      color: var(--page-ph799__light-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .page-ph799__floating-button:hover {
      background-color: #e64a2d;
      transform: translateY(-3px);
    }

    .page-ph799__floating-button span {
      margin-left: 8px;
    }

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

    /* Game Categories */
    .page-ph799__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    @media (max-width: 768px) {
      .page-ph799__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }
    }

    .page-ph799__game-card {
      background-color: var(--page-ph799__card-background);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-ph799__text-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
    }

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

    .page-ph799__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 120px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .page-ph799__game-card-image {
      max-width: 100%;
      height: auto;
      object-fit: contain; /* Use contain to ensure full image visibility */
      border-radius: 4px;
      transition: transform 0.3s ease;
    }

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

    .page-ph799__game-card-title {
      font-size: 1.1em;
      font-weight: bold;
      margin-top: 10px;
      color: var(--page-ph799__primary-color);
    }

    @media (max-width: 768px) {
      .page-ph799__game-card-title {
        font-size: 0.9em;
        margin-top: 5px;
      }
    }

    /* Game Providers */
    .page-ph799__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }
    @media (max-width: 768px) {
      .page-ph799__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
      }
    }

    .page-ph799__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 60px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--page-ph799__card-background);
      border-radius: 6px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
      padding: 5px;
    }
    .page-ph799__provider-logo {
      max-width: 90%;
      max-height: 90%;
      height: auto;
      object-fit: contain;
    }
    @media (max-width: 768px) {
      .page-ph799__provider-logo-wrapper {
        height: 50px;
      }
      .page-ph799__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    /* FAQ Section */
    .page-ph799__faq-section {
      text-align: left;
    }

    .page-ph799__faq-item {
      background-color: var(--page-ph799__card-background);
      border: 1px solid var(--page-ph799__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-ph799__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #f9f9f9;
      border-bottom: 1px solid var(--page-ph799__border-color);
      transition: background-color 0.3s ease;
    }

    .page-ph799__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-ph799__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-ph799__primary-color);
      pointer-events: none; /* Prevent text selection from interfering with click */
      flex-grow: 1;
    }

    @media (max-width: 768px) {
      .page-ph799__faq-question {
        padding: 15px;
      }
      .page-ph799__faq-question h3 {
        font-size: 1em;
      }
    }

    .page-ph799__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-ph799__accent-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from interfering with click */
      transition: transform 0.3s ease;
    }

    .page-ph799__faq-item.active .page-ph799__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
      color: var(--page-ph799__primary-color);
    }

    .page-ph799__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.3s ease;
      color: var(--page-ph799__text-color);
    }

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

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

    @media (max-width: 768px) {
      .page-ph799__faq-answer {
        padding: 0 15px;
      }
      .page-ph799__faq-item.active .page-ph799__faq-answer {
        padding: 15px 15px !important;
      }
    }

    /* General image responsiveness */
    .page-ph799 img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }
    .page-ph799__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
    @media (max-width: 768px) {
      .page-ph799 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ph799__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  