
    .page-8k8-777-com-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

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

    /* Hero Section */
    .page-8k8-777-com-login__hero-section {
      background: linear-gradient(135deg, #001f3f, #003366);
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px 20px; /* Decorative top padding, larger bottom padding */
      position: relative;
      overflow: hidden;
    }

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

    .page-8k8-777-com-login__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #ffd700; /* Gold for emphasis */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-8k8-777-com-login__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-777-com-login__hero-button-wrapper {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-8k8-777-com-login__hero-button {
      background-color: #ffd700; /* Gold */
      color: #001f3f; /* Dark blue */
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
    }

    .page-8k8-777-com-login__hero-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    .page-8k8-777-com-login__hero-image {
        position: absolute;
        bottom: -50px;
        right: -50px;
        opacity: 0.2;
        width: 600px; /* Example size for decorative image */
        height: auto;
        max-width: 100%;
        pointer-events: none;
    }

    /* Section Styling */
    .page-8k8-777-com-login__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-777-com-login__section--dark {
      background-color: #002a5c;
      color: #fff;
    }

    .page-8k8-777-com-login__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #001f3f;
    }

    .page-8k8-777-com-login__section--dark .page-8k8-777-com-login__section-title {
        color: #ffd700;
    }

    .page-8k8-777-com-login__text-content {
        max-width: 800px;
        margin: 0 auto 40px auto;
        font-size: 1.1em;
        line-height: 1.8;
        color: #555;
    }

    .page-8k8-777-com-login__section--dark .page-8k8-777-com-login__text-content {
        color: #e0e0e0;
    }

    /* Features Grid */
    .page-8k8-777-com-login__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-777-com-login__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

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

    .page-8k8-777-com-login__feature-icon {
      width: 80px; /* Ensure minimum size */
      height: 80px;
      margin-bottom: 20px;
      background-color: #003366;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #ffd700;
      font-size: 2em;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-777-com-login__feature-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #001f3f;
    }

    .page-8k8-777-com-login__feature-description {
      color: #666;
    }

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

    .page-8k8-777-com-login__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-777-com-login__game-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-777-com-login__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-8k8-777-com-login__game-info {
      padding: 20px;
    }

    .page-8k8-777-com-login__game-title {
      font-size: 1.3em;
      color: #001f3f;
      margin-bottom: 10px;
    }

    .page-8k8-777-com-login__game-provider {
      font-size: 0.9em;
      color: #777;
    }

    /* CTA Section */
    .page-8k8-777-com-login__cta-section {
      background: linear-gradient(90deg, #ffd700, #e6c200);
      color: #001f3f;
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-777-com-login__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #001f3f;
    }

    .page-8k8-777-com-login__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-777-com-login__cta-button {
      background-color: #001f3f;
      color: #ffd700;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: inline-block;
      border: none;
      cursor: pointer;
    }

    .page-8k8-777-com-login__cta-button:hover {
      background-color: #003366;
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-8k8-777-com-login__faq-section {
      padding: 60px 0;
      background-color: #f0f2f5;
    }

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

    .page-8k8-777-com-login__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      overflow: hidden;
    }

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

    .page-8k8-777-com-login__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click */
        color: #fff; /* Ensure contrast */
    }

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

    .page-8k8-777-com-login__faq-toggle {
      font-size: 1.5em;
      margin-left: 20px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: #ffd700;
    }

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

    .page-8k8-777-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #333;
      text-align: left;
    }

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

    /* Payment Methods */
    .page-8k8-777-com-login__payment-methods-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-777-com-login__payment-card {
        background-color: #fff;
        padding: 20px 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        text-align: center;
        min-width: 150px;
        flex: 1 1 auto;
        max-width: 200px;
        box-sizing: border-box;
    }

    .page-8k8-777-com-login__payment-icon {
        width: 100px; /* Minimum size */
        height: auto;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .page-8k8-777-com-login__payment-name {
        font-size: 1.1em;
        font-weight: bold;
        color: #001f3f;
    }

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

      .page-8k8-777-com-login__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-777-com-login__hero-button {
        width: 100%;
        max-width: 300px; /* Limit button width on small screens */
        font-size: 1.1em;
        padding: 12px 25px;
      }

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

      .page-8k8-777-com-login__text-content {
        font-size: 1em;
      }

      .page-8k8-777-com-login__features-grid,
      .page-8k8-777-com-login__game-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-777-com-login__feature-item,
      .page-8k8-777-com-login__game-card,
      .page-8k8-777-com-login__payment-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for mobile */
      }

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

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

      .page-8k8-777-com-login__cta-button {
        width: 100%;
        max-width: 300px;
        font-size: 1.1em;
        padding: 12px 25px;
      }

      /* FAQ Mobile Adjustments */
      .page-8k8-777-com-login__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-8k8-777-com-login__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-777-com-login__faq-item.active .page-8k8-777-com-login__faq-answer {
        padding: 15px 20px !important;
      }

      /* Ensure images are responsive */
      .page-8k8-777-com-login__hero-image,
      .page-8k8-777-com-login__game-image,
      .page-8k8-777-com-login__payment-icon {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-8k8-777-com-login__hero-image {
          position: static; /* Remove absolute positioning on mobile for better flow */
          margin: 20px auto 0 auto;
          opacity: 0.5; /* Make it a bit more visible */
          width: 250px;
      }
    }

    @media (max-width: 480px) {
        .page-8k8-777-com-login__hero-title {
            font-size: 2em;
        }
        .page-8k8-777-com-login__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-777-com-login__section-title,
        .page-8k8-777-com-login__cta-title {
            font-size: 1.8em;
        }
    }
  