
    /* Global styles for the page-ph7code content */
    .page-ph7code {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e; /* Dark blue-purple background */
      color: #e0e0e0; /* Light grey text for contrast */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for the floating button */
    }

    .page-ph7code a {
      color: #ffcc00; /* Gold for links */
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-ph7code a:hover {
      color: #ffd700; /* Brighter gold on hover */
      text-decoration: underline;
    }

    .page-ph7code .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
    }

    /* Banner Section */
    .page-ph7code .banner-section {
      text-align: center;
      padding: 20px 0;
      background: linear-gradient(135deg, #1a1a2e, #3a005d); /* Gradient background */
      position: relative;
      overflow: hidden;
    }

    .page-ph7code .banner-section img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-ph7code .banner-section h1 {
      font-size: 2.2em;
      color: #ffd700; /* Gold for main title */
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-ph7code .banner-section p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    .page-ph7code .banner-section .btn-primary {
      display: inline-block;
      background-color: #e74c3c; /* Red for strong call to action */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-ph7code .banner-section .btn-primary:hover {
      background-color: #c0392b; /* Darker red on hover */
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-ph7code .floating-login-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffcc00; /* Gold for the floating button */
      color: #1a1a2e; /* Dark text for contrast */
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: pulse 2s infinite;
      text-decoration: none; /* Ensure no underline */
    }

    .page-ph7code .floating-login-btn:hover {
      background-color: #ffd700; /* Brighter gold on hover */
      animation: none; /* Stop pulse on hover */
    }

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

    /* Section Styling */
    .page-ph7code .section {
      padding: 40px 0;
      text-align: center;
    }

    .page-ph7code .section-dark {
      background-color: #2a004a; /* Slightly lighter dark for contrast */
    }

    .page-ph7code .section h2 {
      font-size: 2em;
      color: #ffd700;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-ph7code .section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: #e74c3c;
      border-radius: 2px;
    }

    .page-ph7code .section p {
      margin-bottom: 20px;
    }

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

    .page-ph7code .game-card {
      background-color: #282844; /* Darker card background */
      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;
      padding: 15px;
    }

    .page-ph7code .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-ph7code .game-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .page-ph7code .game-card h3 {
      font-size: 1.2em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-ph7code .game-card .btn-play {
      display: inline-block;
      background-color: #e74c3c;
      color: #ffffff;
      padding: 8px 15px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-ph7code .game-card .btn-play:hover {
      background-color: #c0392b;
    }

    /* Promotions */
    .page-ph7code .promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-ph7code .promo-card {
      background-color: #282844;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      padding: 20px;
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-ph7code .promo-card:hover {
      transform: translateY(-5px);
    }

    .page-ph7code .promo-card h3 {
      color: #ffd700;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-ph7code .promo-card p {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 15px;
    }

    .page-ph7code .promo-card .btn-details {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-ph7code .promo-card .btn-details:hover {
      background-color: #ffd700;
    }

    /* Why Choose PH7 */
    .page-ph7code .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-ph7code .feature-item {
      background-color: #282844;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      padding: 20px;
      text-align: center;
    }

    .page-ph7code .feature-item img {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
    }

    .page-ph7code .feature-item h4 {
      color: #ffd700;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-ph7code .feature-item p {
      color: #c0c0c0;
      font-size: 0.9em;
    }

    /* Payment and Providers */
    .page-ph7code .logos-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-ph7code .logos-grid img {
      height: 40px;
      filter: grayscale(100%) brightness(180%); /* Lighten and desaturate for dark theme */
      transition: filter 0.3s ease;
    }

    .page-ph7code .logos-grid img:hover {
      filter: grayscale(0%) brightness(100%); /* Color on hover */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ph7code .banner-section h1 {
        font-size: 1.8em;
      }
      .page-ph7code .banner-section p {
        font-size: 1em;
      }
      .page-ph7code .section h2 {
        font-size: 1.8em;
      }
      .page-ph7code .game-categories,
      .page-ph7code .promo-grid,
      .page-ph7code .features-grid {
        grid-template-columns: 1fr;
      }
      .page-ph7code .floating-login-btn {
        width: 90%;
        padding: 12px 20px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-ph7code .banner-section h1 {
        font-size: 1.5em;
      }
      .page-ph7code .section h2 {
        font-size: 1.5em;
      }
    }
  