
    :root {
      --page-8k8-3-primary-color: #e44d26; /* A vibrant orange-red, common in casino themes */
      --page-8k8-3-secondary-color: #333;
      --page-8k8-3-background-dark: #1a1a1a;
      --page-8k8-3-background-light: #2c2c2c;
      --page-8k8-3-text-light: #f0f0f0;
      --page-8k8-3-text-dark: #cccccc;
      --page-8k8-3-border-color: #555;
    }

    .page-8k8-3__hero-section {
      position: relative;
      padding: 10px 20px 60px; /* Small decorative padding-top, relying on body padding */
      background-color: var(--page-8k8-3-background-dark);
      color: var(--page-8k8-3-text-light);
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      box-sizing: border-box;
    }

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

    .page-8k8-3__hero-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
    }

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

    .page-8k8-3__main-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--page-8k8-3-primary-color);
      line-height: 1.2;
    }

    .page-8k8-3__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-8k8-3-text-dark);
      line-height: 1.6;
    }

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

    .page-8k8-3__login-button,
    .page-8k8-3__register-button,
    .page-8k8-3__register-now-button {
      background-color: var(--page-8k8-3-primary-color);
      color: var(--page-8k8-3-text-light);
      border: none;
      padding: 15px 30px;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-decoration: none; /* Ensure no underline if it was an <a> */
      display: inline-block; /* For button styling */
    }

    .page-8k8-3__login-button:hover,
    .page-8k8-3__register-button:hover,
    .page-8k8-3__register-now-button:hover {
      background-color: #ff6f40; /* Slightly lighter orange */
      transform: translateY(-2px);
    }

    .page-8k8-3__info-section,
    .page-8k8-3__how-to-login-section,
    .page-8k8-3__faq-section,
    .page-8k8-3__promo-banner {
      padding: 60px 20px;
      background-color: var(--page-8k8-3-background-light);
      color: var(--page-8k8-3-text-light);
      text-align: center;
      box-sizing: border-box;
    }

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

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

    .page-8k8-3__feature-item {
      background-color: var(--page-8k8-3-background-dark);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-3__feature-icon {
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Ensure icon container has height */
      width: 100%;
      overflow: hidden;
    }

    .page-8k8-3__feature-icon img {
      max-width: 100px;
      height: auto;
      display: block;
      max-height: 100px;
      object-fit: contain;
    }

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

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

    .page-8k8-3__login-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-3__step-item {
      background-color: var(--page-8k8-3-background-dark);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      box-sizing: border-box;
    }

    .page-8k8-3__step-number {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 50%;
      background-color: var(--page-8k8-3-primary-color);
      color: var(--page-8k8-3-text-light);
      font-size: 1.5em;
      font-weight: bold;
      text-align: center;
      margin-bottom: 15px;
    }

    .page-8k8-3__step-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-8k8-3-text-light);
    }

    .page-8k8-3__step-description {
      font-size: 1em;
      color: var(--page-8k8-3-text-dark);
      line-height: 1.5;
    }

    .page-8k8-3__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

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

    .page-8k8-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-3-background-dark);
      color: var(--page-8k8-3-text-light);
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-3__faq-title {
      font-size: 1.2em;
      margin: 0;
      flex-grow: 1;
      color: var(--page-8k8-3-text-light);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

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

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

    .page-8k8-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;
      background-color: var(--page-8k8-3-background-dark);
      color: var(--page-8k8-3-text-dark);
      font-size: 1em;
      line-height: 1.6;
    }

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

    .page-8k8-3__promo-banner {
      background-color: var(--page-8k8-3-primary-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      padding: 60px 20px;
      text-align: center;
      color: var(--page-8k8-3-text-light);
      box-sizing: border-box;
    }

    .page-8k8-3__promo-content {
      max-width: 700px;
    }

    .page-8k8-3__promo-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: var(--page-8k8-3-text-light);
    }

    .page-8k8-3__promo-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #f5f5f5;
      line-height: 1.6;
    }

    .page-8k8-3__promo-image {
      width: 100%;
      max-width: 600px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-3__promo-image img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-3__hero-section {
        min-height: 400px;
        padding-bottom: 40px;
      }

      .page-8k8-3__main-title {
        font-size: 2.2em;
      }

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

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

      .page-8k8-3__login-button,
      .page-8k8-3__register-button,
      .page-8k8-3__register-now-button {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-8k8-3__info-section,
      .page-8k8-3__how-to-login-section,
      .page-8k8-3__faq-section,
      .page-8k8-3__promo-banner {
        padding: 40px 15px;
      }

      .page-8k8-3__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-8k8-3__features-grid,
      .page-8k8-3__login-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        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-3__feature-item,
      .page-8k8-3__step-item {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-break: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
      }

      .page-8k8-3__feature-title,
      .page-8k8-3__step-title {
        font-size: 1.3em;
      }

      .page-8k8-3__feature-description,
      .page-8k8-3__step-description {
        font-size: 0.9em;
      }

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

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

      .page-8k8-3__faq-toggle {
        font-size: 1.5em;
      }

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

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

      .page-8k8-3__promo-banner {
        flex-direction: column;
        gap: 20px;
      }

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

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

      .page-8k8-3__promo-image {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-8k8-3__promo-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-3__feature-icon img {
        max-width: 80px !important;
        max-height: 80px !important;
      }
    }
  