
    /* Base styles for the page content wrapper */
    .page-8k8-com-ph-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Hero Section */
    .page-8k8-com-ph-2__hero-section {
      background: linear-gradient(135deg, #001f3f, #004080);
      color: #ffffff;
      padding: 10px 20px 60px; /* 10px top padding for header offset, then content padding */
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-ph-2__hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .page-8k8-com-ph-2__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      color: #ffcc00; /* Gold color for emphasis */
    }

    .page-8k8-com-ph-2__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-8k8-com-ph-2__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #001f3f;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-ph-2__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Floating Login/Register Buttons */
    .page-8k8-com-ph-2__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-8k8-com-ph-2__floating-button {
      background-color: #ffcc00;
      color: #001f3f;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-8k8-com-ph-2__floating-button--login {
      background-color: #007bff; /* A distinct color for login */
      color: #ffffff;
    }

    .page-8k8-com-ph-2__floating-button:hover {
      transform: translateY(-2px);
      background-color: #e6b800;
    }
    .page-8k8-com-ph-2__floating-button--login:hover {
      background-color: #0056b3;
    }


    /* General Section Styling */
    .page-8k8-com-ph-2__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 30px;
    }

    .page-8k8-com-ph-2__section-title {
      font-size: 2.5em;
      color: #001f3f;
      text-align: center;
      margin-bottom: 30px;
      font-weight: 700;
      position: relative;
    }

    .page-8k8-com-ph-2__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .page-8k8-com-ph-2__text-content {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Features Grid */
    .page-8k8-com-ph-2__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-ph-2__feature-item {
      background-color: #f0f8ff;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%; /* Ensure equal height */
    }

    .page-8k8-com-ph-2__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-com-ph-2__feature-icon {
      width: 100%;
      max-width: 250px; /* Min 200x200, so 250 is fine */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover;
      max-height: 150px; /* Constraint for feature icons */
      box-sizing: border-box; /* Important for images in responsive context */
    }
    .page-8k8-com-ph-2__feature-icon img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__feature-title {
      font-size: 1.5em;
      color: #001f3f;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-8k8-com-ph-2__feature-description {
      font-size: 1em;
      color: #666;
      flex-grow: 1; /* Allow description to take available space */
    }

    /* Game Categories */
    .page-8k8-com-ph-2__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-ph-2__game-card {
      background-color: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-8k8-com-ph-2__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-com-ph-2__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      box-sizing: border-box;
    }
    .page-8k8-com-ph-2__game-image img {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        width: 100%;
        height: 200px;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__game-info {
      padding: 20px;
    }

    .page-8k8-com-ph-2__game-title {
      font-size: 1.4em;
      color: #001f3f;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-com-ph-2__game-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Providers & Payments */
    .page-8k8-com-ph-2__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-ph-2__info-card {
      background-color: #f0f8ff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-ph-2__info-title {
      font-size: 1.8em;
      color: #001f3f;
      margin-bottom: 20px;
      text-align: center;
      font-weight: 600;
    }

    .page-8k8-com-ph-2__info-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 20px;
    }

    .page-8k8-com-ph-2__info-list-item {
      font-size: 1.1em;
      color: #444;
      padding: 8px 15px;
      background-color: #e6f7ff;
      border-radius: 5px;
      box-sizing: border-box; /* Crucial for responsive list items */
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

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

    .page-8k8-com-ph-2__promotion-card {
      background-color: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-8k8-com-ph-2__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-com-ph-2__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      box-sizing: border-box;
    }
    .page-8k8-com-ph-2__promotion-image img {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        width: 100%;
        height: 220px;
        box-sizing: border-box;
    }

    .page-8k8-com-ph-2__promotion-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-com-ph-2__promotion-title {
      font-size: 1.4em;
      color: #001f3f;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-com-ph-2__promotion-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-8k8-com-ph-2__promotion-button {
      display: block;
      background-color: #007bff;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Push to bottom */
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-ph-2__promotion-button:hover {
      background-color: #0056b3;
    }

    /* How to Get Started */
    .page-8k8-com-ph-2__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-ph-2__step-item {
      flex: 1 1 calc(33% - 20px); /* Three items per row on desktop */
      max-width: calc(33% - 20px);
      background-color: #e6f7ff;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      min-width: 280px; /* Ensure minimum width */
      box-sizing: border-box;
    }

    .page-8k8-com-ph-2__step-number {
      font-size: 2.5em;
      color: #ffcc00;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1;
    }

    .page-8k8-com-ph-2__step-title {
      font-size: 1.5em;
      color: #001f3f;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-8k8-com-ph-2__step-description {
      font-size: 1em;
      color: #666;
    }

    /* FAQ Section */
    .page-8k8-com-ph-2__faq-container {
      margin-top: 40px;
    }

    .page-8k8-com-ph-2__faq-item {
      background-color: #ffffff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-8k8-com-ph-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #004080;
      color: #ffffff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-ph-2__faq-question:hover {
      background-color: #0056b3;
    }

    .page-8k8-com-ph-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: inherit; /* Ensure h3 inherits color from parent */
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

    .page-8k8-com-ph-2__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-toggle {
      transform: rotate(45deg); /* Plus to minus visual effect */
    }

    .page-8k8-com-ph-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question horizontal 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: #333;
      background-color: #f0f8ff;
      border-top: 1px solid #e0e0e0;
    }

    .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-ph-2__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com-ph-2__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-com-ph-2__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-com-ph-2__section-title {
        font-size: 2em;
      }

      .page-8k8-com-ph-2__text-content {
        font-size: 1em;
      }

      .page-8k8-com-ph-2__features-grid,
      .page-8k8-com-ph-2__game-categories,
      .page-8k8-com-ph-2__info-grid,
      .page-8k8-com-ph-2__promotion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-ph-2__feature-item,
      .page-8k8-com-ph-2__game-card,
      .page-8k8-com-ph-2__promotion-card {
        padding: 20px;
      }

      .page-8k8-com-ph-2__info-list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px;
        text-align: center;
      }
      .page-8k8-com-ph-2__info-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          flex-direction: column;
          align-items: center;
      }

      .page-8k8-com-ph-2__step-item {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 25px;
      }

      .page-8k8-com-ph-2__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-8k8-com-ph-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-com-ph-2__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-com-ph-2__faq-item.active .page-8k8-com-ph-2__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness */
      .page-8k8-com-ph-2__feature-icon img,
      .page-8k8-com-ph-2__game-image img,
      .page-8k8-com-ph-2__promotion-image img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-8k8-com-ph-2__feature-icon,
      .page-8k8-com-ph-2__game-image,
      .page-8k8-com-ph-2__promotion-image {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
          height: auto !important; /* Adjust height for mobile */
      }
      .page-8k8-com-ph-2__game-image, .page-8k8-com-ph-2__promotion-image {
          height: 180px !important; /* Slightly smaller height on mobile */
      }
    }

    @media (max-width: 480px) {
        .page-8k8-com-ph-2__hero-title {
            font-size: 2em;
        }
        .page-8k8-com-ph-2__hero-description {
            font-size: 1em;
        }
        .page-8k8-com-ph-2__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row;
            width: calc(100% - 30px);
            justify-content: space-around;
        }
        .page-8k8-com-ph-2__floating-button {
            flex: 1;
            margin: 0 5px;
            font-size: 0.9em;
            padding: 10px 15px;
        }
        .page-8k8-com-ph-2__section {
            padding: 30px 15px;
            margin-top: 20px;
        }
        .page-8k8-com-ph-2__section-title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        .page-8k8-com-ph-2__game-image, .page-8k8-com-ph-2__promotion-image {
            height: 150px !important; /* Even smaller height on small mobiles */
        }
    }
  