.page-pp88 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
    }

    /* Hero Section */
    .page-pp88__hero-section {
      position: relative;
      width: 100%;
      height: 100vh; /* Full viewport height for hero */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Minimal top padding as body handles header offset */
    }

    .page-pp88__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-pp88__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-pp88__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-pp88__hero-title {
      font-size: 3.5em;
      color: #ffcc00; /* Gold/yellow for branding */
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-pp88__hero-subtitle {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-pp88__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-pp88__hero-btn {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-pp88__hero-btn--register {
      background-color: #ffcc00; /* Gold/yellow */
      color: #1a1a1a;
    }

    .page-pp88__hero-btn--register:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-pp88__hero-btn--login {
      background-color: #337ab7; /* Blue for contrast */
      color: #ffffff;
      border: 2px solid #337ab7;
    }

    .page-pp88__hero-btn--login:hover {
      background-color: #286090;
      transform: translateY(-3px);
    }

    /* General Section Styling */
    .page-pp88__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      text-align: center;
      margin: 60px 0 40px;
      padding-bottom: 15px;
      border-bottom: 2px solid rgba(255, 204, 0, 0.3);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-pp88__introduction-section,
    .page-pp88__quick-access-section,
    .page-pp88__games-section,
    .page-pp88__promotions-section,
    .page-pp88__security-support-section,
    .page-pp88__faq-section,
    .page-pp88__blog-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Introduction Section */
    .page-pp88__intro-content {
      text-align: center;
      font-size: 1.1em;
      color: #e0e0e0;
    }

    .page-pp88__intro-content p {
      margin-bottom: 20px;
    }

    .page-pp88__intro-features {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }

    .page-pp88__feature-item {
      background-color: #2c2c2c;
      border-radius: 10px;
      padding: 30px;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

    .page-pp88__feature-item:hover {
      transform: translateY(-10px);
    }

    .page-pp88__feature-icon {
      width: 100px; /* Ensure images are not too small */
      height: 100px;
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
    }

    .page-pp88__feature-title {
      font-size: 1.6em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-pp88__feature-item p {
      font-size: 0.95em;
      color: #cccccc;
    }

    /* Quick Access Section */
    .page-pp88__access-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-pp88__access-btn {
      background-color: #4CAF50; /* Green */
      color: white;
      padding: 15px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      min-width: 180px;
      text-align: center;
    }

    .page-pp88__access-btn:hover {
      background-color: #45a049;
      transform: translateY(-3px);
    }

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

    .page-pp88__game-card {
      background-color: #2c2c2c;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-pp88__game-card:hover {
      transform: translateY(-10px);
    }

    .page-pp88__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-pp88__game-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin: 20px 15px 10px;
    }

    .page-pp88__game-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px 20px;
    }

    .page-pp88__game-btn {
      display: inline-block;
      background-color: #f44336; /* Red */
      color: white;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color 0.3s ease;
    }

    .page-pp88__game-btn:hover {
      background-color: #d32f2f;
    }

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

    .page-pp88__promo-card {
      background-color: #2c2c2c;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-pp88__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-pp88__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-pp88__promo-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin: 20px 15px 10px;
    }

    .page-pp88__promo-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px 20px;
    }

    .page-pp88__promo-btn {
      display: inline-block;
      background-color: #007bff; /* Blue */
      color: white;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color 0.3s ease;
    }

    .page-pp88__promo-btn:hover {
      background-color: #0056b3;
    }

    /* Security & Support Section */
    .page-pp88__security-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      font-size: 1.1em;
      color: #e0e0e0;
    }

    .page-pp88__security-content p {
      margin-bottom: 15px;
      max-width: 800px;
    }

    .page-pp88__contact-info {
      margin-top: 20px;
      margin-bottom: 30px;
    }

    .page-pp88__contact-info p {
      margin: 10px 0;
    }

    .page-pp88__contact-info a {
      color: #ffcc00;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-pp88__contact-info a:hover {
      color: #e6b800;
      text-decoration: underline;
    }

    .page-pp88__security-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      margin-top: 30px;
    }

    /* FAQ Section */
    .page-pp88__faq-list {
      margin-top: 40px;
    }

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

    .page-pp88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a3a;
      color: #ffcc00;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-pp88__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-pp88__faq-q-text {
      margin: 0;
      color: #ffcc00;
      pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-pp88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-pp88__faq-item.active .page-pp88__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

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

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

    /* Blog Section */
    .page-pp88__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-pp88__blog-card {
      background-color: #2c2c2c;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .page-pp88__blog-card:hover {
      transform: translateY(-10px);
    }

    .page-pp88__blog-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
    }

    .page-pp88__blog-content {
      padding: 20px 25px;
    }

    .page-pp88__blog-title {
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-pp88__blog-title a {
      color: #ffcc00;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-pp88__blog-title a:hover {
      color: #e6b800;
      text-decoration: underline;
    }

    .page-pp88__blog-date {
      font-size: 0.85em;
      color: #888888;
      margin-bottom: 15px;
    }

    .page-pp88__blog-excerpt {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 20px;
    }

    .page-pp88__blog-readmore {
      display: inline-block;
      background-color: #6c757d; /* Grey */
      color: white;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-pp88__blog-readmore:hover {
      background-color: #5a6268;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-pp88__hero-title {
        font-size: 3em;
      }
      .page-pp88__hero-subtitle {
        font-size: 1.3em;
      }
      .page-pp88__section-title {
        font-size: 2.2em;
      }
      .page-pp88__feature-item {
        max-width: 300px;
      }
    }

    @media (max-width: 768px) {
      .page-pp88__hero-section {
        height: 80vh;
      }
      .page-pp88__hero-title {
        font-size: 2.5em;
        margin-bottom: 15px;
      }
      .page-pp88__hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
      }
      .page-pp88__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-pp88__hero-btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
        font-size: 1em;
      }

      .page-pp88__section-title {
        font-size: 1.8em;
        margin: 40px 0 30px;
      }

      .page-pp88__introduction-section,
      .page-pp88__quick-access-section,
      .page-pp88__games-section,
      .page-pp88__promotions-section,
      .page-pp88__security-support-section,
      .page-pp88__faq-section,
      .page-pp88__blog-section {
        padding: 30px 15px;
      }

      .page-pp88__intro-features {
        flex-direction: column;
        align-items: center;
      }
      .page-pp88__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-pp88__feature-icon {
        width: 80px;
        height: 80px;
      }

      .page-pp88__access-links {
        flex-direction: column;
        align-items: center;
      }
      .page-pp88__access-btn {
        width: 90%;
        max-width: 300px;
        font-size: 1em;
      }

      .page-pp88__games-grid,
      .page-pp88__promotions-grid,
      .page-pp88__blog-grid {
        grid-template-columns: 1fr;
      }
      .page-pp88__game-card,
      .page-pp88__promo-card,
      .page-pp88__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-pp88__security-image {
        max-width: 100%;
      }

      .page-pp88__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-pp88__faq-answer {
        padding: 0 20px;
      }
      .page-pp88__faq-item.active .page-pp88__faq-answer {
        padding: 15px 20px !important;
      }

      .page-pp88__blog-title {
        font-size: 1.3em;
      }
      .page-pp88__blog-excerpt,
      .page-pp88__blog-date {
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-pp88__hero-title {
        font-size: 2em;
      }
      .page-pp88__hero-subtitle {
        font-size: 1em;
      }
      .page-pp88__hero-btn {
        padding: 12px 25px;
      }
      .page-pp88__section-title {
        font-size: 1.6em;
      }
      .page-pp88__feature-title {
        font-size: 1.4em;
      }
      .page-pp88__game-title,
      .page-pp88__promo-title {
        font-size: 1.5em;
      }
    }