
    /* Base styles for the page */
    .page-8k8 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Fixed navigation offset */
    .page-8k8__hero-section {
      padding-top: 10px; /* Small decorative top padding, assuming body has offset */
    }
    
    /* General section styling */
    .page-8k8__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8__section--dark {
      background-color: #1a1a1a;
      color: #f0f0f0;
    }

    .page-8k8__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #007bff; /* Primary brand color */
      text-transform: uppercase;
      font-weight: bold;
    }
    .page-8k8__section-title--dark {
      color: #ffe040; /* Accent color for dark sections */
    }

    .page-8k8__section-subtitle {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: #555;
    }
    .page-8k8__section-subtitle--dark {
      color: #ccc;
    }

    /* Hero Section */
    .page-8k8__hero-section {
      background-color: #0d1a26; /* Dark background for hero */
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      position: relative;
      overflow: hidden;
      text-align: center;
      padding: 60px 20px;
      box-sizing: border-box;
    }

    .page-8k8__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
      max-width: 100%;
    }

    .page-8k8__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .page-8k8__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffe040; /* Gold accent */
      line-height: 1.2;
    }

    .page-8k8__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-8k8__hero-cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8__button {
      background-color: #007bff; /* Blue */
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      box-sizing: border-box;
      white-space: nowrap;
    }

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

    .page-8k8__button--accent {
      background-color: #ffe040; /* Gold */
      color: #1a1a1a;
    }

    .page-8k8__button--accent:hover {
      background-color: #ffd700;
    }

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

    .page-8k8__floating-button {
      background-color: #007bff;
      color: #fff;
      padding: 12px 20px;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-transform: uppercase;
      font-weight: bold;
      min-width: 120px;
      text-align: center;
      box-sizing: border-box;
    }

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

    .page-8k8__floating-button--login {
      background-color: #ffe040;
      color: #1a1a1a;
    }

    .page-8k8__floating-button--login:hover {
      background-color: #ffd700;
    }

    /* Game Categories */
    .page-8k8__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8__category-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-8k8__category-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8__category-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-8k8__category-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8__category-title {
      font-size: 1.5em;
      margin-bottom: 15px;
      color: #007bff;
      font-weight: bold;
    }

    .page-8k8__category-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
    }

    /* Promotions Section */
    .page-8k8__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .page-8k8__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-8k8__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-8k8__promo-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-8k8__promo-title {
      font-size: 1.6em;
      margin-bottom: 10px;
      color: #007bff;
      font-weight: bold;
    }

    .page-8k8__promo-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-8k8__promo-cta-text {
      font-weight: bold;
      color: #007bff;
      display: block;
      margin-top: 10px;
      cursor: default; /* Not a link */
    }

    /* Why Choose Us */
    .page-8k8__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
      transition: transform 0.3s ease;
    }

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

    .page-8k8__feature-icon {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px auto;
        object-fit: contain;
        max-width: 100%;
    }

    .page-8k8__feature-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8__feature-description {
      font-size: 0.95em;
      color: #666;
    }

    /* Payment Methods */
    .page-8k8__payment-methods-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8__payment-logo {
        width: 200px; /* Minimum width */
        height: 100px; /* Adjusted height to maintain aspect ratio if possible, or just meet minimum */
        object-fit: contain;
        padding: 10px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease;
        max-width: 100%;
    }

    .page-8k8__payment-logo:hover {
      transform: translateY(-3px);
    }

    /* FAQ Section */
    .page-8k8__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-8k8__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f0f7ff; /* Light blue background for question */
      color: #1a1a1a;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
      box-sizing: border-box;
    }

    .page-8k8__faq-question:hover {
      background-color: #e0efff;
    }

    .page-8k8__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        font-size: 1.1em; /* Ensure consistent font size */
        color: #1a1a1a;
        pointer-events: none; /* Crucial for click handling */
        box-sizing: border-box;
    }

    .page-8k8__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handling */
      box-sizing: border-box;
    }

    .page-8k8__faq-item.active .page-8k8__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual */
    }

    .page-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question horizontal */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #444;
      font-size: 0.95em;
      box-sizing: border-box;
    }

    .page-8k8__faq-item.active .page-8k8__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

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

      .page-8k8__hero-description {
        font-size: 1em;
      }

      .page-8k8__section-title {
        font-size: 2em;
      }

      .page-8k8__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

      .page-8k8__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        bottom: 15px;
      }

      .page-8k8__floating-button {
        flex: 1;
        margin: 0 5px;
        min-width: unset;
      }

      .page-8k8__game-categories,
      .page-8k8__promotions-grid,
      .page-8k8__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8__section {
        padding: 30px 15px;
      }

      .page-8k8__category-card,
      .page-8k8__promo-card,
      .page-8k8__feature-item,
      .page-8k8__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-8k8__category-description,
      .page-8k8__promo-description,
      .page-8k8__feature-description,
      .page-8k8__faq-answer p {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      /* Image responsive adjustments */
      .page-8k8 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8__hero-image,
      .page-8k8__category-image,
      .page-8k8__promo-image,
      .page-8k8__feature-icon,
      .page-8k8__payment-logo {
        max-width: 100% !important;
        height: auto !important; /* Maintain aspect ratio */
        box-sizing: border-box !important;
      }
      .page-8k8__payment-methods-grid {
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
      }
      .page-8k8__payment-logo {
          width: calc(50% - 10px) !important; /* Two logos per row */
          height: auto !important;
          max-width: unset !important; /* Allow flex to control width */
      }
    }

    @media (max-width: 480px) {
      .page-8k8__floating-buttons {
        gap: 5px;
        bottom: 10px;
      }
      .page-8k8__floating-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }
      .page-8k8__faq-question {
          padding: 15px 20px;
          font-size: 1em;
      }
      .page-8k8__faq-question h3 {
          font-size: 1em;
      }
      .page-8k8__faq-answer {
          padding: 0 20px;
      }
      .page-8k8__faq-item.active .page-8k8__faq-answer {
          padding: 15px 20px !important;
      }
    }
  