
    /* Basic Reset & Base Styles */
    .page-8k8-8 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #e0e0e0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      padding-bottom: 40px;
    }

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

    .page-8k8-8__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-8__section--dark {
      background-color: #16213e;
    }

    .page-8k8-8__section-title {
      font-size: 2.8em;
      color: #e94560; /* Accent color */
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: bold;
    }

    .page-8k8-8__section-subtitle {
      font-size: 1.2em;
      color: #b0b0b0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-8__hero-section {
      background-color: #0f3460;
      padding: 10px 0 80px 0; /* 10px top padding, relying on body for header offset */
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      text-align: center;
    }

    .page-8k8-8__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6); /* Allowed for background images for readability */
      z-index: 1;
    }

    .page-8k8-8__hero-content {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 900px;
      padding: 20px;
    }

    .page-8k8-8__hero-title {
      font-size: 4em;
      margin-bottom: 15px;
      color: #e94560;
      line-height: 1.1;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-8__hero-subtitle {
      font-size: 1.8em;
      margin-bottom: 30px;
      color: #f0f0f0;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-8__cta-button {
      display: inline-block;
      background-color: #e94560;
      color: #ffffff;
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* About Section */
    .page-8k8-8__about-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      text-align: left;
      margin-top: 40px;
    }

    .page-8k8-8__about-text {
      flex: 1;
      min-width: 300px;
    }

    .page-8k8-8__about-text p {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: #c0c0c0;
    }

    .page-8k8-8__about-image-wrapper {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-8k8-8__about-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

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

    .page-8k8-8__promo-card {
      background-color: #27374d;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-8k8-8__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-8__promo-card-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .page-8k8-8__promo-card-title {
      font-size: 1.8em;
      color: #e94560;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-8__promo-card-description {
      font-size: 1em;
      color: #c0c0c0;
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .page-8k8-8__promo-card-button {
      background-color: #e94560;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      width: fit-content;
      margin: 0 auto;
    }

    .page-8k8-8__promo-card-button:hover {
      background-color: #ff6a81;
    }

    /* Game Selection Section */
    .page-8k8-8__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-8__provider-card {
      background-color: #27374d;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .page-8k8-8__provider-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-8__provider-image {
      max-width: 200px; /* Min 200px width */
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-8__provider-name {
      font-size: 1.1em;
      font-weight: bold;
      color: #e94560;
    }

    /* Why Choose Us Section */
    .page-8k8-8__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-8__feature-item {
      background-color: #27374d;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-8k8-8__feature-image {
      max-width: 200px; /* Adjusted to meet minimum size requirement */
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-8__feature-title {
      font-size: 1.6em;
      color: #e94560;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-8__feature-description {
      font-size: 1em;
      color: #c0c0c0;
    }

    /* FAQ Section */
    .page-8k8-8__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-8k8-8__faq-item {
      background-color: #27374d;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden; /* Ensures max-height transition works */
    }

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

    .page-8k8-8__faq-question h3 {
      margin: 0;
      color: #e94560;
      pointer-events: none; /* Crucial for click handling */
      flex-grow: 1;
    }

    .page-8k8-8__faq-question:hover {
      background-color: #1a2a47;
    }

    .page-8k8-8__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #e94560;
      margin-left: 15px;
      pointer-events: none; /* Crucial for click handling */
      transition: transform 0.3s ease;
    }

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

    .page-8k8-8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial 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: #c0c0c0;
      font-size: 1em;
    }

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

    /* Final CTA Section */
    .page-8k8-8__final-cta-section {
      background-color: #0f3460;
      padding: 80px 0;
      text-align: center;
    }

    .page-8k8-8__final-cta-title {
      font-size: 3em;
      color: #e94560;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-8__final-cta-description {
      font-size: 1.3em;
      color: #f0f0f0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-8__hero-title {
        font-size: 3.5em;
      }
      .page-8k8-8__hero-subtitle {
        font-size: 1.5em;
      }
      .page-8k8-8__section-title {
        font-size: 2.2em;
      }
      .page-8k8-8__final-cta-title {
        font-size: 2.5em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-8__hero-section {
        min-height: 400px;
        padding-bottom: 60px;
      }
      .page-8k8-8__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-8__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-8__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-8__section {
        padding: 40px 0;
      }
      .page-8k8-8__section-title {
        font-size: 2em;
      }
      .page-8k8-8__section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }
      .page-8k8-8__about-content {
        flex-direction: column;
        gap: 30px;
      }
      .page-8k8-8__promotions-grid,
      .page-8k8-8__game-providers-grid,
      .page-8k8-8__features-grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-8__promo-card,
      .page-8k8-8__provider-card,
      .page-8k8-8__feature-item {
        padding: 25px;
      }
      .page-8k8-8__promo-card-title {
        font-size: 1.5em;
      }
      .page-8k8-8__feature-title {
        font-size: 1.4em;
      }
      .page-8k8-8__faq-question {
        padding: 18px 20px;
        font-size: 1.1em;
      }
      .page-8k8-8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-8__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-8__faq-item.active .page-8k8-8__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-8__final-cta-title {
        font-size: 2em;
      }
      .page-8k8-8__final-cta-description {
        font-size: 1.1em;
      }

      /* List item specific responsive styles */
      .page-8k8-8__promotions-grid,
      .page-8k8-8__game-providers-grid,
      .page-8k8-8__features-grid,
      .page-8k8-8__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding to fit narrower screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-8__promo-card,
      .page-8k8-8__provider-card,
      .page-8k8-8__feature-item,
      .page-8k8-8__faq-item {
        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;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-8__hero-title {
        font-size: 2em;
      }
      .page-8k8-8__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-8__section-title {
        font-size: 1.8em;
      }
      .page-8k8-8__promo-card-title {
        font-size: 1.3em;
      }
      .page-8k8-8__feature-title {
        font-size: 1.2em;
      }
      .page-8k8-8__faq-question {
        font-size: 1em;
      }
      .page-8k8-8__final-cta-title {
        font-size: 1.8em;
      }
    }
  