
    /* Base styles for the page */
    :root {
      --page-8k8-com-online-primary-color: #FFD700; /* Gold */
      --page-8k8-com-online-secondary-color: #1A202C; /* Dark Grey */
      --page-8k8-com-online-accent-color: #4CAF50; /* Green */
      --page-8k8-com-online-text-color: #333;
      --page-8k8-com-online-light-text-color: #f0f0f0;
      --page-8k8-com-online-background-light: #f9f9f9;
      --page-8k8-com-online-background-dark: #2D3748; /* Darker Grey */
      --page-8k8-com-online-border-color: #e0e0e0;
    }

    .page-8k8-com-online {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-com-online-text-color);
      background-color: var(--page-8k8-com-online-background-light);
      padding-top: 10px; /* Small padding top for hero/first section, relying on body for header offset */
    }

    .page-8k8-com-online__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-8k8-com-online__hero-section {
      position: relative;
      background-image: url('[GALLERY:hero:1920x1080:casino,gaming,online_slots]');
      background-size: cover;
      background-position: center;
      color: var(--page-8k8-com-online-light-text-color);
      text-align: center;
      padding: 80px 20px;
      min-height: 450px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-online__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-8k8-com-online__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-8k8-com-online__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-com-online-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-online__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-8k8-com-online-light-text-color);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-online__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-com-online-primary-color);
      color: var(--page-8k8-com-online-secondary-color);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
    }

    .page-8k8-com-online__cta-button:hover {
      background-color: #FFC107; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    /* General Section Styles */
    .page-8k8-com-online__section {
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-com-online__section--dark {
      background-color: var(--page-8k8-com-online-background-dark);
      color: var(--page-8k8-com-online-light-text-color);
    }

    .page-8k8-com-online__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-8k8-com-online-secondary-color);
    }

    .page-8k8-com-online__section--dark .page-8k8-com-online__section-title {
      color: var(--page-8k8-com-online-primary-color);
    }

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

    .page-8k8-com-online__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-online__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-online__feature-image {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px auto;
        object-fit: cover;
        border-radius: 8px;
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Maintain aspect ratio */
    }

    .page-8k8-com-online__feature-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: var(--page-8k8-com-online-secondary-color);
    }

    .page-8k8-com-online__feature-description {
      color: var(--page-8k8-com-online-text-color);
    }

    /* Game Providers / Payment Methods */
    .page-8k8-com-online__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-online__logo-item {
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Minimal height to contain image */
      box-sizing: border-box;
    }

    .page-8k8-com-online__logo-image {
        width: 200px; /* Enforce minimum size */
        height: 200px; /* Enforce minimum size */
        max-width: 100%; /* Ensure responsiveness */
        max-height: 100%; /* Ensure responsiveness */
        object-fit: contain; /* Keep aspect ratio */
    }

    /* FAQ Section */
    .page-8k8-com-online__faq-section {
      background-color: var(--page-8k8-com-online-background-light);
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-com-online__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
      list-style: none;
      padding: 0;
    }

    .page-8k8-com-online__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-8k8-com-online-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-online__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f0f0f0;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-8k8-com-online-secondary-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-online__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjusted for better mobile scaling, parent font-size handles overall size */
      pointer-events: none; /* Crucial for click event delegation */
    }

    .page-8k8-com-online__faq-question:hover {
      background-color: #e5e5e5;
    }

    .page-8k8-com-online__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8k8-com-online-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event delegation */
    }

    .page-8k8-com-online__faq-item.active .page-8k8-com-online__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-8k8-com-online__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-8k8-com-online-text-color);
    }

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

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

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

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

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

      .page-8k8-com-online__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-online__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-online__feature-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-online__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-8k8-com-online__logo-item {
        height: 80px; /* Adjust height for mobile */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-online__logo-image {
        max-width: 90% !important; /* Smaller on mobile to fit */
        max-height: 70px !important; /* Smaller on mobile to fit */
        width: auto !important; /* Allow width to scale with max-width */
        height: auto !important; /* Allow height to scale with max-height */
        object-fit: contain;
        box-sizing: border-box !important;
      }

      .page-8k8-com-online__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-8k8-com-online__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-com-online__faq-answer {
        padding: 15px 15px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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