
    /* Base styles for the page */
    .page-8k8-4 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-top: 10px; /* Small top padding, assuming body has header offset from shared.css */
    }

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

    /* Hero Section */
    .page-8k8-4__hero-section {
      background-color: #2a2a2a;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 40px;
    }

    .page-8k8-4__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-4__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8k8-4__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #ffe000; /* Gold-like color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      overflow-wrap: break-word;
    }

    .page-8k8-4__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      overflow-wrap: break-word;
    }

    .page-8k8-4__register-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
    }

    .page-8k8-4__register-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Section Styles */
    .page-8k8-4__section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-4__section-title {
      font-size: 2.5em;
      color: #2a2a2a;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
      overflow-wrap: break-word;
    }

    .page-8k8-4__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #007bff;
      border-radius: 2px;
    }

    .page-8k8-4__text-content {
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.1em;
      overflow-wrap: break-word;
    }

    /* Features/Steps Grid */
    .page-8k8-4__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-4__grid-item {
      background-color: #f4f4f4;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-4__grid-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-4__grid-item-icon {
      width: 100%; /* Ensure image fills container */
      max-width: 300px; /* Example max width for content images */
      height: auto;
      margin-bottom: 20px;
      border-radius: 4px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .page-8k8-4__grid-item-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
      overflow-wrap: break-word;
    }

    .page-8k8-4__grid-item-description {
      font-size: 1em;
      color: #555;
      overflow-wrap: break-word;
    }

    /* Payment Methods */
    .page-8k8-4__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-4__payment-item {
      background-color: #eee;
      padding: 15px 25px;
      border-radius: 5px;
      font-weight: bold;
      color: #444;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      box-sizing: border-box; /* Required for list items */
      width: 150px; /* Fixed width for better layout */
      text-align: center;
      overflow-wrap: break-word;
    }

    /* Game Providers */
    .page-8k8-4__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-4__provider-item {
      background-color: #f0f0f0;
      padding: 15px;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
      color: #666;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      box-sizing: border-box; /* Required for list items */
      overflow-wrap: break-word;
    }

    /* Promotion Section */
    .page-8k8-4__promo-card {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      padding: 40px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-4__promo-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #ffe000;
      overflow-wrap: break-word;
    }

    .page-8k8-4__promo-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      overflow-wrap: break-word;
    }

    .page-8k8-4__promo-button {
      background-color: #ffe000;
      color: #2a2a2a;
      padding: 15px 35px;
      font-size: 1.2em;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
    }

    .page-8k8-4__promo-button:hover {
      background-color: #ffd700;
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-8k8-4__faq-section {
      background-color: #fff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-4__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: #2a2a2a;
      transition: color 0.3s ease;
    }

    .page-8k8-4__faq-question:hover {
      color: #007bff;
    }

    .page-8k8-4__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjusted for better mobile scaling, parent font-size takes precedence */
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      overflow-wrap: break-word;
    }

    .page-8k8-4__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
      flex-shrink: 0; /* Prevent toggle from shrinking on long questions */
      margin-left: 10px; /* Space between question and toggle */
    }

    .page-8k8-4__faq-item.active .page-8k8-4__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or rotate for - */
    }

    .page-8k8-4__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;
      line-height: 1.8;
    }

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

    .page-8k8-4__faq-answer p {
      margin: 0;
      overflow-wrap: break-word;
    }

    /* Floating Register/Login Buttons */
    .page-8k8-4__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-8k8-4__floating-button {
      background-color: #007bff;
      color: #fff;
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 120px;
      border: none; /* Ensure it's a button, not a link */
      cursor: pointer;
    }

    .page-8k8-4__floating-button--login {
      background-color: #28a745;
    }

    .page-8k8-4__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-8k8-4__floating-button--login:hover {
      background-color: #218838;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-4__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-4__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-4__section-title {
        font-size: 2em;
      }
      .page-8k8-4__grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-4__container {
        padding: 15px;
      }
      .page-8k8-4__hero-section {
        padding: 60px 15px;
      }
      .page-8k8-4__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-4__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-4__register-button,
      .page-8k8-4__promo-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-4__section {
        padding: 30px 20px;
      }
      .page-8k8-4__section-title {
        font-size: 1.8em;
      }
      .page-8k8-4__grid-item-title {
        font-size: 1.3em;
      }
      .page-8k8-4__payment-methods {
        flex-direction: column;
        align-items: center;
      }
      .page-8k8-4__payment-item {
        width: 100% !important;
        max-width: 200px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px !important;
      }
      .page-8k8-4__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-8k8-4__promo-title {
        font-size: 1.8em;
      }
      .page-8k8-4__promo-description {
        font-size: 1em;
      }
      .page-8k8-4__faq-question {
        font-size: 1.1em;
        padding: 12px 0;
      }
      .page-8k8-4__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-4__faq-answer {
        padding: 15px 10px !important;
      }
      .page-8k8-4__floating-buttons {
        flex-direction: row;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(0, 0, 0, 0.8);
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
      }
      .page-8k8-4__floating-button {
        width: 45%;
        min-width: unset;
        font-size: 1em;
        padding: 10px 15px;
        border-radius: 5px;
        box-shadow: none;
      }
      .page-8k8-4__grid-item,
      .page-8k8-4__provider-item,
      .page-8k8-4__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-4__grid-item-icon {
        max-width: 100%;
        height: auto;
      }
    }

    /* Image responsive styles */
    .page-8k8-4 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }
    .page-8k8-4__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .page-8k8-4 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-4__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }
  