
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #000000; /* Black */
      --text-color: #FFFFFF; /* White */
      --dark-grey: #333333;
      --light-grey: #f4f4f4;
      --accent-color: #FF4500; /* OrangeRed */
    }

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

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

    .page-8k8-com-login__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('[GALLERY:hero:1920x1080:casino,slots,login,8k8,gaming]') no-repeat center center/cover;
      border-radius: 10px;
      margin-bottom: 40px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-com-login__hero-subtitle {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login__promo-link {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-login__promo-link:hover {
      background-color: #e03d00;
    }

    .page-8k8-com-login__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login__content-block {
      background-color: var(--dark-grey);
      padding: 30px;
      border-radius: 8px;
      margin-bottom: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login__content-block p {
      margin-bottom: 15px;
      color: var(--light-grey);
    }

    .page-8k8-com-login__content-block h2 {
      color: var(--primary-color);
      font-size: 1.8em;
      margin-bottom: 20px;
    }

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

    .page-8k8-com-login__feature-item {
      background-color: #222;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-com-login__feature-icon {
      width: 250px; /* Minimum 200x200 */
      height: 200px; /* Minimum 200x200 */
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com-login__feature-item h3 {
      color: var(--primary-color);
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-8k8-com-login__feature-item p {
      color: var(--light-grey);
      font-size: 0.95em;
    }

    .page-8k8-com-login__game-providers,
    .page-8k8-com-login__payment-methods {
      margin-top: 40px;
    }

    .page-8k8-com-login__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for logos */
      gap: 20px;
      justify-items: center;
      align-items: center;
      padding: 20px;
      background-color: var(--dark-grey);
      border-radius: 8px;
    }

    .page-8k8-com-login__logo-item {
      background-color: #1a1a1a;
      padding: 15px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      width: 100%;
      max-width: 250px; /* Max width for individual logos */
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-8k8-com-login__logo-image {
      width: 200px; /* Minimum 200x200 */
      height: 100px; /* Minimum 200x200, but logos can be wider than taller */
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com-login__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--dark-grey);
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-8k8-com-login__cta-title {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .page-8k8-com-login__cta-description {
      font-size: 1.2em;
      color: var(--light-grey);
      margin-bottom: 30px;
    }

    .page-8k8-com-login__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-8k8-com-login__floating-button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure no underline if it was an anchor */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-com-login__floating-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-8k8-com-login__faq-section {
      margin-top: 50px;
      background-color: var(--dark-grey);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login__faq-item {
      border-bottom: 1px solid #444;
      padding: 15px 0;
    }

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

    .page-8k8-com-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
    }

    .page-8k8-com-login__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: var(--text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-login__faq-question:hover h3 {
      color: var(--primary-color);
    }

    .page-8k8-com-login__faq-toggle {
      font-size: 1.8em;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: var(--light-grey);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

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

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

      .page-8k8-com-login__hero-subtitle {
        font-size: 1.1em;
      }

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

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

      .page-8k8-com-login__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-8k8-com-login__logo-image {
        width: 150px; /* Adjusted for smaller screens */
        height: 75px;
      }

      .page-8k8-com-login__floating-buttons {
        flex-direction: column;
        gap: 10px;
        bottom: 15px;
        width: calc(100% - 40px);
        left: 20px;
        transform: translateX(0);
      }

      .page-8k8-com-login__floating-button {
        width: 100%;
        padding: 10px 20px;
        font-size: 1em;
      }

      /* List item specific responsive styles */
      .page-8k8-com-login__features-grid .page-8k8-com-login__feature-item,
      .page-8k8-com-login__logo-grid .page-8k8-com-login__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding to prevent overflow */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-8k8-com-login__faq-toggle {
        font-size: 1.5em;
      }

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

    @media (max-width: 480px) {
      .page-8k8-com-login__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login__section-title {
        font-size: 1.5em;
      }
      .page-8k8-com-login__promo-link {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login__floating-buttons {
        bottom: 10px;
        left: 10px;
        width: calc(100% - 20px);
      }
    }
  