
    :root {
      --ph789-primary-bg: #1a0033;
      --ph789-secondary-bg: #2e005c;
      --ph789-accent-color: #ffd700;
      --ph789-text-light: #ffffff;
      --ph789-text-dark: #1a0033;
      --ph789-button-bg: #e44d26;
      --ph789-button-hover: #ff6f4d;
      --ph789-border-color: #5c2b8a;
      --ph789-shadow-color: rgba(0, 0, 0, 0.5);
    }

    .page-ph789 {
      font-family: 'Arial', sans-serif;
      background-color: var(--ph789-primary-bg);
      color: var(--ph789-text-light);
      line-height: 1.6;
    }

    /* Fixed Navigation Spacing */
    .page-ph789__hero-section {
      padding-top: 120px; /* Desktop default */
    }

    @media (max-width: 768px) {
      .page-ph789__hero-section {
        padding-top: 100px; /* Mobile adjustment */
      }
    }

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

    .page-ph789__section-title {
      font-size: 2.5em;
      color: var(--ph789-accent-color);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 2px 2px 4px var(--ph789-shadow-color);
    }

    .page-ph789__hero-section {
      text-align: center;
      padding-bottom: 50px;
      background: linear-gradient(180deg, var(--ph789-primary-bg) 0%, var(--ph789-secondary-bg) 100%);
      position: relative;
      overflow: hidden;
    }

    .page-ph789__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-ph789__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 8px 16px var(--ph789-shadow-color);
    }

    @media (max-width: 768px) {
      .page-ph789__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ph789__hero-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    .page-ph789__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-ph789__hero-title {
      font-size: 3em;
      color: var(--ph789-accent-color);
      margin-bottom: 20px;
      text-shadow: 3px 3px 6px var(--ph789-shadow-color);
    }

    .page-ph789__hero-subtitle {
      font-size: 1.5em;
      color: var(--ph789-text-light);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ph789__call-to-action-button {
      display: inline-block;
      background-color: var(--ph789-button-bg);
      color: var(--ph789-text-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px var(--ph789-shadow-color);
    }

    .page-ph789__call-to-action-button:hover {
      background-color: var(--ph789-button-hover);
      transform: translateY(-2px);
    }

    .page-ph789__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--ph789-button-bg);
      color: var(--ph789-text-light);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px var(--ph789-shadow-color);
      z-index: 1000;
      animation: pulse 2s infinite;
    }

    .page-ph789__floating-login-button:hover {
      background-color: var(--ph789-button-hover);
    }

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

    .page-ph789__games-section {
      padding: 60px 0;
      background-color: var(--ph789-secondary-bg);
    }

    .page-ph789__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-ph789__game-card {
      background-color: var(--ph789-primary-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 12px var(--ph789-shadow-color);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-ph789__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px var(--ph789-shadow-color);
    }

    .page-ph789__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
    }

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

    @media (max-width: 768px) {
      .page-ph789__game-image {
        max-width: 100% !important;
        height: auto !important; /* Adjust height for mobile */
      }
      .page-ph789__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

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

    .page-ph789__game-card-title {
      font-size: 1.5em;
      color: var(--ph789-accent-color);
      margin-bottom: 10px;
    }

    .page-ph789__game-card-link {
      color: var(--ph789-accent-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-ph789__game-card-link:hover {
      color: var(--ph789-button-hover);
    }

    .page-ph789__game-card-description {
      font-size: 0.9em;
      color: var(--ph789-text-light);
      margin-bottom: 15px;
    }

    .page-ph789__play-now-button {
      display: inline-block;
      background-color: var(--ph789-button-bg);
      color: var(--ph789-text-light);
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-ph789__play-now-button:hover {
      background-color: var(--ph789-button-hover);
    }

    .page-ph789__providers-section {
      padding: 60px 0;
      background-color: var(--ph789-primary-bg);
    }

    .page-ph789__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
    }

    .page-ph789__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 100px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--ph789-secondary-bg);
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 4px 8px var(--ph789-shadow-color);
      transition: transform 0.3s ease;
    }

    .page-ph789__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

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

    @media (max-width: 768px) {
      .page-ph789__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ph789__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    .page-ph789__info-section {
      padding: 60px 0;
      background-color: var(--ph789-secondary-bg);
      text-align: center;
    }

    .page-ph789__info-content {
      max-width: 900px;
      margin: 0 auto;
      font-size: 1.1em;
      color: var(--ph789-text-light);
    }

    .page-ph789__info-content h2 {
      color: var(--ph789-accent-color);
      margin-bottom: 20px;
      font-size: 2em;
    }

    .page-ph789__info-content p {
      margin-bottom: 20px;
    }

    .page-ph789__info-content ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .page-ph789__info-content li {
      background-color: var(--ph789-primary-bg);
      padding: 10px 15px;
      border-radius: 20px;
      border: 1px solid var(--ph789-border-color);
      font-size: 0.95em;
    }

    .page-ph789__faq-section {
      padding: 60px 0;
      background-color: var(--ph789-primary-bg);
    }

    .page-ph789__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-ph789__faq-item {
      background-color: var(--ph789-secondary-bg);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 8px var(--ph789-shadow-color);
    }

    .page-ph789__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: var(--ph789-secondary-bg);
      border-bottom: 1px solid var(--ph789-border-color);
      user-select: none;
    }

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

    .page-ph789__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--ph789-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-ph789__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;
      color: var(--ph789-text-light);
    }

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

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

    @media (max-width: 768px) {
      .page-ph789__section-title {
        font-size: 2em;
      }
      .page-ph789__hero-title {
        font-size: 2.2em;
      }
      .page-ph789__hero-subtitle {
        font-size: 1.2em;
      }
      .page-ph789__call-to-action-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-ph789__game-grid {
        grid-template-columns: 1fr;
      }
      .page-ph789__faq-question {
        padding: 12px 15px;
      }
      .page-ph789__faq-question h3 {
        font-size: 1.1em;
      }
      .page-ph789__faq-answer {
        padding: 0 15px;
      }
      .page-ph789__faq-item.active .page-ph789__faq-answer {
        padding: 15px !important;
      }
      .page-ph789__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  