
    /* General Styling for 8k8.com Log In Page */
    .page-8k8-3 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-top: 10px; /* Small padding, assuming body handles --header-offset */
    }

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

    .page-8k8-3__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-3__section--dark {
      background-color: #222222;
    }

    .page-8k8-3__section-title {
      font-size: 2.8em;
      margin-bottom: 30px;
      color: #ffcc00; /* Gold */
      text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
    }

    .page-8k8-3__section-subtitle {
      font-size: 1.4em;
      color: #cccccc;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-8k8-3__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino_lobby,login_screen,gaming_interface]') no-repeat center center;
      background-size: cover;
      padding: 100px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      text-align: center;
      position: relative;
    }

    .page-8k8-3__hero-content {
      max-width: 800px;
      color: #ffffff;
      padding: 20px;
      border-radius: 10px;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .page-8k8-3__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffcc00;
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
    }

    .page-8k8-3__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-3__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for primary action */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* Login Benefits Section */
    .page-8k8-3__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-3__benefit-card {
      background-color: #333333;
      padding: 30px;
      border-radius: 10px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8-3__benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-3__benefit-card-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: block;
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }

    .page-8k8-3__benefit-card-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-8k8-3__benefit-card-description {
      color: #cccccc;
      font-size: 1em;
    }

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

    .page-8k8-3__game-card {
      background-color: #333333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-3__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      border-radius: 10px 10px 0 0;
    }

    .page-8k8-3__game-card-content {
      padding: 20px;
      text-align: left;
    }

    .page-8k8-3__game-card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8-3__game-card-provider {
      font-size: 0.9em;
      color: #aaaaaa;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-8k8-3__promo-card {
      background-color: #333333;
      padding: 30px;
      border-radius: 10px;
      text-align: left;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8-3__promo-title {
      font-size: 2em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

    .page-8k8-3__promo-description {
      font-size: 1.1em;
      color: #cccccc;
      margin-bottom: 20px;
    }

    .page-8k8-3__promo-link {
      display: inline-block;
      background-color: #28a745; /* Green for promotions */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-3__promo-link:hover {
      background-color: #218838;
    }

    /* FAQ Section */
    .page-8k8-3__faq-section {
      background-color: #1a1a1a;
      padding: 60px 0;
    }

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

    .page-8k8-3__faq-item {
      background-color: #333333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #444444;
      color: #ffcc00;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-3__faq-question h3 {
      margin: 0;
      color: #ffcc00;
      font-size: 1.2em;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

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

    .page-8k8-3__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
    }

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

    .page-8k8-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

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

    .page-8k8-3__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-3__section {
        padding: 40px 0;
      }

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

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

      .page-8k8-3__hero-section {
        padding: 80px 0;
        min-height: 400px;
      }

      .page-8k8-3__hero-title {
        font-size: 2.5em;
      }

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

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

      .page-8k8-3__benefits-grid,
      .page-8k8-3__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-8k8-3__benefit-card,
      .page-8k8-3__game-card,
      .page-8k8-3__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-8k8-3__game-card-image {
        height: 180px;
      }

      .page-8k8-3__faq-question,
      .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;
      }
      
      /* Image responsiveness for all images */
      .page-8k8-3 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-3__benefit-card-icon {
        width: 60px;
        height: 60px;
      }
    }
  