
    :root {
      --primary-color: #ffcc00; /* Gold */
      --secondary-color: #333333; /* Dark Grey */
      --accent-color: #007bff; /* Blue for links/buttons */
      --text-color: #ffffff; /* White */
      --background-color: #1a1a1a; /* Dark background */
      --card-background: #2a2a2a; /* Slightly lighter dark for cards */
      --border-color: #444444;
      --button-hover-color: #e6b800;
    }

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

    .page-www-8k8-com-login-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-www-8k8-com-login-register__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,login,register,8k8]') no-repeat center center/cover;
      border-radius: 8px;
      margin-bottom: 40px;
    }

    .page-www-8k8-com-login-register__hero-title {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

    .page-www-8k8-com-login-register__button-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-www-8k8-com-login-register__button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      min-width: 180px;
    }

    .page-www-8k8-com-login-register__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    .page-www-8k8-com-login-register__section {
      background-color: var(--card-background);
      padding: 40px;
      margin-bottom: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-www-8k8-com-login-register__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
    }

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

    .page-www-8k8-com-login-register__card {
      background-color: var(--background-color);
      padding: 25px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-www-8k8-com-login-register__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-www-8k8-com-login-register__card-icon {
      width: 100px; /* Min size 200x200, so this is a placeholder */
      height: 100px; /* Min size 200x200, so this is a placeholder */
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    .page-www-8k8-com-login-register__card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-www-8k8-com-login-register__card-description {
      font-size: 1em;
      color: var(--text-color);
    }

    .page-www-8k8-com-login-register__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .page-www-8k8-com-login-register__step-item {
      background-color: var(--background-color);
      padding: 20px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .page-www-8k8-com-login-register__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--primary-color);
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 2px solid var(--primary-color);
      border-radius: 50%;
    }

    .page-www-8k8-com-login-register__step-content {
      flex-grow: 1;
    }

    .page-www-8k8-com-login-register__step-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-www-8k8-com-login-register__step-description {
      font-size: 1em;
      color: var(--text-color);
    }

    .page-www-8k8-com-login-register__promo-banner {
      background: linear-gradient(90deg, #333333, #555555);
      padding: 40px;
      border-radius: 8px;
      text-align: center;
      margin-bottom: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-www-8k8-com-login-register__promo-title {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-www-8k8-com-login-register__promo-text {
      font-size: 1.2em;
      color: var(--text-color);
      margin-bottom: 25px;
    }

    .page-www-8k8-com-login-register__promo-link {
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
    }

    .page-www-8k8-com-login-register__promo-link:hover {
      background-color: #0056b3;
    }

    .page-www-8k8-com-login-register__faq-section {
      background-color: var(--card-background);
      padding: 40px;
      margin-bottom: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-www-8k8-com-login-register__faq-item {
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-www-8k8-com-login-register__faq-item:last-child {
      margin-bottom: 0;
    }

    .page-www-8k8-com-login-register__faq-item:hover {
      background-color: #3a3a3a;
    }

    .page-www-8k8-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--background-color);
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid var(--border-color);
    }

    .page-www-8k8-com-login-register__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-www-8k8-com-login-register__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent div */
    }

    .page-www-8k8-com-login-register__faq-item.active .page-www-8k8-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, or just rotate */
    }

    .page-www-8k8-com-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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(--text-color);
    }

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

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

    .page-www-8k8-com-login-register__floating-button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
    }

    .page-www-8k8-com-login-register__floating-button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-www-8k8-com-login-register__hero-title {
        font-size: 2.5em;
      }

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

      .page-www-8k8-com-login-register__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-www-8k8-com-login-register__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-www-8k8-com-login-register__section {
        padding: 25px;
      }

      .page-www-8k8-com-login-register__section-title {
        font-size: 2em;
      }

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

      .page-www-8k8-com-login-register__card {
        padding: 20px;
      }

      .page-www-8k8-com-login-register__step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
      }

      .page-www-8k8-com-login-register__step-number {
        margin-bottom: 15px;
      }

      .page-www-8k8-com-login-register__promo-title {
        font-size: 1.8em;
      }

      .page-www-8k8-com-login-register__promo-text {
        font-size: 1em;
      }

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

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

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

      .page-www-8k8-com-login-register__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* For mobile, place side-by-side */
        width: calc(100% - 30px);
        justify-content: center;
      }

      .page-www-8k8-com-login-register__floating-button {
        flex: 1;
        max-width: 150px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
        .page-www-8k8-com-login-register__hero-title {
            font-size: 2em;
        }
        .page-www-8k8-com-login-register__hero-subtitle {
            font-size: 1em;
        }
        .page-www-8k8-com-login-register__floating-buttons {
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
        }
        .page-www-8k8-com-login-register__floating-button {
            max-width: none;
        }
    }

    /* Image responsive styles */
    .page-www-8k8-com-login-register img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    /* Container for images (if they are within specific blocks) */
    .page-www-8k8-com-login-register__card img,
    .page-www-8k8-com-login-register__step-item img {
      width: 100%; /* Ensure images inside cards/steps also respect container width */
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
      overflow: hidden;
    }

    /* Specific mobile overrides for image containers */
    @media (max-width: 768px) {
      .page-www-8k8-com-login-register img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-www-8k8-com-login-register__card img,
      .page-www-8k8-com-login-register__step-item img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-www-8k8-com-login-register__steps-list,
      .page-www-8k8-com-login-register__content-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-www-8k8-com-login-register__step-item,
      .page-www-8k8-com-login-register__card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  