
    :root {
      --page-8k8-com-3-primary-bg: #1a1a2e; /* Dark Blue/Purple */
      --page-8k8-com-3-secondary-bg: #2e2e4a; /* Slightly lighter dark blue */
      --page-8k8-com-3-text-color: #e0e0e0; /* Light Gray */
      --page-8k8-com-3-accent-color: #e94560; /* Vibrant Red/Pink */
      --page-8k8-com-3-secondary-accent: #0f3460; /* Darker Blue */
      --page-8k8-com-3-link-hover: #ffc107; /* Gold/Yellow */
      --page-8k8-com-3-border-color: rgba(255, 255, 255, 0.1);
      --page-8k8-com-3-shadow-color: rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-3 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-com-3-text-color);
      background-color: var(--page-8k8-com-3-primary-bg);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Small padding to avoid content directly touching the header, assuming body padding is handled by shared.css */
    }

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

    .page-8k8-com-3__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      min-height: 500px;
      background-color: var(--page-8k8-com-3-secondary-bg);
    }

    .page-8k8-com-3__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-8k8-com-3__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle overlay */
      max-width: 100%;
    }

    .page-8k8-com-3__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-8k8-com-3__hero-title {
      font-size: 3em;
      color: var(--page-8k8-com-3-text-color);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-8k8-com-3__hero-title strong {
      color: var(--page-8k8-com-3-accent-color);
    }

    .page-8k8-com-3__hero-description {
      font-size: 1.2em;
      color: var(--page-8k8-com-3-text-color);
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-8k8-com-3__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-com-3__cta-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
      box-sizing: border-box;
    }

    .page-8k8-com-3__cta-button--primary {
      background-color: var(--page-8k8-com-3-accent-color);
      color: #ffffff;
      border: 2px solid var(--page-8k8-com-3-accent-color);
    }

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

    .page-8k8-com-3__cta-button--secondary {
      background-color: transparent;
      color: var(--page-8k8-com-3-link-hover);
      border: 2px solid var(--page-8k8-com-3-link-hover);
    }

    .page-8k8-com-3__cta-button--secondary:hover {
      background-color: var(--page-8k8-com-3-link-hover);
      color: var(--page-8k8-com-3-primary-bg);
      transform: translateY(-3px);
    }

    .page-8k8-com-3__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-com-3-text-color);
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
    }

    .page-8k8-com-3__section-title strong {
      color: var(--page-8k8-com-3-accent-color);
    }

    .page-8k8-com-3__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
      color: var(--page-8k8-com-3-text-color);
      opacity: 0.8;
    }

    .page-8k8-com-3__games-section,
    .page-8k8-com-3__promotions-section,
    .page-8k8-com-3__why-choose-section,
    .page-8k8-com-3__faq-section {
      padding: 60px 20px;
      background-color: var(--page-8k8-com-3-primary-bg);
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8k8-com-3__games-section {
      background-color: var(--page-8k8-com-3-secondary-bg);
    }

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

    .page-8k8-com-3__game-card,
    .page-8k8-com-3__promo-card,
    .page-8k8-com-3__feature-item {
      background-color: var(--page-8k8-com-3-secondary-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px var(--page-8k8-com-3-shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      border: 1px solid var(--page-8k8-com-3-border-color);
    }

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

    .page-8k8-com-3__game-card-image,
    .page-8k8-com-3__promo-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-8k8-com-3__game-card-title,
    .page-8k8-com-3__promo-card-title {
      font-size: 1.6em;
      color: var(--page-8k8-com-3-accent-color);
      margin: 20px 20px 10px 20px;
      text-align: center;
    }

    .page-8k8-com-3__game-card-text,
    .page-8k8-com-3__promo-card-text {
      font-size: 1em;
      color: var(--page-8k8-com-3-text-color);
      padding: 0 20px 20px 20px;
      flex-grow: 1;
      text-align: center;
    }

    .page-8k8-com-3__game-card-action,
    .page-8k8-com-3__promo-card-action {
      background-color: var(--page-8k8-com-3-secondary-accent);
      padding: 15px 20px;
      text-align: center;
      font-weight: bold;
      color: var(--page-8k8-com-3-link-hover);
      cursor: default; /* No actual link */
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-3__game-card:hover .page-8k8-com-3__game-card-action,
    .page-8k8-com-3__promo-card:hover .page-8k8-com-3__promo-card-action {
      background-color: #1a4a80; /* Slightly darker secondary accent on hover */
    }

    .page-8k8-com-3__game-card-link-text,
    .page-8k8-com-3__promo-card-link-text {
      color: var(--page-8k8-com-3-link-hover);
      text-decoration: none;
    }

    .page-8k8-com-3__feature-item {
      padding: 30px;
      text-align: center;
      background-color: var(--page-8k8-com-3-secondary-bg);
    }

    .page-8k8-com-3__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

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

    .page-8k8-com-3__feature-text {
      font-size: 1em;
      color: var(--page-8k8-com-3-text-color);
      opacity: 0.8;
    }

    .page-8k8-com-3__faq-container {
      max-width: 900px;
      margin: 40px auto;
    }

    .page-8k8-com-3__faq-item {
      background-color: var(--page-8k8-com-3-secondary-bg);
      border: 1px solid var(--page-8k8-com-3-border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-8k8-com-3-secondary-bg);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-3__faq-question:hover {
      background-color: #3a3a5a; /* Slightly lighter on hover */
    }

    .page-8k8-com-3__faq-title {
      font-size: 1.2em;
      margin: 0;
      color: var(--page-8k8-com-3-text-color);
      pointer-events: none; /* Prevents text from blocking click event */
      flex-grow: 1;
      text-align: left;
    }

    .page-8k8-com-3__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-com-3-accent-color);
      margin-left: 20px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event */
    }

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

    .page-8k8-com-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-3-text-color);
      box-sizing: border-box;
    }

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

    .page-8k8-com-3__faq-answer p {
      margin: 0;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

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

    @media (max-width: 768px) {
      .page-8k8-com-3__hero-section {
        padding: 40px 15px;
        min-height: 400px;
      }

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

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

      .page-8k8-com-3__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-com-3__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 12px 20px;
      }

      .page-8k8-com-3__section-title {
        font-size: 1.8em;
      }

      .page-8k8-com-3__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      .page-8k8-com-3__games-section,
      .page-8k8-com-3__promotions-section,
      .page-8k8-com-3__why-choose-section,
      .page-8k8-com-3__faq-section {
        padding: 40px 15px;
      }

      /* List items responsive styling */
      .page-8k8-com-3__game-categories,
      .page-8k8-com-3__promo-grid,
      .page-8k8-com-3__features-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-3__game-card,
      .page-8k8-com-3__promo-card,
      .page-8k8-com-3__feature-item,
      .page-8k8-com-3__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-8k8-com-3__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-com-3__faq-title {
        font-size: 1.1em;
      }

      .page-8k8-com-3__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-com-3__faq-item.active .page-8k8-com-3__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-3__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-3__section-title {
        font-size: 1.6em;
      }
      .page-8k8-com-3__game-card-title,
      .page-8k8-com-3__promo-card-title {
        font-size: 1.4em;
      }
      .page-8k8-com-3__feature-title {
        font-size: 1.3em;
      }
    }
  