
    :root {
      --page-8k8-com-3-primary-color: #e44d26; /* A vibrant orange-red */
      --page-8k8-com-3-secondary-color: #333;
      --page-8k8-com-3-accent-color: #f7b32b; /* Gold/yellow for highlights */
      --page-8k8-com-3-text-color-light: #f8f8f8;
      --page-8k8-com-3-text-color-dark: #1a1a1a;
      --page-8k8-com-3-background-light: #ffffff;
      --page-8k8-com-3-background-dark: #222222;
      --page-8k8-com-3-border-radius: 8px;
    }

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

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

    .page-8k8-com-3__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      background-color: var(--page-8k8-com-3-background-light);
      border-radius: var(--page-8k8-com-3-border-radius);
    }

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

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

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

    .page-8k8-com-3__hero-section {
      position: relative;
      padding-top: 10px; /* Small padding, assuming body has header offset */
      padding-bottom: 100px;
      color: var(--page-8k8-com-3-text-color-light);
      text-align: center;
      overflow: hidden;
    }

    .page-8k8-com-3__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6);
    }

    .page-8k8-com-3__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }

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

    .page-8k8-com-3__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      font-weight: 300;
    }

    .page-8k8-com-3__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-8k8-com-3-primary-color);
      color: var(--page-8k8-com-3-text-color-light);
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .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__feature-item {
      background-color: var(--page-8k8-com-3-background-light);
      padding: 30px;
      border-radius: var(--page-8k8-com-3-border-radius);
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      border: 1px solid #eee;
    }

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

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

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

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

    .page-8k8-com-3__game-card {
      background-color: var(--page-8k8-com-3-background-dark);
      border-radius: var(--page-8k8-com-3-border-radius);
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      color: var(--page-8k8-com-3-text-color-light);
      transition: transform 0.3s ease;
    }

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

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

    .page-8k8-com-3__game-title {
      font-size: 1.2em;
      padding: 15px;
      color: var(--page-8k8-com-3-accent-color);
    }

    .page-8k8-com-3__promo-card {
      background-color: var(--page-8k8-com-3-background-dark);
      color: var(--page-8k8-com-3-text-color-light);
      border-radius: var(--page-8k8-com-3-border-radius);
      padding: 30px;
      margin-bottom: 25px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
      display: flex;
      align-items: center;
      gap: 25px;
      flex-wrap: wrap;
    }

    .page-8k8-com-3__promo-image {
      width: 200px;
      height: 150px;
      object-fit: cover;
      border-radius: var(--page-8k8-com-3-border-radius);
      flex-shrink: 0;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com-3__promo-content {
      flex-grow: 1;
    }

    .page-8k8-com-3__promo-title {
      font-size: 1.8em;
      color: var(--page-8k8-com-3-accent-color);
      margin-bottom: 10px;
    }

    .page-8k8-com-3__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-8k8-com-3__payment-item {
      text-align: center;
      background-color: var(--page-8k8-com-3-background-light);
      padding: 20px;
      border-radius: var(--page-8k8-com-3-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-3__payment-logo {
      width: 120px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com-3__payment-name {
      font-weight: bold;
      color: var(--page-8k8-com-3-secondary-color);
    }

    .page-8k8-com-3__faq-container {
      margin-top: 40px;
      border-top: 1px solid #eee;
      padding-top: 20px;
    }

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

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

    .page-8k8-com-3__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-8k8-com-3__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-com-3__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8k8-com-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: var(--page-8k8-com-3-secondary-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

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

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-8k8-com-3__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-3__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-com-3__section-title {
        font-size: 2em;
      }
      .page-8k8-com-3__promo-card {
        flex-direction: column;
        text-align: center;
      }
      .page-8k8-com-3__promo-image {
        width: 100%;
        height: auto;
        max-width: 300px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-3__container {
        padding: 15px;
      }
      .page-8k8-com-3__section {
        padding: 40px 15px;
      }
      .page-8k8-com-3__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-3__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-3__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-3__features-grid,
      .page-8k8-com-3__game-grid,
      .page-8k8-com-3__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item mobile responsiveness */
      .page-8k8-com-3__features-grid > *,
      .page-8k8-com-3__game-grid > *,
      .page-8k8-com-3__payment-grid > *,
      .page-8k8-com-3__promo-card {
        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 for smaller screens */
        padding-right: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-com-3__payment-item {
        padding: 15px !important;
      }
      .page-8k8-com-3__game-card .page-8k8-com-3__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-com-3__promo-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-com-3__feature-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-com-3__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-com-3__faq-question h3 {
        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__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-3__section-title {
        font-size: 1.8em;
      }
    }
  