
    /* Base styles for the page */
    .page-ph7spin {
      font-family: 'Arial', sans-serif;
      background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
      color: #e0e0e0;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-ph7spin a {
      color: #ffcc00;
      text-decoration: none;
    }

    .page-ph7spin a:hover {
      text-decoration: underline;
    }

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

    /* Hero Section */
    .page-ph7spin .hero-section {
      text-align: center;
      padding: 40px 15px 20px;
      position: relative;
      overflow: hidden;
      border-bottom: 2px solid #ffcc00;
    }

    .page-ph7spin .hero-image-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
      margin-bottom: 20px;
      border-radius: 10px;
      overflow: hidden;
    }

    .page-ph7spin .hero-image-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 10px;
    }

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

    .page-ph7spin .hero-content h1 {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-ph7spin .hero-content p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #f0f0f0;
    }

    /* Floating Login Button */
    .page-ph7spin .floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #e94560;
      color: #ffffff;
      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;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
      display: block; /* Ensure it's visible */
      border: none;
      cursor: pointer;
    }

    .page-ph7spin .floating-login-button:hover {
      background-color: #ff6a80;
      transform: translateX(-50%) scale(1.05);
    }

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

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

    .page-ph7spin .section h2 {
      font-size: 2em;
      color: #ffcc00;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }

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

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

    .page-ph7spin .game-card {
      background-color: #283747;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: center;
    }

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

    .page-ph7spin .game-card img {
      width: 100%;
      height: 120px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid #ffcc00;
    }

    .page-ph7spin .game-card h3 {
      font-size: 1.1em;
      margin: 15px 10px 10px;
      color: #ffcc00;
    }

    .page-ph7spin .game-card .play-button {
      display: block;
      background-color: #e94560;
      color: #ffffff;
      padding: 10px 0;
      font-weight: bold;
      border-radius: 0 0 10px 10px;
      transition: background-color 0.3s ease;
    }

    .page-ph7spin .game-card .play-button:hover {
      background-color: #ff6a80;
      text-decoration: none;
    }

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

    .page-ph7spin .promo-card {
      background-color: #283747;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      padding: 20px;
      text-align: left;
      border-left: 5px solid #ffcc00;
    }

    .page-ph7spin .promo-card h3 {
      color: #ffcc00;
      margin-top: 0;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

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

    .page-ph7spin .promo-card .learn-more {
      display: inline-block;
      background-color: #e94560;
      color: #ffffff;
      padding: 8px 15px;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-ph7spin .promo-card .learn-more:hover {
      background-color: #ff6a80;
      text-decoration: none;
    }

    /* Features Section */
    .page-ph7spin .features-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .page-ph7spin .features-list li {
      background-color: #283747;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 15px;
      border-right: 3px solid #ffcc00;
    }

    .page-ph7spin .features-list li strong {
      color: #ffcc00;
      font-size: 1.1em;
    }

    .page-ph7spin .features-list li .icon {
      font-size: 1.8em;
      color: #e94560;
    }

    /* Call to Action */
    .page-ph7spin .cta-section {
      background-color: #0f3460;
      padding: 50px 15px;
      margin-top: 40px;
      border-top: 2px solid #ffcc00;
    }

    .page-ph7spin .cta-section h2 {
      color: #ffcc00;
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .page-ph7spin .cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-ph7spin .cta-button {
      background-color: #e94560;
      color: #ffffff;
      padding: 15px 40px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
    }

    .page-ph7spin .cta-button:hover {
      background-color: #ff6a80;
      transform: translateY(-3px);
      text-decoration: none;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-ph7spin .hero-content h1 {
        font-size: 1.8em;
      }

      .page-ph7spin .hero-content p {
        font-size: 1em;
      }

      .page-ph7spin .section h2 {
        font-size: 1.7em;
      }

      .page-ph7spin .game-categories {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      }

      .page-ph7spin .game-card img {
        height: 100px;
      }

      .page-ph7spin .promo-card h3 {
        font-size: 1.1em;
      }

      .page-ph7spin .features-list {
        grid-template-columns: 1fr;
      }

      .page-ph7spin .cta-section h2 {
        font-size: 2em;
      }

      .page-ph7spin .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-ph7spin .floating-login-button {
        padding: 12px 25px;
        font-size: 1.1em;
        bottom: 15px;
      }
    }
  