
    :root {
      --page-8k8-8-primary-color: #e5a000; /* Gold/Orange */
      --page-8k8-8-secondary-color: #333; /* Dark Grey */
      --page-8k8-8-accent-color: #007bff; /* Blue for highlights */
      --page-8k8-8-text-color: #f0f0f0; /* Light text for dark backgrounds */
      --page-8k8-8-background-dark: #1a1a1a; /* Dark background */
      --page-8k8-8-background-light: #2a2a2a; /* Slightly lighter dark background */
      --page-8k8-8-border-color: #555;
    }

    .page-8k8-8 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-8-text-color);
      background-color: var(--page-8k8-8-background-dark);
      line-height: 1.6;
    }

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

    .page-8k8-8__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:8k8,casino,gaming_table]') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 100px 20px 60px; /* Adjusted padding-top to account for potential header */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      position: relative;
    }

    .page-8k8-8__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: var(--page-8k8-8-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-8__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 800px;
      opacity: 0.9;
    }

    .page-8k8-8__button {
      display: inline-block;
      background-color: var(--page-8k8-8-primary-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-8__button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    .page-8k8-8__title {
      font-size: 2.5em;
      color: var(--page-8k8-8-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-8k8-8__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ccc;
    }

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

    .page-8k8-8__feature-card {
      background-color: var(--page-8k8-8-background-light);
      border: 1px solid var(--page-8k8-8-border-color);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-8__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-8__feature-icon {
      margin-bottom: 20px;
      width: 100px;
      height: 100px;
      max-width: 100%;
      height: auto;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-8__feature-title {
      font-size: 1.5em;
      color: var(--page-8k8-8-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-8__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-8__game-card {
      background-color: var(--page-8k8-8-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-8__game-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-8__game-info {
      padding: 20px;
      text-align: center;
    }

    .page-8k8-8__game-title {
      font-size: 1.3em;
      color: var(--page-8k8-8-primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-8__game-description {
      font-size: 0.95em;
      color: #bbb;
    }

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

    .page-8k8-8__promo-item {
      background-color: var(--page-8k8-8-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-8__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-8__promo-content {
      padding: 25px;
    }

    .page-8k8-8__promo-title {
      font-size: 1.4em;
      color: var(--page-8k8-8-primary-color);
      margin-bottom: 15px;
    }

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

    .page-8k8-8__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-8__payment-logo {
      width: 120px;
      height: 80px;
      object-fit: contain;
      background-color: #fff;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-8__payment-logo:hover {
      transform: scale(1.05);
    }

    .page-8k8-8__faq-section {
      background-color: var(--page-8k8-8-background-light);
      border-radius: 10px;
      padding: 30px;
      margin-top: 50px;
    }

    .page-8k8-8__faq-item {
      border-bottom: 1px solid var(--page-8k8-8-border-color);
      margin-bottom: 15px;
      padding-bottom: 15px;
    }

    .page-8k8-8__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-8k8-8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 15px 0;
      transition: background-color 0.3s ease;
    }

    .page-8k8-8__faq-question:hover {
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 5px;
    }

    .page-8k8-8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-8-text-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-8__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-8-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

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

    .page-8k8-8__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: #bbb;
      font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-8__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-8__title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-8__hero-section {
        padding: 80px 15px 40px;
        min-height: 400px;
      }
      .page-8k8-8__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-8__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-8__section {
        padding: 30px 15px;
      }
      .page-8k8-8__title {
        font-size: 1.8em;
      }
      .page-8k8-8__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* List item responsive rules */
      .page-8k8-8__features-grid,
      .page-8k8-8__game-grid,
      .page-8k8-8__promo-list {
        grid-template-columns: 1fr;
        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-8__feature-card,
      .page-8k8-8__game-card,
      .page-8k8-8__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to prevent content being too wide */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-8__game-info, .page-8k8-8__promo-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-8k8-8__game-image,
      .page-8k8-8__promo-image,
      .page-8k8-8__payment-logo,
      .page-8k8-8__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-8__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-8__faq-answer {
        font-size: 0.95em;
        padding: 0 10px; /* Slightly reduced padding for mobile */
      }
      .page-8k8-8__faq-item.active .page-8k8-8__faq-answer {
        padding: 15px 10px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-8__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-8__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-8__title {
        font-size: 1.5em;
      }
      .page-8k8-8__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  