
    /* Page-specific CSS for 8k8 com ph */
    .page-8k8-com-ph {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a2e; /* Dark background for casino theme */
      line-height: 1.6;
    }

    .page-8k8-com-ph__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
      box-sizing: border-box;
      overflow: hidden;
      background: linear-gradient(135deg, #2c003e 0%, #000000 100%);
    }

    .page-8k8-com-ph__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
    }

    .page-8k8-com-ph__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 15px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-ph__hero-title {
      font-size: 2.8em;
      color: #ffcc00; /* Gold color for highlights */
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
      line-height: 1.2;
    }

    .page-8k8-com-ph__hero-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

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

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

    .page-8k8-com-ph__section {
      padding: 60px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__section--dark {
      background-color: #120024;
    }

    .page-8k8-com-ph__section-title {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-8k8-com-ph__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-8k8-com-ph__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-ph__card {
      background-color: #2c003e;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-ph__card-image-wrapper {
      width: 100%;
      padding-bottom: 75%; /* 4:3 aspect ratio */
      position: relative;
      margin-bottom: 20px;
      border-radius: 10px;
      overflow: hidden;
    }

    .page-8k8-com-ph__card-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .page-8k8-com-ph__card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 15px;
      min-height: 2em; /* Ensure consistent height */
    }

    .page-8k8-com-ph__card-description {
      font-size: 0.95em;
      color: #c0c0c0;
      margin-bottom: 20px;
    }

    .page-8k8-com-ph__promo-link {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Pushes button to the bottom */
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-ph__promo-link:hover {
      background-color: #e6b800;
    }

    .page-8k8-com-ph__features-list {
      list-style: none;
      padding: 0;
      margin: 40px auto 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-8k8-com-ph__feature-item {
      background-color: #2c003e;
      padding: 25px;
      border-radius: 12px;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border-left: 5px solid #ffcc00;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-8k8-com-ph__feature-item-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8-com-ph__feature-item-description {
      color: #c0c0c0;
      font-size: 0.95em;
    }

    .page-8k8-com-ph__faq-section {
      background-color: #120024;
    }

    .page-8k8-com-ph__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-com-ph__faq-item {
      margin-bottom: 15px;
      border: 1px solid #33004d;
      border-radius: 10px;
      overflow: hidden;
      background-color: #2c003e;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #33004d;
      color: #ffcc00;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-ph__faq-question:hover {
      background-color: #4a006e;
    }

    .page-8k8-com-ph__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Crucial for click handling */
      color: #ffcc00;
    }

    .page-8k8-com-ph__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-toggle {
      transform: rotate(45deg); /* Changes + to X, or could be - */
    }
    
    .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-question {
        background-color: #4a006e;
    }

    .page-8k8-com-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 20px !important;
      opacity: 1;
    }
    
    /* Floating Register/Login Buttons */
    .page-8k8-com-ph__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-8k8-com-ph__floating-button {
      background-color: #ffcc00;
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-8k8-com-ph__floating-button--login {
      background-color: #ff6600; /* Orange for Login */
      box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    }

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

    .page-8k8-com-ph__floating-button--login:hover {
      background-color: #e65c00;
    }


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

      .page-8k8-com-ph__hero-description {
        font-size: 1em;
      }

      .page-8k8-com-ph__section {
        padding: 40px 15px;
      }

      .page-8k8-com-ph__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-8k8-com-ph__grid {
        grid-template-columns: 1fr;
      }
      
      .page-8k8-com-ph__card {
        padding: 20px;
      }

      .page-8k8-com-ph__card-title {
        font-size: 1.3em;
      }

      .page-8k8-com-ph__features-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-ph__feature-item {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-ph__features-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-ph__faq-question {
        padding: 12px 15px;
      }
      .page-8k8-com-ph__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-com-ph__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-answer {
        padding: 15px 15px !important;
      }

      .page-8k8-com-ph__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        width: calc(100% - 30px);
        justify-content: center;
      }

      .page-8k8-com-ph__floating-button {
        flex: 1; /* Distribute space evenly */
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  