
    /* Base styles for the PH7 Register page */
    .page-ph7register {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Dark background */
      color: #e0e0e0; /* Light text for contrast */
      line-height: 1.6;
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    /* Ensure content is not covered by fixed header */
    .page-ph7register__hero-section {
      padding-top: 100px; /* Mobile default */
      position: relative;
      overflow: hidden;
      text-align: center;
      padding-bottom: 40px;
    }

    @media (min-width: 768px) {
      .page-ph7register__hero-section {
        padding-top: 120px; /* Desktop */
      }
    }

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

    .page-ph7register__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-ph7register__section:nth-child(even) {
      background-color: #2a2a4a;
    }

    .page-ph7register__heading-primary {
      font-size: 2.5em;
      color: #ffcc00; /* Accent color */
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-ph7register__heading-secondary {
      font-size: 2em;
      color: #e0e0e0;
      margin-bottom: 15px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-ph7register__heading-tertiary {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-ph7register__text {
      font-size: 1em;
      margin-bottom: 20px;
      color: #cccccc;
    }

    .page-ph7register__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

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

    /* Hero Section Specific Styles */
    .page-ph7register__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-ph7register__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
    }

    /* Floating Login Button */
    .page-ph7register__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #e74c3c; /* Striking color for promotion */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: page-ph7register__pulse 2s infinite;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
    }

    .page-ph7register__floating-button:hover {
      background-color: #c0392b;
    }

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

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

    .page-ph7register__category-card {
      background-color: #3a3a5a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      text-decoration: none; /* For link cards */
      color: #e0e0e0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
    }

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

    .page-ph7register__category-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 10px;
      width: 100%; /* Ensure images fill container */
      min-width: 200px; /* Minimum size constraint */
      min-height: 200px; /* Minimum size constraint */
      object-fit: cover;
    }

    .page-ph7register__category-title {
      font-size: 1.2em;
      font-weight: bold;
      color: #ffcc00;
      margin-top: 10px;
    }

    /* Game Providers Grid */
    .page-ph7register__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
      padding-bottom: 20px;
    }

    .page-ph7register__provider-item {
      background-color: #3a3a5a;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      text-align: center;
    }

    .page-ph7register__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-ph7register__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Keep logos relatively uniform */
      object-fit: contain;
      min-width: 200px; /* Minimum size constraint */
      min-height: 200px; /* Minimum size constraint */
    }

    /* FAQ Section */
    .page-ph7register__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-ph7register__faq-item {
      background-color: #3a3a5a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-ph7register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #4a4a6a;
      transition: background-color 0.3s ease;
    }

    .page-ph7register__faq-question:hover {
      background-color: #5a5a7a;
    }

    .page-ph7register__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-ph7register__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-ph7register__faq-item.active .page-ph7register__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar effect */
    }

    .page-ph7register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
    }

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

    /* General Responsive Adjustments */
    @media (max-width: 768px) {
      .page-ph7register__heading-primary {
        font-size: 2em;
      }

      .page-ph7register__heading-secondary {
        font-size: 1.6em;
      }

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

      .page-ph7register__game-categories {
        grid-template-columns: 1fr; /* Stack categories on small screens */
      }
      .page-ph7register__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }
      .page-ph7register__category-image,
      .page-ph7register__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ph7register__category-card,
      .page-ph7register__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  