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

    .page-8k8-com-2 {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-com-2-dark-text-color);
      background-color: var(--page-8k8-com-2-background-light);
      padding-top: 10px; /* Small decorative top padding, body already handles header offset */
    }

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

    .page-8k8-com-2__hero-section {
      position: relative;
      background-color: var(--page-8k8-com-2-background-dark);
      color: var(--page-8k8-com-2-text-color);
      text-align: center;
      padding: 60px 20px;
      overflow: hidden;
      border-radius: var(--page-8k8-com-2-border-radius);
      margin-bottom: 30px;
    }

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

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

    .page-8k8-com-2__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-8k8-com-2-accent-color);
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

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

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

    .page-8k8-com-2__section {
      background-color: var(--page-8k8-com-2-text-color);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: var(--page-8k8-com-2-border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-2__section-title {
      font-size: 2em;
      color: var(--page-8k8-com-2-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-8k8-com-2__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-8k8-com-2-accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-8k8-com-2__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-8k8-com-2__feature-item,
    .page-8k8-com-2__game-card {
      background-color: var(--page-8k8-com-2-background-light);
      padding: 25px;
      border-radius: var(--page-8k8-com-2-border-radius);
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .page-8k8-com-2__feature-item:hover,
    .page-8k8-com-2__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-com-2__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--page-8k8-com-2-accent-color);
    }

    .page-8k8-com-2__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: var(--page-8k8-com-2-border-radius);
      margin-bottom: 15px;
    }

    .page-8k8-com-2__feature-title,
    .page-8k8-com-2__game-title {
      font-size: 1.4em;
      color: var(--page-8k8-com-2-secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-com-2__feature-description,
    .page-8k8-com-2__game-description {
      font-size: 0.95em;
      color: #666;
      text-align: center;
    }

    .page-8k8-com-2__promo-section {
      background-color: var(--page-8k8-com-2-primary-color);
      color: var(--page-8k8-com-2-text-color);
      text-align: center;
      padding: 50px 20px;
      border-radius: var(--page-8k8-com-2-border-radius);
      margin-bottom: 30px;
    }

    .page-8k8-com-2__promo-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-8k8-com-2-accent-color);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-2__promo-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-2__promo-link {
      background-color: var(--page-8k8-com-2-accent-color);
      color: var(--page-8k8-com-2-dark-text-color);
      padding: 15px 30px;
      border-radius: var(--page-8k8-com-2-border-radius);
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
    }

    .page-8k8-com-2__promo-link:hover {
      background-color: #e6a120;
      transform: translateY(-2px);
    }

    .page-8k8-com-2__faq-section {
      background-color: var(--page-8k8-com-2-text-color);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: var(--page-8k8-com-2-border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-2__faq-item {
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: var(--page-8k8-com-2-border-radius);
      overflow: hidden;
    }

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

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

    .page-8k8-com-2__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-8k8-com-2-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-8k8-com-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8k8-com-2-primary-color);
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-8k8-com-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      background-color: #fff;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-8k8-com-2__register-login-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-8k8-com-2__register-button,
    .page-8k8-com-2__login-button {
      background-color: var(--page-8k8-com-2-primary-color);
      color: var(--page-8k8-com-2-text-color);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      min-width: 120px;
    }

    .page-8k8-com-2__login-button {
      background-color: var(--page-8k8-com-2-accent-color);
      color: var(--page-8k8-com-2-dark-text-color);
    }

    .page-8k8-com-2__register-button:hover {
      background-color: #c93c1d;
      transform: translateY(-2px);
    }

    .page-8k8-com-2__login-button:hover {
      background-color: #e6a120;
      transform: translateY(-2px);
    }

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

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

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

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

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

      .page-8k8-com-2__features-grid,
      .page-8k8-com-2__game-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-2__feature-item,
      .page-8k8-com-2__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px; /* Adjust padding for smaller screens */
      }

      .page-8k8-com-2__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-2__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-8k8-com-2__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-com-2__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-2__register-login-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
        justify-content: center;
        width: calc(100% - 30px);
        left: 15px;
      }

      .page-8k8-com-2__register-button,
      .page-8k8-com-2__login-button {
        flex: 1;
        min-width: unset;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-2__hero-section {
        padding: 40px 15px;
      }

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

      .page-8k8-com-2__register-login-buttons {
        flex-direction: column; /* Stack buttons vertically on very small screens */
        bottom: 10px;
        right: 10px;
        left: unset;
        width: auto;
      }
      .page-8k8-com-2__register-button,
      .page-8k8-com-2__login-button {
        width: 150px; /* Fixed width for stacked buttons */
        margin: 0 auto; /* Center them */
      }
    }
  