
    /* Base styles for the page */
    .page-8k8-com-login-11 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small padding as per fixed navbar offset requirement */
    }

    .page-8k8-com-login-11__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-com-login-11__section {
      background-color: #fff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-login-11__hero-section {
      background-color: #001f3f; /* Dark blue, matching casino theme */
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 8px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-login-11__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(0, 31, 63, 0.8), rgba(0, 50, 100, 0.8));
      z-index: 1;
    }

    .page-8k8-com-login-11__hero-content {
      position: relative;
      z-index: 2;
    }

    .page-8k8-com-login-11__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8-com-login-11__promo-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold button */
      color: #001f3f;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none; /* Use button tag, no border */
      cursor: pointer;
    }

    .page-8k8-com-login-11__promo-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-8k8-com-login-11__image-full {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      display: block;
      object-fit: cover;
    }

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

    .page-8k8-com-login-11__grid-item {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
      text-align: center;
      transition: transform 0.2s ease;
    }

    .page-8k8-com-login-11__grid-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-login-11__grid-item-title {
      color: #001f3f;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-11__grid-item-text {
      font-size: 0.95em;
      color: #555;
    }

    .page-8k8-com-login-11__feature-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 15px;
    }

    .page-8k8-com-login-11__feature-item {
      background-color: #e8f0f7; /* Light blue */
      padding: 15px 20px;
      border-left: 5px solid #0056b3;
      border-radius: 5px;
      font-size: 1.1em;
      color: #001f3f;
      font-weight: bold;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-login-11__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-8k8-com-login-11__payment-logo {
      max-width: 120px;
      height: auto;
      border: 1px solid #eee;
      border-radius: 5px;
      padding: 5px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-8k8-com-login-11__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .page-8k8-com-login-11__provider-logo {
      max-width: 150px;
      height: auto;
      filter: grayscale(0%); /* Ensure no color filters are applied */
      opacity: 1;
      transition: opacity 0.3s ease;
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-8k8-com-login-11__provider-logo:hover {
      opacity: 0.8;
    }

    .page-8k8-com-login-11__faq-section {
      background-color: #f9f9f9;
      padding: 30px;
      border-radius: 8px;
      margin-top: 30px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-login-11__faq-item {
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: 5px;
      overflow: hidden;
    }

    .page-8k8-com-login-11__faq-question {
      background-color: #001f3f;
      color: #fff;
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

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

    .page-8k8-com-login-11__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-8k8-com-login-11__faq-answer {
      background-color: #fcfcfc;
      color: #333;
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-login-11__container {
        padding: 15px;
      }

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

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

      .page-8k8-com-login-11__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      /* List item mobile responsiveness */
      .page-8k8-com-login-11__feature-list {
        display: block; /* Change to block for full width items */
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-11__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 10px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-login-11__image-full,
      .page-8k8-com-login-11__payment-logo,
      .page-8k8-com-login-11__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-8k8-com-login-11__payment-methods,
      .page-8k8-com-login-11__provider-logos {
        flex-direction: column;
        align-items: center;
      }
      .page-8k8-com-login-11__payment-logo,
      .page-8k8-com-login-11__provider-logo {
        max-width: 80% !important; /* Adjust for better mobile display */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-11__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-11__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-login-11__section {
        padding: 20px;
      }
      .page-8k8-com-login-11__faq-question h3 {
        font-size: 1em;
      }
    }
  