
    :root {
      --ph7-primary-bg: #1a1a2e;
      --ph7-secondary-bg: #2e2e4a;
      --ph7-accent-color: #e94560;
      --ph7-text-color: #f0f0f0;
      --ph7-light-text: #cccccc;
      --ph7-border-color: #4a4a6e;
      --ph7-button-hover: #ff6b8a;
      --ph7-gradient-start: #e94560;
      --ph7-gradient-end: #b33c51;
      --ph7-shadow-color: rgba(0, 0, 0, 0.4);
    }

    /* Base styles for the page */
    .page-ph7 {
      font-family: 'Arial', sans-serif;
      background-color: var(--ph7-primary-bg);
      color: var(--ph7-text-color);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

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

    /* Header spacing to prevent content overlap with fixed header */
    .page-ph7__hero-section {
      padding-top: 120px; /* Desktop spacing */
    }

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

    /* Hero Section */
    .page-ph7__hero-section {
      text-align: center;
      padding-bottom: 40px;
      background: linear-gradient(180deg, var(--ph7-primary-bg) 0%, var(--ph7-secondary-bg) 100%);
      position: relative;
    }

    .page-ph7__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%; /* Ensure image is responsive */
      object-fit: cover;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 8px 16px var(--ph7-shadow-color);
    }

    .page-ph7__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }

    .page-ph7__hero-title {
      font-size: 2.8em;
      color: var(--ph7-accent-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px var(--ph7-shadow-color);
    }

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

    /* Floating Login Button */
    .page-ph7__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background: linear-gradient(90deg, var(--ph7-gradient-start) 0%, var(--ph7-gradient-end) 100%);
      color: var(--ph7-text-color);
      padding: 15px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 6px 12px var(--ph7-shadow-color);
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      animation: pulse 2s infinite;
    }

    .page-ph7__floating-login-button:hover {
      background: linear-gradient(90deg, var(--ph7-button-hover) 0%, var(--ph7-gradient-start) 100%);
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    }

    @keyframes pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(233, 69, 96, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 69, 96, 0); }
    }

    /* General Section Styling */
    .page-ph7__section-title {
      font-size: 2.2em;
      color: var(--ph7-accent-color);
      text-align: center;
      margin-bottom: 40px;
      padding-top: 40px;
      text-shadow: 1px 1px 3px var(--ph7-shadow-color);
    }

    .page-ph7__section-description {
      text-align: center;
      color: var(--ph7-light-text);
      margin-bottom: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
    }

    /* Game Categories Section */
    .page-ph7__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .page-ph7__game-card {
      background-color: var(--ph7-secondary-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px var(--ph7-shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      text-decoration: none;
      color: var(--ph7-text-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 300px; /* Ensure cards have a minimum height */
    }

    .page-ph7__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    }

    .page-ph7__game-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistent image display */
    }

    .page-ph7__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-ph7__game-card:hover .page-ph7__game-image {
      transform: scale(1.05);
    }

    .page-ph7__game-title {
      font-size: 1.5em;
      color: var(--ph7-accent-color);
      padding: 15px;
      margin: 0;
    }

    /* Promotions Section */
    .page-ph7__promo-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      margin-bottom: 60px;
      padding: 0 20px;
    }

    .page-ph7__promo-text {
      max-width: 800px;
      text-align: center;
      color: var(--ph7-light-text);
    }

    .page-ph7__promo-image-container {
      width: 100%;
      max-width: 600px; /* Max width for promo image */
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 12px;
      box-shadow: 0 4px 10px var(--ph7-shadow-color);
    }

    .page-ph7__promo-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
    }

    .page-ph7__cta-button {
      background: linear-gradient(90deg, var(--ph7-gradient-start) 0%, var(--ph7-gradient-end) 100%);
      color: var(--ph7-text-color);
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 4px 8px var(--ph7-shadow-color);
      transition: all 0.3s ease;
    }

    .page-ph7__cta-button:hover {
      background: linear-gradient(90deg, var(--ph7-button-hover) 0%, var(--ph7-gradient-start) 100%);
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    }

    /* Why Choose Us Section */
    .page-ph7__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .page-ph7__benefit-card {
      background-color: var(--ph7-secondary-bg);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 10px var(--ph7-shadow-color);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-ph7__benefit-card:hover {
      transform: translateY(-8px);
    }

    .page-ph7__benefit-icon-container {
      width: 100%;
      max-width: 150px; /* Slightly larger for benefits */
      height: auto;
      overflow: hidden;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-ph7__benefit-icon {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
    }

    .page-ph7__benefit-title {
      font-size: 1.4em;
      color: var(--ph7-accent-color);
      margin-bottom: 15px;
    }

    .page-ph7__benefit-description {
      color: var(--ph7-light-text);
      font-size: 0.95em;
    }

    /* Game Providers Section */
    .page-ph7__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-bottom: 60px;
      justify-items: center;
    }

    .page-ph7__provider-logo-container {
      width: 100%;
      max-width: 180px; /* Larger for provider logos */
      height: 100px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
      background-color: #3a3a5a;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px var(--ph7-shadow-color);
      transition: transform 0.3s ease;
    }

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

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

    /* Payment Methods Section */
    .page-ph7__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-bottom: 60px;
      justify-items: center;
    }

    .page-ph7__payment-method-item {
      background-color: #3a3a5a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 5px var(--ph7-shadow-color);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px; /* Fixed height for payment logos */
      width: 100%; /* Ensure it takes full grid column width */
      max-width: 150px; /* Max width for payment logos */
      box-sizing: border-box;
    }

    .page-ph7__payment-method-item:hover {
      transform: scale(1.05);
    }

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

    /* FAQ Section */
    .page-ph7__faq-section {
      padding-bottom: 60px;
    }

    .page-ph7__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-ph7__faq-item {
      background-color: var(--ph7-secondary-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px var(--ph7-shadow-color);
      overflow: hidden;
    }

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

    .page-ph7__faq-question:hover {
      background-color: #4a4a6e;
    }

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

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

    .page-ph7__faq-item.active .page-ph7__faq-toggle {
      transform: rotate(45deg); /* Plus to X for visual effect, or just a minus */
      content: '−'; /* This won't work for CSS content on existing element, handled by JS */
    }

    .page-ph7__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(--ph7-light-text);
      font-size: 0.95em;
    }

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

    .page-ph7__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-ph7__faq-answer p:last-child {
        padding-bottom: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-ph7__container {
        padding: 10px;
      }

      .page-ph7__hero-title {
        font-size: 2em;
      }

      .page-ph7__hero-subtitle {
        font-size: 1em;
      }

      .page-ph7__floating-login-button {
        padding: 12px 20px;
        font-size: 0.95em;
        bottom: 15px;
        right: 15px;
      }

      .page-ph7__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-ph7__games-grid,
      .page-ph7__benefits-grid,
      .page-ph7__providers-grid,
      .page-ph7__payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-ph7__game-card,
      .page-ph7__benefit-card {
        min-height: auto;
      }

      .page-ph7__game-image-container {
        height: 180px;
      }

      .page-ph7__provider-logo-container,
      .page-ph7__payment-method-item {
        max-width: 100%;
        width: 100%;
      }

      .page-ph7__faq-question {
        padding: 12px 15px;
      }

      .page-ph7__faq-question h3 {
        font-size: 1.1em;
      }

      .page-ph7__faq-toggle {
        font-size: 1.5em;
      }

      .page-ph7__faq-answer {
        padding: 0 15px;
      }

      .page-ph7__faq-item.active .page-ph7__faq-answer {
        padding: 15px !important;
      }

      /* Ensure images are responsive on mobile */
      .page-ph7__hero-image,
      .page-ph7__game-image,
      .page-ph7__promo-image,
      .page-ph7__benefit-icon,
      .page-ph7__provider-logo,
      .page-ph7__payment-logo {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-ph7__game-image-container,
      .page-ph7__promo-image-container,
      .page-ph7__benefit-icon-container,
      .page-ph7__provider-logo-container,
      .page-ph7__payment-method-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  