
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #00BFFF; /* Deep Sky Blue */
      --dark-background: #1a1a2e; /* Dark Blue */
      --light-text: #ffffff;
      --grey-text: #cccccc;
      --accent-red: #ff4d4d;
      --border-radius-small: 8px;
      --border-radius-medium: 12px;
      --box-shadow-light: rgba(0, 0, 0, 0.2);
      --box-shadow-dark: rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, relying on body padding-top for header offset */
    }

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

    .page-8k8-com-login__hero-section {
      background-image: url('[GALLERY:hero:1920x1080:casino,login,mobile_gaming]');
      background-size: cover;
      background-position: center;
      padding: 80px 20px;
      text-align: center;
      border-radius: var(--border-radius-medium);
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 25px var(--box-shadow-dark);
    }

    .page-8k8-com-login__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
      z-index: 1;
    }

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

    .page-8k8-com-login__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px var(--box-shadow-dark);
      line-height: 1.2;
    }

    .page-8k8-com-login__hero-description {
      font-size: 1.3em;
      color: var(--light-text);
      margin-bottom: 30px;
    }

    .page-8k8-com-login__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--dark-background);
      padding: 15px 30px;
      border-radius: var(--border-radius-small);
      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-login__button:hover {
      background-color: #FFEB3B; /* Lighter gold */
      transform: translateY(-3px);
    }

    .page-8k8-com-login__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #22223b;
      border-radius: var(--border-radius-medium);
      box-shadow: 0 4px 15px var(--box-shadow-light);
    }

    .page-8k8-com-login__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 5px var(--box-shadow-dark);
    }

    .page-8k8-com-login__content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-8k8-com-login__feature-card {
      background-color: #2e2e4f;
      padding: 30px;
      border-radius: var(--border-radius-medium);
      text-align: center;
      box-shadow: 0 4px 10px var(--box-shadow-light);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-com-login__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px var(--box-shadow-dark);
    }

    .page-8k8-com-login__feature-icon {
      width: 100%; /* Ensure image placeholder fills card */
      height: 200px; /* Fixed height for image consistency */
      object-fit: cover;
      margin-bottom: 20px;
      border-radius: var(--border-radius-small);
      box-shadow: 0 2px 8px var(--box-shadow-light);
    }

    .page-8k8-com-login__feature-title {
      font-size: 1.5em;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .page-8k8-com-login__feature-description {
      color: var(--grey-text);
      font-size: 0.95em;
    }

    .page-8k8-com-login__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      padding: 0 20px;
    }

    .page-8k8-com-login__step-item {
      background-color: #2e2e4f;
      padding: 25px;
      border-radius: var(--border-radius-medium);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-shadow: 0 4px 10px var(--box-shadow-light);
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-login__step-number {
      background-color: var(--primary-color);
      color: var(--dark-background);
      min-width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      flex-shrink: 0;
    }

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

    .page-8k8-com-login__step-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-8k8-com-login__step-description {
      color: var(--grey-text);
      font-size: 0.95em;
    }

    .page-8k8-com-login__game-showcase {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 0 20px;
    }

    .page-8k8-com-login__game-card {
      background-color: #2e2e4f;
      border-radius: var(--border-radius-medium);
      overflow: hidden;
      width: 100%;
      max-width: 300px;
      box-shadow: 0 4px 10px var(--box-shadow-light);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-com-login__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px var(--box-shadow-dark);
    }

    .page-8k8-com-login__game-image {
      width: 100%;
      height: 200px; /* Consistent height for game images */
      object-fit: cover;
    }

    .page-8k8-com-login__game-info {
      padding: 15px;
      text-align: center;
    }

    .page-8k8-com-login__game-title {
      font-size: 1.2em;
      color: var(--primary-color);
      margin-bottom: 5px;
    }

    .page-8k8-com-login__game-provider {
      font-size: 0.9em;
      color: var(--grey-text);
    }

    .page-8k8-com-login__promotion-banner {
      background-color: var(--accent-red);
      padding: 30px;
      text-align: center;
      border-radius: var(--border-radius-medium);
      margin-top: 40px;
      box-shadow: 0 6px 20px var(--box-shadow-dark);
    }

    .page-8k8-com-login__promotion-title {
      font-size: 2em;
      color: var(--light-text);
      margin-bottom: 15px;
      text-shadow: 1px 1px 5px var(--box-shadow-dark);
    }

    .page-8k8-com-login__promotion-text {
      font-size: 1.1em;
      color: var(--light-text);
      margin-bottom: 25px;
    }

    .page-8k8-com-login__faq-list {
      list-style: none;
      padding: 0;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-com-login__faq-item {
      background-color: #2e2e4f;
      border-radius: var(--border-radius-medium);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px var(--box-shadow-light);
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3b3b6b;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login__faq-question:hover {
      background-color: #4a4a7a;
    }

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

    .page-8k8-com-login__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-8k8-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      color: var(--grey-text);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-8k8-com-login__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #22223b;
      border-radius: var(--border-radius-medium);
      margin-top: 40px;
      box-shadow: 0 4px 15px var(--box-shadow-light);
    }

    .page-8k8-com-login__cta-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

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

    @media (max-width: 1024px) {
      .page-8k8-com-login__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-login__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-com-login__section-title,
      .page-8k8-com-login__cta-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login__container {
        padding: 15px;
      }

      .page-8k8-com-login__hero-section {
        padding: 60px 15px;
        margin-bottom: 30px;
      }

      .page-8k8-com-login__hero-title {
        font-size: 2.5em;
      }

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

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

      .page-8k8-com-login__section {
        padding: 30px 0;
        margin-bottom: 25px;
      }

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

      .page-8k8-com-login__content-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .page-8k8-com-login__feature-card {
        padding: 25px;
      }

      .page-8k8-com-login__feature-icon {
        height: 180px;
      }

      .page-8k8-com-login__steps-list {
        padding: 0 15px;
      }

      .page-8k8-com-login__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100% !important; /* List item responsive */
        max-width: 100% !important; /* List item responsive */
        box-sizing: border-box !important; /* List item responsive */
        margin-left: 0 !important; /* List item responsive */
        margin-right: 0 !important; /* List item responsive */
      }

      .page-8k8-com-login__step-number {
        margin-bottom: 15px;
      }

      .page-8k8-com-login__step-title {
        font-size: 1.3em;
      }

      .page-8k8-com-login__game-showcase {
        padding: 0 15px;
      }

      .page-8k8-com-login__game-card {
        max-width: 100%;
      }

      .page-8k8-com-login__game-image {
        height: 180px;
      }

      .page-8k8-com-login__promotion-banner {
        padding: 25px;
        margin-top: 30px;
      }

      .page-8k8-com-login__promotion-title {
        font-size: 1.5em;
      }

      .page-8k8-com-login__promotion-text {
        font-size: 1em;
      }

      .page-8k8-com-login__faq-list {
        padding: 0 15px;
      }

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

      .page-8k8-com-login__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important; /* Ensure text wraps */
        word-break: break-word !important; /* Ensure text wraps */
      }

      .page-8k8-com-login__faq-answer {
        padding: 0 20px;
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important; /* Ensure text wraps */
        word-break: break-word !important; /* Ensure text wraps */
      }
      .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-login__cta-section {
        padding: 40px 15px;
        margin-top: 30px;
      }

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

      .page-8k8-com-login__cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login__hero-title {
        font-size: 2em;
      }
      .page-8k8-com-login__section-title,
      .page-8k8-com-login__cta-title {
        font-size: 1.6em;
      }
      .page-8k8-com-login__promotion-title {
        font-size: 1.3em;
      }
      .page-8k8-com-login__faq-question h3 {
        font-size: 1em;
      }
    }
  