
    :root {
      --page-primary-color: #e63946; /* A vibrant red for action/emphasis */
      --page-secondary-color: #f1faee; /* Light background */
      --page-text-color: #1d3557; /* Dark blue for readability */
      --page-accent-color: #457b9d; /* A complementary blue */
      --page-light-grey: #a8dadc; /* A lighter shade for backgrounds */
      --page-dark-grey: #333;
      --page-white: #ffffff;
      --page-border-radius: 8px;
    }

    .page-8k8-8k8-com-login {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-text-color);
      background-color: var(--page-secondary-color);
      padding-top: 10px; /* Small decorative padding, assuming body padding-top handles header offset */
    }

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

    .page-8k8-8k8-com-login__hero-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:online_betting,casino,8k8_login]') no-repeat center center/cover;
      color: var(--page-white);
      text-align: center;
      padding: 80px 20px;
      border-radius: var(--page-border-radius);
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      box-sizing: border-box;
    }

    .page-8k8-8k8-com-login__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: bold;
      color: var(--page-white);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-8k8-com-login__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      color: var(--page-light-grey);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-8k8-8k8-com-login__section {
      background-color: var(--page-white);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: var(--page-border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-8k8-com-login__section-title {
      font-size: 2.2em;
      color: var(--page-primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-8k8-com-login__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-8k8-8k8-com-login__card {
      background-color: var(--page-light-grey);
      padding: 25px;
      border-radius: var(--page-border-radius);
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-8k8-com-login__card-icon {
      margin-bottom: 15px;
      width: 100%;
      height: auto;
      max-width: 250px; /* Ensure images are not too wide in cards */
      min-width: 200px;
      min-height: 200px;
      object-fit: cover;
      border-radius: var(--page-border-radius);
    }

    .page-8k8-8k8-com-login__card-title {
      font-size: 1.5em;
      color: var(--page-accent-color);
      margin-bottom: 10px;
    }

    .page-8k8-8k8-com-login__content-text {
      font-size: 1.1em;
      color: var(--page-text-color);
      margin-bottom: 20px;
    }

    .page-8k8-8k8-com-login__image-full {
      width: 100%;
      height: auto;
      border-radius: var(--page-border-radius);
      margin-bottom: 20px;
      object-fit: cover;
      min-width: 200px;
      min-height: 200px;
    }

    .page-8k8-8k8-com-login__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .page-8k8-8k8-com-login__list-item {
      background-color: var(--page-secondary-color);
      padding: 10px 20px;
      border-radius: 25px;
      color: var(--page-text-color);
      font-weight: bold;
      border: 1px solid var(--page-accent-color);
      flex: 0 1 auto; /* Allow items to shrink and grow but not force full width */
      box-sizing: border-box;
      text-align: center;
      word-wrap: break-word; /* Ensure long words break */
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* FAQ Section Styles */
    .page-8k8-8k8-com-login__faq-section {
      background-color: var(--page-white);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: var(--page-border-radius);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-8k8-com-login__faq-item {
      border-bottom: 1px solid var(--page-light-grey);
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-8k8-8k8-com-login__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-8k8-8k8-com-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-accent-color);
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-8k8-com-login__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit parent font size */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-8k8-com-login__faq-question:hover {
      background-color: rgba(230, 57, 70, 0.05);
    }

    .page-8k8-8k8-com-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-8k8-8k8-com-login__faq-answer {
      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;
      color: var(--page-text-color);
      box-sizing: border-box;
    }

    .page-8k8-8k8-com-login__faq-answer p {
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 1em;
    }

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

    .page-8k8-8k8-com-login__faq-item.active .page-8k8-8k8-com-login__faq-toggle {
      content: "−";
    }

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

      .page-8k8-8k8-com-login__hero-section {
        padding: 60px 15px;
        min-height: 300px;
      }

      .page-8k8-8k8-com-login__hero-title {
        font-size: 2.2em;
      }

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

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

      .page-8k8-8k8-com-login__section {
        padding: 25px;
        margin-bottom: 20px;
      }

      .page-8k8-8k8-com-login__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-8k8-8k8-com-login__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-8k8-com-login__card-icon {
        max-width: 200px;
        min-width: 200px;
        min-height: 200px;
      }

      .page-8k8-8k8-com-login__list {
        flex-direction: column; /* Stack list items on mobile */
        gap: 10px;
      }

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

      .page-8k8-8k8-com-login__image-full {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        box-sizing: border-box !important;
      }

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

      .page-8k8-8k8-com-login__faq-answer {
        padding: 15px 10px;
      }

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