
    /* Page-specific styling for 8k8 com login 11 */
    .page-8k8-com-login-11 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Hero Section */
    .page-8k8-com-login-11__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #ffffff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding-top: 70px; /* Decorative top padding, respecting body's padding-top */
    }

    .page-8k8-com-login-11__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .page-8k8-com-login-11__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-com-login-11__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #fdbb2d; /* Gold-like color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-login-11__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-com-login-11__cta-button {
      display: inline-block;
      background-color: #fdbb2d; /* Gold button */
      color: #1a2a6c; /* Dark blue text */
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-login-11__cta-button:hover {
      background-color: #e0a010;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-8k8-com-login-11__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login-11__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-8k8-com-login-11__section-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #1a2a6c; /* Dark blue */
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com-login-11__section-title--dark {
      color: #fdbb2d; /* Gold */
    }

    .page-8k8-com-login-11__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #fdbb2d; /* Gold accent */
      border-radius: 2px;
    }

    .page-8k8-com-login-11__section-title--dark::after {
      background-color: #ecf0f1; /* Light accent for dark section */
    }

    .page-8k8-com-login-11__text-content {
      font-size: 1.1em;
      margin-bottom: 30px;
      text-align: left;
    }

    .page-8k8-com-login-11__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-login-11__card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: #333;
    }

    .page-8k8-com-login-11__card--dark {
      background-color: #34495e;
      color: #ecf0f1;
    }

    .page-8k8-com-login-11__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-login-11__card-icon {
      margin-bottom: 20px;
    }

    .page-8k8-com-login-11__card-icon img {
      width: 200px; /* Minimum size requirement */
      height: 200px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .page-8k8-com-login-11__card-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #1a2a6c; /* Dark blue */
    }

    .page-8k8-com-login-11__card-title--dark {
      color: #fdbb2d; /* Gold */
    }

    .page-8k8-com-login-11__card-description {
      font-size: 1em;
      color: #555;
    }

    .page-8k8-com-login-11__card-description--dark {
      color: #bdc3c7;
    }

    .page-8k8-com-login-11__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8-com-login-11__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      background-color: #ffffff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-login-11__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #fdbb2d;
      margin-right: 20px;
      flex-shrink: 0;
      background-color: #1a2a6c;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-login-11__step-content h3 {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-11__step-content p {
      color: #555;
      font-size: 1em;
    }

    /* Game Providers Section */
    .page-8k8-com-login-11__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for provider logos */
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-8k8-com-login-11__provider-logo {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      max-width: 200px; /* Ensure logos don't get too big */
      width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-com-login-11__provider-logo img {
      width: 100%;
      height: auto;
      max-width: 200px; /* Enforcing minimum image size from prompt */
      min-width: 200px; /* Enforcing minimum image size from prompt */
      min-height: 200px; /* Enforcing minimum image size from prompt */
      object-fit: contain;
      border-radius: 5px;
      max-width: 100% !important; /* Mobile responsive */
      height: auto !important; /* Mobile responsive */
      box-sizing: border-box !important; /* Mobile responsive */
    }

    /* FAQ Section */
    .page-8k8-com-login-11__faq-section {
      background-color: #f0f2f5;
    }

    .page-8k8-com-login-11__faq-container {
      max-width: 900px;
      margin: 40px auto 0;
      text-align: left;
    }

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

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

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

    .page-8k8-com-login-11__faq-question h3 {
      margin: 0;
      color: #ffffff;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-login-11__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to -) */
    }
    .page-8k8-com-login-11__faq-toggle::before {
      content: '+'; /* Initial state */
    }
    .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-toggle::before {
      content: '−'; /* Change + to - when active */
    }


    .page-8k8-com-login-11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fdfdfd;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
      text-align: left;
    }

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

    /* Floating Login/Register Buttons */
    .page-8k8-com-login-11__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-8k8-com-login-11__floating-button {
        background-color: #fdbb2d;
        color: #1a2a6c;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        text-align: center;
        min-width: 120px; /* Ensure buttons are wide enough */
    }

    .page-8k8-com-login-11__floating-button--register {
        background-color: #1a2a6c;
        color: #fdbb2d;
    }

    .page-8k8-com-login-11__floating-button:hover {
        transform: translateY(-3px);
        background-color: #e0a010;
    }

    .page-8k8-com-login-11__floating-button--register:hover {
        background-color: #2b3e8a;
    }


    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-8k8-com-login-11__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-com-login-11__hero-description {
        font-size: 1em;
      }

      .page-8k8-com-login-11__section {
        padding: 40px 15px;
      }

      .page-8k8-com-login-11__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-8k8-com-login-11__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-login-11__card {
        padding: 25px;
      }

      .page-8k8-com-login-11__card-icon img {
        width: 100% !important;
        height: auto !important;
        max-width: 200px !important;
        min-width: 200px !important;
        min-height: 200px !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-11__step-item {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        width: 100% !important; /* List item responsive */
        max-width: 100% !important; /* List item responsive */
        box-sizing: border-box !important; /* List item responsive */
        margin-left: 0 !important; /* List item responsive */
        margin-right: 0 !important; /* List item responsive */
        word-wrap: break-word !important; /* Text wrapping */
        overflow-wrap: break-word !important; /* Text wrapping */
        word-break: break-word !important; /* Text wrapping for long keywords */
      }

      .page-8k8-com-login-11__steps-list {
        padding: 0 10px !important; /* List container responsive */
        width: 100% !important; /* List container responsive */
        max-width: 100% !important; /* List container responsive */
        box-sizing: border-box !important; /* List container responsive */
        margin-left: 0 !important; /* List container responsive */
        margin-right: 0 !important; /* List container responsive */
      }

      .page-8k8-com-login-11__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-8k8-com-login-11__step-content {
        text-align: center;
      }

      .page-8k8-com-login-11__provider-logo img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important; /* Enforcing minimum image size from prompt */
        min-height: 200px !important; /* Enforcing minimum image size from prompt */
        box-sizing: border-box !important;
      }
      .page-8k8-com-login-11__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Adjusted for smaller screens */
      }

      .page-8k8-com-login-11__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-com-login-11__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-com-login-11__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-login-11__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-8k8-com-login-11__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 100px;
      }
    }
  