
    /* Base styles for the page */
    .page-ph7win {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
    }

    /* Fixed header spacing */
    .page-ph7win__hero-section {
      padding-top: 120px; /* Desktop spacing for fixed header */
    }

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

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

    .page-ph7win__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-ph7win__title {
      color: #0056b3; /* Dark blue for primary titles */
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-ph7win__subtitle {
      color: #007bff; /* Bright blue for subtitles */
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-ph7win__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    .page-ph7win__button {
      display: inline-block;
      background-color: #ffc107; /* Amber for buttons */
      color: #333;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-ph7win__link {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
    }

    .page-ph7win__link:hover {
      text-decoration: underline;
    }

    /* Hero Section */
    .page-ph7win__hero-section {
      text-align: center;
      background-color: #0a192f; /* Dark background for hero */
      color: #fff;
      padding: 50px 20px;
      position: relative;
      overflow: hidden;
      margin-bottom: 30px;
    }

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

    .page-ph7win__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-ph7win__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-ph7win__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #ffc107; /* Amber for hero title */
      line-height: 1.2;
    }

    .page-ph7win__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    /* Floating Login Button */
    .page-ph7win__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #dc3545; /* Red for urgent action */
      color: #fff;
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: pulse 2s infinite;
    }

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

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

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

    .page-ph7win__game-card {
      background-color: #f8f9fa;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
    }

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

    .page-ph7win__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-ph7win__game-card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-ph7win__game-card-title {
      font-size: 1.5em;
      color: #0056b3;
      margin: 20px 10px 10px;
      flex-grow: 1;
    }

    .page-ph7win__game-card-link {
      text-decoration: none;
      color: inherit;
    }

    .page-ph7win__game-card-link:hover .page-ph7win__game-card-title {
      text-decoration: underline;
    }

    /* Promotions */
    .page-ph7win__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-ph7win__promo-card {
      background-color: #e9f7ef; /* Light green for promos */
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-ph7win__promo-card-title {
      font-size: 1.6em;
      color: #28a745; /* Green for promo titles */
      margin-bottom: 15px;
    }

    .page-ph7win__promo-card-text {
      color: #444;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    /* Why Choose Us */
    .page-ph7win__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-ph7win__feature-item {
      text-align: center;
      padding: 25px;
      background-color: #f0f8ff; /* Light blue for features */
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-ph7win__feature-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
    }

    .page-ph7win__feature-icon {
      width: 100px; /* Icon size */
      height: 100px; /* Icon size */
      object-fit: contain;
      margin: 0 auto 15px;
      display: block;
    }

    .page-ph7win__feature-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-ph7win__feature-description {
      color: #666;
    }

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

    .page-ph7win__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      padding: 10px;
      background-color: #fcfcfc;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }

    .page-ph7win__provider-logo-wrapper:hover {
      transform: translateY(-3px);
    }

    .page-ph7win__provider-logo {
      width: 100%;
      height: 80px; /* Fixed height for provider logos */
      object-fit: contain;
      display: block;
    }

    /* Payment Methods */
    .page-ph7win__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-ph7win__payment-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      padding: 10px;
      background-color: #fcfcfc;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }

    .page-ph7win__payment-logo-wrapper:hover {
      transform: translateY(-3px);
    }

    .page-ph7win__payment-logo {
      width: 100%;
      height: 60px; /* Fixed height for payment logos */
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-ph7win__faq-section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-ph7win__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-ph7win__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

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

    .page-ph7win__faq-question:hover {
      background-color: #e9e9e9;
    }

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

    .page-ph7win__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-ph7win__faq-item.active .page-ph7win__faq-toggle {
      transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
    }

    .page-ph7win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #fefefe;
      border-radius: 0 0 8px 8px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
    }

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

    /* Call to Action */
    .page-ph7win__cta-section {
      text-align: center;
      background-color: #007bff; /* Blue for CTA */
      color: #fff;
      padding: 40px 20px;
      border-radius: 10px;
    }

    .page-ph7win__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #ffc107;
    }

    .page-ph7win__cta-text {
      font-size: 1.2em;
      margin-bottom: 25px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ph7win__cta-button {
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      font-size: 1.3em;
    }

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

      .page-ph7win__section {
        padding: 20px;
      }

      .page-ph7win__title {
        font-size: 2em;
      }

      .page-ph7win__subtitle {
        font-size: 1.5em;
      }

      .page-ph7win__hero-title {
        font-size: 2.2em;
      }

      .page-ph7win__hero-description {
        font-size: 1.1em;
      }

      .page-ph7win__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-ph7win__game-categories,
      .page-ph7win__promo-grid,
      .page-ph7win__features-grid,
      .page-ph7win__providers-grid,
      .page-ph7win__payments-grid {
        grid-template-columns: 1fr;
      }

      .page-ph7win__game-card-image {
        height: 180px;
      }

      .page-ph7win__feature-icon {
        width: 80px;
        height: 80px;
      }

      .page-ph7win__provider-logo,
      .page-ph7win__payment-logo {
        height: 50px;
      }

      .page-ph7win__cta-title {
        font-size: 1.8em;
      }

      .page-ph7win__cta-text {
        font-size: 1em;
      }

      .page-ph7win__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* Ensure all images are responsive on mobile */
      .page-ph7win img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ph7win__hero-image-wrapper,
      .page-ph7win__game-card-image-wrapper,
      .page-ph7win__feature-icon-wrapper,
      .page-ph7win__provider-logo-wrapper,
      .page-ph7win__payment-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  