
    /* Base styles for the page */
    .page-8k8-bet-login {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: 10px; /* Small top padding, relying on body padding for header offset */
    }

    /* Container for content */
    .page-8k8-bet-login__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-8k8-bet-login__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #ffffff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-bet-login__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-bet-login__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-bet-login__hero-button {
      background-color: #fdbb2d;
      color: #1a2a6c;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-bet-login__hero-button:hover {
      background-color: #e6a000;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8k8-bet-login__section {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 8px;
      margin-bottom: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-bet-login__section-title {
      font-size: 2.2em;
      color: #1a2a6c;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

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

    /* Login Steps */
    .page-8k8-bet-login__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-bet-login__step-item {
      text-align: center;
      padding: 25px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #f9f9f9;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-bet-login__step-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-bet-login__step-icon {
      margin-bottom: 20px;
      width: 250px; /* Ensure minimum size */
      height: auto;
      max-width: 100%;
      border-radius: 8px;
    }

    .page-8k8-bet-login__step-number {
      font-size: 2.5em;
      color: #b21f1f;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-8k8-bet-login__step-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 15px;
    }

    .page-8k8-bet-login__step-description {
      color: #555;
    }

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

    .page-8k8-bet-login__feature-card {
      background-color: #fdfdfd;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-bet-login__feature-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-bet-login__feature-icon {
      margin-bottom: 20px;
      width: 300px; /* Ensure minimum size */
      height: auto;
      max-width: 100%;
      border-radius: 8px;
    }

    .page-8k8-bet-login__feature-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
    }

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

    /* Call to Action Section */
    .page-8k8-bet-login__cta-section {
      background-color: #b21f1f;
      color: #ffffff;
      text-align: center;
      padding: 50px 20px;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-bet-login__cta-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

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

    .page-8k8-bet-login__cta-button {
      background-color: #fdbb2d;
      color: #1a2a6c;
      padding: 15px 35px;
      border: none;
      border-radius: 5px;
      font-size: 1.3em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-bet-login__cta-button:hover {
      background-color: #e6a000;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-8k8-bet-login__faq-section {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 8px;
      margin-bottom: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-bet-login__faq-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-8k8-bet-login__faq-item {
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box; /* Required for list items */
      background-color: #f9f9f9;
    }

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

    .page-8k8-bet-login__faq-question:hover {
      background-color: #eef;
      color: #b21f1f;
    }

    .page-8k8-bet-login__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: inherit; /* Inherit color from parent for hover effect */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-bet-login__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #fdbb2d;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      line-height: 1; /* Ensure vertical alignment */
    }

    .page-8k8-bet-login__faq-item.active .page-8k8-bet-login__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual effect */
    }

    .page-8k8-bet-login__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: 1em;
    }

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

    /* Promotional Banner */
    .page-8k8-bet-login__promo-banner {
      background-color: #fdbb2d;
      color: #1a2a6c;
      text-align: center;
      padding: 30px 20px;
      border-radius: 10px;
      margin-top: 40px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-bet-login__promo-title {
      font-size: 2em;
      margin-bottom: 10px;
    }

    .page-8k8-bet-login__promo-text {
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .page-8k8-bet-login__promo-button {
      background-color: #1a2a6c;
      color: #fdbb2d;
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-8k8-bet-login__promo-button:hover {
      background-color: #0d173d;
      transform: translateY(-2px);
    }

    /* General paragraphs */
    .page-8k8-bet-login p {
      margin-bottom: 1em;
      color: #444;
    }

    /* Image wrapper for responsive images */
    .page-8k8-bet-login__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto; /* Center images */
    }

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

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

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

      .page-8k8-bet-login__section {
        padding: 25px;
      }

      .page-8k8-bet-login__section-title {
        font-size: 1.8em;
      }

      .page-8k8-bet-login__steps-grid,
      .page-8k8-bet-login__features-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
      }

      /* List item responsive requirements */
      .page-8k8-bet-login__step-item,
      .page-8k8-bet-login__feature-card,
      .page-8k8-bet-login__faq-item {
        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 */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

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

      .page-8k8-bet-login__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-bet-login__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-8k8-bet-login__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-bet-login__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-8k8-bet-login__promo-title {
        font-size: 1.6em;
      }

      .page-8k8-bet-login__promo-text {
        font-size: 0.95em;
      }

      .page-8k8-bet-login__promo-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      /* Image responsive adjustments */
      .page-8k8-bet-login__step-icon,
      .page-8k8-bet-login__feature-icon {
        max-width: 100%;
        height: auto;
      }

      .page-8k8-bet-login__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

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

      .page-8k8-bet-login__hero-section {
        padding: 40px 15px;
      }

      .page-8k8-bet-login__section {
        padding: 20px;
      }

      .page-8k8-bet-login__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-bet-login__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-bet-login__section-title {
        font-size: 1.6em;
      }
    }
  