
    :root {
      --primary-color: #e44d26; /* A vibrant orange-red, common in gaming sites */
      --secondary-color: #f7931e; /* A brighter orange */
      --accent-color: #4CAF50; /* Green for success/highlights */
      --text-color: #333;
      --light-text-color: #f8f8f8;
      --background-light: #f4f7f6;
      --background-dark: #2c3e50; /* Dark blue-grey */
      --card-background: #ffffff;
      --border-color: #ddd;
      --shadow-light: rgba(0, 0, 0, 0.1);
      --shadow-medium: rgba(0, 0, 0, 0.2);
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-light);
      margin: 0;
      padding: 0;
    }

    /* General responsive image and list item styles */
    .page-www-8k8-com-login-register img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-www-8k8-com-login-register__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-www-8k8-com-login-register__list-item {
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-www-8k8-com-login-register__list-container {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      padding: 0;
      margin-left: 0;
      margin-right: 0;
    }

    /* Page-specific styles */
    .page-www-8k8-com-login-register {
      padding: 20px 0;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
      padding-top: 10px; /* Small decorative padding, relying on body for header offset */
    }

    .page-www-8k8-com-login-register__section {
      background-color: var(--card-background);
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--shadow-light);
      box-sizing: border-box;
    }

    .page-www-8k8-com-login-register__hero-section {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: var(--light-text-color);
      text-align: center;
      padding: 60px 20px;
      border-radius: 10px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }

    .page-www-8k8-com-login-register__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0.15;
      background-size: cover;
      background-position: center;
      filter: brightness(0.8); /* Allow brightness for background images */
      border-radius: 10px;
    }

    .page-www-8k8-com-login-register__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-www-8k8-com-login-register__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: var(--light-text-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-www-8k8-com-login-register__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--light-text-color);
      opacity: 0.9;
    }

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

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

    .page-www-8k8-com-login-register__button--primary {
      background-color: var(--accent-color);
      box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
    }

    .page-www-8k8-com-login-register__button--primary:hover {
      background-color: #66bb6a;
      transform: translateY(-3px);
    }

    .page-www-8k8-com-login-register__button--secondary {
      background-color: var(--primary-color);
      box-shadow: 0 6px 15px rgba(228, 77, 38, 0.4);
    }

    .page-www-8k8-com-login-register__button--secondary:hover {
      background-color: #ff7043;
      transform: translateY(-3px);
    }

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

    .page-www-8k8-com-login-register__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--secondary-color);
      border-radius: 2px;
    }

    .page-www-8k8-com-login-register__content-text {
      font-size: 1.1em;
      color: var(--text-color);
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-www-8k8-com-login-register__feature-card {
      background-color: var(--background-light);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px var(--shadow-light);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-www-8k8-com-login-register__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--shadow-medium);
    }

    .page-www-8k8-com-login-register__feature-icon {
      width: 100px; /* Minimum size */
      height: 100px; /* Minimum size */
      margin: 0 auto 15px;
      border-radius: 50%;
      background-color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2em;
      color: var(--light-text-color);
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

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

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

    .page-www-8k8-com-login-register__step-item {
      display: flex;
      align-items: center;
      gap: 20px;
      background-color: var(--background-light);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px var(--shadow-light);
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Required for list items */
      overflow-wrap: break-word; /* Required for list items */
    }

    .page-www-8k8-com-login-register__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--secondary-color);
      min-width: 50px;
      text-align: center;
    }

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

    .page-www-8k8-com-login-register__step-content p {
      margin-bottom: 0;
      font-size: 1em;
    }

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

    .page-www-8k8-com-login-register__promo-card {
      background-color: var(--background-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px var(--shadow-light);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-www-8k8-com-login-register__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--shadow-medium);
    }

    .page-www-8k8-com-login-register__promo-image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
      box-sizing: border-box; /* Required for image containers */
    }

    .page-www-8k8-com-login-register__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

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

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

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

    .page-www-8k8-com-login-register__promo-link {
      display: inline-block;
      padding: 10px 20px;
      background-color: var(--primary-color);
      color: var(--light-text-color);
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none; /* Make it look like a button */
    }

    .page-www-8k8-com-login-register__promo-link:hover {
      background-color: var(--secondary-color);
    }

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

    .page-www-8k8-com-login-register__game-card {
      background-color: var(--background-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px var(--shadow-light);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-www-8k8-com-login-register__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--shadow-medium);
    }

    .page-www-8k8-com-login-register__game-image-container {
      width: 100%;
      height: 180px;
      overflow: hidden;
      box-sizing: border-box; /* Required for image containers */
    }

    .page-www-8k8-com-login-register__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .page-www-8k8-com-login-register__game-title {
      font-size: 1.2em;
      color: var(--primary-color);
      padding: 15px 10px;
      margin: 0;
      background-color: #f0f0f0;
    }

    /* FAQ Section */
    .page-www-8k8-com-login-register__faq-section {
      background-color: var(--card-background);
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--shadow-light);
    }

    .page-www-8k8-com-login-register__faq-item {
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Required for list items */
      overflow-wrap: break-word; /* Required for list items */
    }

    .page-www-8k8-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: var(--background-light);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--text-color);
      transition: background-color 0.3s ease;
    }

    .page-www-8k8-com-login-register__faq-question:hover {
      background-color: #e9ecef;
    }

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

    .page-www-8k8-com-login-register__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--secondary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-www-8k8-com-login-register__faq-item.active .page-www-8k8-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-www-8k8-com-login-register__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(--text-color);
      background-color: var(--card-background);
    }

    .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 20px !important;
      opacity: 1;
    }

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

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

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

    .page-www-8k8-com-login-register__floating-button--register {
      background-color: var(--accent-color);
    }
    .page-www-8k8-com-login-register__floating-button--register:hover {
      background-color: #66bb6a;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .page-www-8k8-com-login-register__hero-title {
        font-size: 2.2em;
      }
      .page-www-8k8-com-login-register__hero-subtitle {
        font-size: 1.1em;
      }
      .page-www-8k8-com-login-register__section-title {
        font-size: 1.8em;
      }
      .page-www-8k8-com-login-register__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }

    @media (max-width: 768px) {
      .page-www-8k8-com-login-register {
        padding: 10px;
      }

      .page-www-8k8-com-login-register__section {
        padding: 20px;
        margin-bottom: 20px;
      }

      .page-www-8k8-com-login-register__hero-section {
        padding: 40px 15px;
      }

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

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

      .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-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }

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

      .page-www-8k8-com-login-register__features-grid,
      .page-www-8k8-com-login-register__promo-grid,
      .page-www-8k8-com-login-register__game-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-www-8k8-com-login-register__feature-card,
      .page-www-8k8-com-login-register__promo-card,
      .page-www-8k8-com-login-register__game-card {
        padding: 15px;
      }

      .page-www-8k8-com-login-register__step-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
        width: 100% !important; /* Required for list items */
        max-width: 100% !important; /* Required for list items */
        box-sizing: border-box !important; /* Required for list items */
        margin-left: 0 !important; /* Required for list items */
        margin-right: 0 !important; /* Required for list items */
      }

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

      .page-www-8k8-com-login-register__step-content h3 {
        font-size: 1.1em;
      }

      .page-www-8k8-com-login-register__step-content p {
        font-size: 0.9em;
      }

      .page-www-8k8-com-login-register__faq-question {
        padding: 15px;
        font-size: 1em;
      }
      .page-www-8k8-com-login-register__faq-question h3 {
        font-size: 1em;
      }
      .page-www-8k8-com-login-register__faq-toggle {
        font-size: 1.5em;
      }
      .page-www-8k8-com-login-register__faq-answer {
        padding: 15px 15px;
      }
      .page-www-8k8-com-login-register__faq-item.active .page-www-8k8-com-login-register__faq-answer {
        padding: 15px 15px !important;
      }

      .page-www-8k8-com-login-register__floating-buttons {
        bottom: 15px;
        right: 15px;
      }
      .page-www-8k8-com-login-register__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      /* Image containers for mobile */
      .page-www-8k8-com-login-register__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px; /* Adjust padding to avoid too much spacing */
      }
      .page-www-8k8-com-login-register__promo-image-container,
      .page-www-8k8-com-login-register__game-image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      /* List container for mobile */
      .page-www-8k8-com-login-register__list-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .page-www-8k8-com-login-register__hero-title {
        font-size: 1.5em;
      }
      .page-www-8k8-com-login-register__hero-subtitle {
        font-size: 0.9em;
      }
      .page-www-8k8-com-login-register__floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
      }
      .page-www-8k8-com-login-register__floating-button {
        padding: 8px 18px;
        font-size: 0.85em;
      }
    }
  