
    .page-8k8-777-com-login-register {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
      padding-top: var(--header-offset, 122px); /* Fallback for fixed header, only if body padding is not handled by shared.css */
    }

    /* General Section Styling */
    .page-8k8-777-com-login-register__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-777-com-login-register__section-title {
      text-align: center;
      color: #1a237e; /* Dark blue for titles */
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: 700;
    }

    .page-8k8-777-com-login-register__section-subtitle {
      text-align: center;
      color: #3f51b5; /* Medium blue */
      margin-bottom: 20px;
      font-size: 1.5em;
      font-weight: 600;
    }

    /* Hero Section */
    .page-8k8-777-com-login-register__hero-section {
      background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%); /* Dark blue to medium blue gradient */
      color: #ffffff;
      text-align: center;
      padding: 80px 20px 60px;
      border-radius: 0 0 15px 15px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small top padding for decoration as body handles main offset */
    }

    .page-8k8-777-com-login-register__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-777-com-login-register__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-777-com-login-register__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: 800;
      line-height: 1.2;
    }

    .page-8k8-777-com-login-register__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-777-com-login-register__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-777-com-login-register__button {
      background-color: #ffc107; /* Amber for primary actions */
      color: #1a237e;
      padding: 15px 30px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-decoration: none; /* Ensure no underline for button-like elements */
      display: inline-block;
    }

    .page-8k8-777-com-login-register__button:hover {
      background-color: #ffca28; /* Lighter amber on hover */
      transform: translateY(-3px);
    }

    .page-8k8-777-com-login-register__button--secondary {
      background-color: #ffffff;
      color: #1a237e;
      border: 2px solid #ffc107;
    }

    .page-8k8-777-com-login-register__button--secondary:hover {
      background-color: #e0e0e0;
      border-color: #ffca28;
    }

    /* About Section */
    .page-8k8-777-com-login-register__about-content {
      display: flex;
      flex-direction: column;
      gap: 25px;
      align-items: center;
    }

    .page-8k8-777-com-login-register__about-text {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      max-width: 800px;
    }

    .page-8k8-777-com-login-register__about-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    /* Features/Benefits List */
    .page-8k8-777-com-login-register__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-777-com-login-register__feature-card {
      background-color: #e3f2fd; /* Light blue */
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-777-com-login-register__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-777-com-login-register__feature-icon {
      width: 100%;
      max-width: 250px; /* Min 200x200px */
      height: auto;
      margin-bottom: 15px;
    }

    .page-8k8-777-com-login-register__feature-title {
      font-size: 1.3em;
      color: #1a237e;
      margin-bottom: 10px;
    }

    .page-8k8-777-com-login-register__feature-description {
      color: #666;
      font-size: 0.95em;
    }

    /* How-To Steps */
    .page-8k8-777-com-login-register__steps-list {
      display: flex;
      flex-direction: column;
      gap: 25px;
      counter-reset: step-counter;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-777-com-login-register__step-item {
      background-color: #f0f4c3; /* Light yellow */
      padding: 20px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-777-com-login-register__step-number {
      font-size: 1.8em;
      font-weight: 800;
      color: #cddc39; /* Lime green */
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background-color: #1a237e;
      color: #ffffff;
    }

    .page-8k8-777-com-login-register__step-content h3 {
      font-size: 1.2em;
      color: #1a237e;
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-8k8-777-com-login-register__step-content p {
      color: #555;
      margin-bottom: 0;
    }

    /* Game and Promo Grids */
    .page-8k8-777-com-login-register__game-grid,
    .page-8k8-777-com-login-register__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-777-com-login-register__game-card,
    .page-8k8-777-com-login-register__promo-card {
      background-color: #f8f9fa;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-777-com-login-register__game-card:hover,
    .page-8k8-777-com-login-register__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-8k8-777-com-login-register__game-image,
    .page-8k8-777-com-login-register__promo-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

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

    .page-8k8-777-com-login-register__game-title,
    .page-8k8-777-com-login-register__promo-title {
      font-size: 1.25em;
      color: #1a237e;
      margin-bottom: 10px;
    }

    .page-8k8-777-com-login-register__game-description,
    .page-8k8-777-com-login-register__promo-description {
      color: #666;
      font-size: 0.9em;
      margin-bottom: 15px;
    }

    /* Payments and Providers */
    .page-8k8-777-com-login-register__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-8k8-777-com-login-register__logo-item {
      background-color: #ffffff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for logos */
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-777-com-login-register__logo-image {
      max-width: 100%;
      max-height: 70px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-8k8-777-com-login-register__faq-list {
      max-width: 900px;
      margin: 30px auto 0;
      border-top: 1px solid #eee;
    }

    .page-8k8-777-com-login-register__faq-item {
      border-bottom: 1px solid #eee;
      box-sizing: border-box; /* Required for list items */
    }

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

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

    .page-8k8-777-com-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #1a237e;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-777-com-login-register__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #3f51b5;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8-777-com-login-register__faq-item.active .page-8k8-777-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Visual change for '-' */
    }

    .page-8k8-777-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: #555;
      font-size: 1em;
      background-color: #f8f8f8;
    }

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-777-com-login-register__hero-title {
        font-size: 3em;
      }
      .page-8k8-777-com-login-register__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-777-com-login-register__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-777-com-login-register__hero-section {
        padding: 60px 15px 40px;
      }
      .page-8k8-777-com-login-register__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-777-com-login-register__hero-description {
        font-size: 1em;
      }
      .page-8k8-777-com-login-register__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-777-com-login-register__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-8k8-777-com-login-register__section {
        padding: 30px 15px;
      }
      .page-8k8-777-com-login-register__section-title {
        font-size: 1.8em;
      }
      .page-8k8-777-com-login-register__section-subtitle {
        font-size: 1.3em;
      }

      /* List Item Mobile Responsiveness */
      .page-8k8-777-com-login-register__features-grid,
      .page-8k8-777-com-login-register__game-grid,
      .page-8k8-777-com-login-register__promo-grid,
      .page-8k8-777-com-login-register__logo-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-777-com-login-register__feature-card,
      .page-8k8-777-com-login-register__step-item,
      .page-8k8-777-com-login-register__game-card,
      .page-8k8-777-com-login-register__promo-card,
      .page-8k8-777-com-login-register__logo-item,
      .page-8k8-777-com-login-register__faq-item {
        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;
      }

      .page-8k8-777-com-login-register__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .page-8k8-777-com-login-register__step-number {
        margin-bottom: 10px;
      }
      .page-8k8-777-com-login-register__step-content h3 {
        font-size: 1.1em;
      }
      .page-8k8-777-com-login-register__step-content p {
        font-size: 0.9em;
      }

      .page-8k8-777-com-login-register__game-image,
      .page-8k8-777-com-login-register__promo-image {
        height: 180px;
      }

      /* Image Responsive */
      .page-8k8-777-com-login-register__about-image,
      .page-8k8-777-com-login-register__feature-icon,
      .page-8k8-777-com-login-register__game-image,
      .page-8k8-777-com-login-register__promo-image,
      .page-8k8-777-com-login-register__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-777-com-login-register__hero-title {
        font-size: 2em;
      }
      .page-8k8-777-com-login-register__section-title {
        font-size: 1.5em;
      }
      .page-8k8-777-com-login-register__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-777-com-login-register__faq-toggle {
        font-size: 1.2em;
      }
      .page-8k8-777-com-login-register__faq-answer {
        font-size: 0.9em;
      }
    }
  