
    :root {
      --page-8k8-3-primary-color: #e6b800; /* Gold */
      --page-8k8-3-secondary-color: #333333; /* Dark Grey */
      --page-8k8-3-accent-color: #ff4500; /* Orange Red */
      --page-8k8-3-background-dark: #1a1a1a; /* Very Dark Grey */
      --page-8k8-3-background-light: #f5f5f5; /* Light Grey */
      --page-8k8-3-text-light: #ffffff;
      --page-8k8-3-text-dark: #333333;
      --page-8k8-3-border-color: #444444;
    }

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

    .page-8k8-3__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

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

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

    .page-8k8-3__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 20px 80px; /* Adjusted padding-top as per instructions */
      background: linear-gradient(135deg, var(--page-8k8-3-background-dark) 0%, var(--page-8k8-3-secondary-color) 100%);
      color: var(--page-8k8-3-text-light);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 600px;
      text-align: center;
    }

    .page-8k8-3__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

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

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

    .page-8k8-3__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-3-text-light);
      font-weight: normal;
    }

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

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

    .page-8k8-3__h2-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-8k8-3-primary-color);
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-8k8-3__h3-title {
      font-size: 1.8em;
      color: var(--page-8k8-3-primary-color);
      margin-bottom: 20px;
    }

    .page-8k8-3__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-8k8-3-text-light);
    }

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

    .page-8k8-3__feature-card {
      background-color: var(--page-8k8-3-secondary-color);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-8k8-3-border-color);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      min-height: 250px;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-3__feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-3__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--page-8k8-3-primary-color);
    }

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

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

    .page-8k8-3__step-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      list-style: none;
      padding: 0;
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-3__step-item {
      background-color: var(--page-8k8-3-secondary-color);
      padding: 25px 30px;
      border-radius: 10px;
      display: flex;
      align-items: flex-start;
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      border-left: 5px solid var(--page-8k8-3-primary-color);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-3__step-number {
      font-size: 2.2em;
      font-weight: bold;
      color: var(--page-8k8-3-primary-color);
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-8k8-3__step-content h3 {
      font-size: 1.5em;
      color: var(--page-8k8-3-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-3__step-content p {
      font-size: 1em;
      color: var(--page-8k8-3-text-light);
    }

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

    .page-8k8-3__game-card {
      background-color: var(--page-8k8-3-secondary-color);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-8k8-3-border-color);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-3__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    }

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

    .page-8k8-3__game-info {
      padding: 20px;
    }

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

    .page-8k8-3__game-provider {
      font-size: 0.9em;
      color: #aaaaaa;
    }

    .page-8k8-3__promo-card {
      background-color: var(--page-8k8-3-secondary-color);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      text-align: left;
      border: 1px solid var(--page-8k8-3-border-color);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

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

    .page-8k8-3__promo-description {
      font-size: 1.1em;
      color: var(--page-8k8-3-text-light);
      margin-bottom: 20px;
    }

    .page-8k8-3__promo-details-list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-8k8-3__promo-details-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      color: var(--page-8k8-3-text-light);
      font-size: 1em;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-3__promo-details-item::before {
      content: '✓';
      color: var(--page-8k8-3-primary-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-8k8-3__faq-container {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-8k8-3__faq-item {
      background-color: var(--page-8k8-3-secondary-color);
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-8k8-3-border-color);
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-8k8-3-secondary-color);
      color: var(--page-8k8-3-primary-color);
      font-weight: bold;
      font-size: 1.2em;
      border-bottom: 1px solid var(--page-8k8-3-border-color);
    }

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

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

    .page-8k8-3__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: var(--page-8k8-3-text-light);
    }

    .page-8k8-3__faq-item.active .page-8k8-3__faq-toggle {
      transform: rotate(45deg); /* Changes + to x (or - if starting from -) */
    }

    .page-8k8-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--page-8k8-3-background-dark);
      color: var(--page-8k8-3-text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
    }

    .page-8k8-3__faq-item.active .page-8k8-3__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px 25px !important; /* Use !important as required */
      opacity: 1;
    }

    .page-8k8-3__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-3__disclaimer {
      font-size: 0.9em;
      color: #888888;
      margin-top: 60px;
      padding-top: 20px;
      border-top: 1px solid var(--page-8k8-3-border-color);
    }

    .page-8k8-3__external-link {
      color: var(--page-8k8-3-primary-color);
      text-decoration: none;
      font-weight: bold;
    }

    .page-8k8-3__external-link:hover {
      text-decoration: underline;
    }

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

      .page-8k8-3__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-8k8-3__h3-title {
        font-size: 1.5em;
      }

      .page-8k8-3__section {
        padding: 40px 15px;
      }

      .page-8k8-3__feature-grid,
      .page-8k8-3__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-3__feature-card,
      .page-8k8-3__game-card,
      .page-8k8-3__promo-card,
      .page-8k8-3__faq-item,
      .page-8k8-3__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-3__step-list,
      .page-8k8-3__promo-details-list,
      .page-8k8-3__faq-container {
        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-3__feature-icon {
        width: 80px;
        height: 80px;
      }

      .page-8k8-3__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-8k8-3__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-8k8-3__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-3__faq-question h3 {
        font-size: 1.1em;
      }

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

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

    @media (max-width: 480px) {
      .page-8k8-3__hero-title {
        font-size: 2em;
      }

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

      .page-8k8-3__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }
  