
    /* Base styles for the page-8k8-com-log-in */
    .page-8k8-com-log-in {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 0 40px 0; /* Adjusted padding-top to 10px as per fixed navbar spacing requirement */
    }

    .page-8k8-com-log-in__section {
      width: 100%;
      max-width: 1200px;
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #16213e;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Ensure padding is included in width calculation */
    }

    .page-8k8-com-log-in__hero-section {
      background-image: linear-gradient(rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8)), url('[GALLERY:hero:1920x1080:8k8_login,casino_background,gaming_platform]');
      background-size: cover;
      background-position: center;
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      border-radius: 0; /* Hero section might not have rounded corners */
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #e94560;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-log-in__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      color: #c0c0c0;
    }

    .page-8k8-com-log-in__cta-button {
      background-color: #e94560;
      color: #ffffff;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure it looks like a button even if not an <a> */
      display: inline-block;
      margin: 10px;
    }

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

    .page-8k8-com-log-in__section-title {
      font-size: 2.5em;
      color: #e94560;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com-log-in__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #e94560;
      border-radius: 2px;
    }

    .page-8k8-com-log-in__content-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
      color: #c0c0c0;
    }

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

    .page-8k8-com-log-in__feature-item {
      background-color: #0f3460;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-com-log-in__feature-icon {
      width: 200px; /* Minimum size 200x200px */
      height: 200px; /* Minimum size 200x200px */
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      border-radius: 50%;
      object-fit: cover;
    }

    .page-8k8-com-log-in__feature-title {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .page-8k8-com-log-in__feature-description {
      font-size: 0.95em;
      color: #a0a0a0;
    }

    .page-8k8-com-log-in__steps-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
    }

    .page-8k8-com-log-in__step-item {
      background-color: #0f3460;
      margin-bottom: 20px;
      padding: 25px 30px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      font-size: 2em;
      font-weight: bold;
      color: #e94560;
      margin-right: 20px;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #e94560;
      border-radius: 50%;
      background-color: #1a1a2e;
    }

    .page-8k8-com-log-in__step-content h3 {
      font-size: 1.4em;
      color: #ffffff;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-com-log-in__step-content p {
      font-size: 1em;
      color: #a0a0a0;
      margin-bottom: 0;
    }

    .page-8k8-com-log-in__image-container {
      text-align: center;
      margin: 40px 0;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      object-fit: cover;
    }

    .page-8k8-com-log-in__game-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-log-in__provider-item {
      background-color: #0f3460;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__provider-item:hover {
      transform: scale(1.05);
    }

    .page-8k8-com-log-in__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 60px; /* Adjusted to fit the placeholder size, but still larger than 200px source image */
      object-fit: contain;
      filter: brightness(0.8) grayscale(0.2); /* Allowed for stylistic purposes, not color change */
      transition: filter 0.3s ease;
    }

    .page-8k8-com-log-in__provider-item:hover .page-8k8-com-log-in__provider-logo {
      filter: brightness(1) grayscale(0);
    }

    .page-8k8-com-log-in__faq-list {
      margin-top: 30px;
      padding: 0;
      list-style: none;
    }

    .page-8k8-com-log-in__faq-item {
      background-color: #0f3460;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #0f3460;
      color: #ffffff;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-log-in__faq-question:hover {
      background-color: #1a1a2e;
    }

    .page-8k8-com-log-in__faq-question h3 {
      margin: 0;
      font-size: 1.2em; /* Keep font size consistent with question text */
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
      flex-grow: 1; /* Allow h3 to take available space */
    }

    .page-8k8-com-log-in__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: #e94560;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent div */
    }

    .page-8k8-com-log-in__faq-item.active .page-8k8-com-log-in__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' */
    }

    .page-8k8-com-log-in__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      color: #a0a0a0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      font-size: 1em;
      box-sizing: border-box;
    }

    .page-8k8-com-log-in__faq-item.active .page-8k8-com-log-in__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to accommodate content */
      padding: 20px 25px !important; /* Final padding when open */
      opacity: 1;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-com-log-in__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-com-log-in__hero-subtitle {
        font-size: 1.2em;
      }

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

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

      .page-8k8-com-log-in__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-log-in__feature-item,
      .page-8k8-com-log-in__step-item,
      .page-8k8-com-log-in__provider-item,
      .page-8k8-com-log-in__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-log-in__section {
        padding: 30px 15px;
      }

      .page-8k8-com-log-in__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-com-log-in__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-com-log-in__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-com-log-in__faq-item.active .page-8k8-com-log-in__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-log-in__cta-button {
        width: calc(100% - 20px);
        margin: 10px auto;
      }

      .page-8k8-com-log-in__image-container {
        padding: 0 10px;
      }

      .page-8k8-com-log-in__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-log-in__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-log-in__steps-list,
      .page-8k8-com-log-in__faq-list,
      .page-8k8-com-log-in__game-provider-grid {
        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-com-log-in__feature-description,
      .page-8k8-com-log-in__step-content p,
      .page-8k8-com-log-in__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    /* Ensure good contrast */
    body {
      background-color: #1a1a2e;
      color: #e0e0e0;
    }
    .page-8k8-com-log-in__hero-title { color: #e94560; } /* Good contrast against dark background */
    .page-8k8-com-log-in__hero-subtitle { color: #c0c0c0; } /* Good contrast against dark background */
    .page-8k8-com-log-in__cta-button { background-color: #e94560; color: #ffffff; } /* Good contrast */
    .page-8k8-com-log-in__section-title { color: #e94560; } /* Good contrast */
    .page-8k8-com-log-in__content-text { color: #c0c0c0; } /* Good contrast */
    .page-8k8-com-log-in__feature-item { background-color: #0f3460; } /* Dark blue, good contrast with text */
    .page-8k8-com-log-in__feature-title { color: #ffffff; } /* Good contrast */
    .page-8k8-com-log-in__feature-description { color: #a0a0a0; } /* Good contrast */
    .page-8k8-com-log-in__step-item { background-color: #0f3460; } /* Dark blue, good contrast with text */
    .page-8k8-com-log-in__step-item::before { color: #e94560; border-color: #e94560; background-color: #1a1a2e; } /* Good contrast */
    .page-8k8-com-log-in__step-content h3 { color: #ffffff; } /* Good contrast */
    .page-8k8-com-log-in__step-content p { color: #a0a0a0; } /* Good contrast */
    .page-8k8-com-log-in__provider-item { background-color: #0f3460; } /* Dark blue */
    .page-8k8-com-log-in__faq-item { background-color: #0f3460; } /* Dark blue */
    .page-8k8-com-log-in__faq-question { background-color: #0f3460; color: #ffffff; } /* Good contrast */
    .page-8k8-com-log-in__faq-question:hover { background-color: #1a1a2e; } /* Darker hover, good contrast */
    .page-8k8-com-log-in__faq-toggle { color: #e94560; } /* Good contrast */
    .page-8k8-com-log-in__faq-answer { color: #a0a0a0; } /* Good contrast */
  