
    /* Global styles for the page-8k8-login-2 */
    .page-8k8-login-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Section styling */
    .page-8k8-login-2__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-login-2__section--dark {
      background-color: #2c3e50; /* Dark blue */
      color: #ecf0f1; /* Light grey */
    }

    .page-8k8-login-2__section--light {
      background-color: #ffffff;
      color: #333;
    }

    /* Headings */
    .page-8k8-login-2__heading-primary {
      font-size: 2.8em;
      color: #c0392b; /* Red */
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-login-2__heading-secondary {
      font-size: 2em;
      color: #2980b9; /* Blue */
      margin-bottom: 15px;
      font-weight: 600;
    }

    .page-8k8-login-2__heading-tertiary {
      font-size: 1.5em;
      color: #2c3e50;
      margin-bottom: 10px;
      font-weight: 500;
    }
    .page-8k8-login-2__section--dark .page-8k8-login-2__heading-tertiary {
        color: #ecf0f1;
    }

    /* Paragraphs */
    .page-8k8-login-2__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    /* Buttons */
    .page-8k8-login-2__button {
      display: inline-block;
      background-color: #e74c3c; /* Red */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-login-2__button:hover {
      background-color: #c0392b; /* Darker red */
    }

    /* Hero Section */
    .page-8k8-login-2__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:gaming,login,secure]') center center no-repeat;
      background-size: cover;
      color: #ffffff;
      padding: 10px 20px 80px 20px; /* Small top padding, larger bottom padding */
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .page-8k8-login-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #f1c40f; /* Yellow */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-login-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
    }

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

    .page-8k8-login-2__feature-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-login-2__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-login-2__feature-icon {
      width: 250px; /* Minimum size */
      height: 250px; /* Minimum size */
      object-fit: contain;
      margin-bottom: 15px;
    }

    .page-8k8-login-2__feature-title {
      font-size: 1.3em;
      color: #2980b9;
      margin-bottom: 10px;
    }

    .page-8k8-login-2__feature-description {
      font-size: 0.95em;
      color: #555;
    }

    /* Promotions Section */
    .page-8k8-login-2__promo-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .page-8k8-login-2__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    /* Secure Gaming Section */
    .page-8k8-login-2__security-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .page-8k8-login-2__security-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    /* FAQ Section */
    .page-8k8-login-2__faq-container {
      margin-top: 40px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-login-2__faq-item {
      background-color: #ffffff;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .page-8k8-login-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f1f1f1;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-login-2__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8k8-login-2__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #2c3e50;
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
    }

    .page-8k8-login-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e74c3c;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event on parent div */
    }

    .page-8k8-login-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* 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: #555;
      font-size: 0.95em;
    }

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

    /* General image responsiveness */
    .page-8k8-login-2 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    /* Floating buttons for Register/Login (mobile-first approach) */
    .page-8k8-login-2__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: calc(100% - 40px); /* Adjust for padding */
        max-width: 400px; /* Limit width on larger screens */
        box-sizing: border-box;
    }

    .page-8k8-login-2__floating-button {
        flex: 1;
        padding: 12px 20px;
        font-size: 1.1em;
        text-align: center;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        border: none;
        cursor: pointer;
        color: #ffffff; /* Default text color */
    }

    .page-8k8-login-2__floating-button--login {
        background-color: #27ae60; /* Green */
    }

    .page-8k8-login-2__floating-button--login:hover {
        background-color: #229954;
        transform: translateY(-2px);
    }

    .page-8k8-login-2__floating-button--register {
        background-color: #3498db; /* Blue */
    }

    .page-8k8-login-2__floating-button--register:hover {
        background-color: #2980b9;
        transform: translateY(-2px);
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-login-2__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-login-2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-login-2__heading-primary {
        font-size: 2em;
      }

      .page-8k8-login-2__heading-secondary {
        font-size: 1.6em;
      }

      .page-8k8-login-2__section {
        padding: 30px 15px;
      }

      .page-8k8-login-2__features-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
      }

      .page-8k8-login-2__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-8k8-login-2__feature-icon {
        width: 200px; /* Minimum size */
        height: 200px; /* Minimum size */
      }

      /* Image responsiveness for all images */
      .page-8k8-login-2__promo-image,
      .page-8k8-login-2__security-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-8k8-login-2__faq-question {
        padding: 12px 15px;
      }

      .page-8k8-login-2__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-login-2__faq-answer {
        padding: 0 15px; /* Adjust initial padding for mobile */
        font-size: 0.9em;
      }

      .page-8k8-login-2__faq-item.active .page-8k8-login-2__faq-answer {
        padding: 15px !important; /* Adjust expanded padding for mobile */
      }

      .page-8k8-login-2__floating-buttons {
          bottom: 15px;
          gap: 10px;
          width: calc(100% - 30px); /* Smaller padding */
      }

      .page-8k8-login-2__floating-button {
          padding: 10px 15px;
          font-size: 1em;
      }
    }

    @media (max-width: 480px) {
        .page-8k8-login-2__hero-title {
            font-size: 2em;
        }
        .page-8k8-login-2__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-login-2__button {
            padding: 12px 25px;
            font-size: 1em;
        }
    }
  