
    /* General styles for the page */
    .page-www-8k8 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 60px; /* Space for sticky footer or general bottom padding */
      padding-top: 10px; /* Small top padding, assuming body already has header offset */
    }

    .page-www-8k8__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-www-8k8__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      background-color: #2a2a2a;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-www-8k8__section-heading {
      font-size: 2.5em;
      color: #ffd700; /* Gold */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .page-www-8k8__sub-heading {
      font-size: 1.8em;
      color: #ffffff;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-www-8k8__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
      color: #e0e0e0;
    }

    /* Hero Section */
    .page-www-8k8__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:online casino,gaming,Philippines,neon]') no-repeat center center/cover;
      text-align: center;
      padding: 80px 20px;
      border-radius: 10px;
      margin-bottom: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
    }

    .page-www-8k8__hero-title {
      font-size: 3.5em;
      color: #ffd700;
      margin-bottom: 20px;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-www-8k8__hero-subtitle {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .page-www-8k8__hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .page-www-8k8__button {
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-www-8k8__button:hover {
      background-color: #e0b800;
      transform: translateY(-2px);
    }
    
    .page-www-8k8__button--secondary {
      background-color: #007bff;
      color: #ffffff;
    }

    .page-www-8k8__button--secondary:hover {
      background-color: #0056b3;
    }

    /* Games Showcase */
    .page-www-8k8__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-www-8k8__game-card {
      background-color: #333333;
      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;
      display: flex;
      flex-direction: column;
    }

    .page-www-8k8__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-www-8k8__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      height: auto;
    }
    
    .page-www-8k8__game-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-www-8k8__game-title {
      font-size: 1.4em;
      color: #ffd700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-www-8k8__game-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-www-8k8__promo-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-www-8k8__promo-item {
      background-color: #333333;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 20px;
    }
    
    .page-www-8k8__promo-item-image {
        width: 150px;
        height: 100px;
        object-fit: cover;
        border-radius: 5px;
        flex-shrink: 0;
        max-width: 100%;
        height: auto;
    }

    .page-www-8k8__promo-content {
        flex-grow: 1;
    }

    .page-www-8k8__promo-title {
      font-size: 1.6em;
      color: #ffd700;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-www-8k8__promo-description {
      font-size: 1em;
      color: #e0e0e0;
    }

    /* Security and Payments */
    .page-www-8k8__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
    }

    .page-www-8k8__payment-logo {
      width: 120px;
      height: 60px;
      object-fit: contain;
      background-color: #444444;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      max-width: 100%;
      height: auto;
    }
    
    /* Why Choose Us */
    .page-www-8k8__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-www-8k8__feature-card {
        background-color: #333333;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-www-8k8__feature-title {
        font-size: 1.5em;
        color: #ffd700;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-www-8k8__feature-description {
        color: #e0e0e0;
        font-size: 1em;
    }


    /* FAQ Section */
    .page-www-8k8__faq-list {
      margin-top: 30px;
    }

    .page-www-8k8__faq-item {
      background-color: #333333;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

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

    .page-www-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.2em; /* Ensure h3 font size matches parent */
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-www-8k8__faq-question:hover {
      background-color: #555555;
    }

    .page-www-8k8__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-www-8k8__faq-item.active .page-www-8k8__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, could also be '-' */
    }
    
    .page-www-8k8__faq-item.active .page-www-8k8__faq-question {
        color: #ffd700; /* Highlight active question */
    }
    
    .page-www-8k8__faq-item.active .page-www-8k8__faq-question h3 {
        color: #ffd700;
    }


    .page-www-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding for consistency with question */
      background-color: #3a3a3a;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-www-8k8__container {
        padding: 15px;
      }

      .page-www-8k8__section {
        padding: 30px 15px;
        margin-bottom: 20px;
      }

      .page-www-8k8__section-heading {
        font-size: 2em;
      }

      .page-www-8k8__hero-section {
        padding: 60px 15px;
        min-height: 300px;
      }

      .page-www-8k8__hero-title {
        font-size: 2.5em;
      }

      .page-www-8k8__hero-subtitle {
        font-size: 1.2em;
      }

      .page-www-8k8__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-www-8k8__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1.1em;
      }

      .page-www-8k8__games-grid,
      .page-www-8k8__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-www-8k8__game-image {
        height: 180px;
      }

      .page-www-8k8__promo-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
      }

      .page-www-8k8__promo-item-image {
        width: 100%;
        height: 150px;
        margin-bottom: 15px;
      }

      .page-www-8k8__payment-logo {
        width: 100px;
        height: 50px;
      }

      /* Image responsive styles */
      .page-www-8k8__game-image,
      .page-www-8k8__promo-item-image,
      .page-www-8k8__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-www-8k8__game-card,
      .page-www-8k8__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }


      /* List item responsiveness for FAQ */
      .page-www-8k8__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-www-8k8__faq-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-www-8k8__faq-question h3,
      .page-www-8k8__faq-answer p { /* Target p inside answer for word break */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-www-8k8__faq-question,
      .page-www-8k8__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-www-8k8__faq-question {
        font-size: 1.1em;
      }
      .page-www-8k8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-www-8k8__faq-toggle {
        font-size: 1.5em;
      }
    }
  