
    /* Reset & Base Styles */
    .page-888k {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed buttons */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-888k__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-888k__section {
      padding: 40px 0;
      text-align: center;
    }
    .page-888k__section--dark {
        background-color: #222;
    }
    .page-888k__section--light {
        background-color: #2a2a2a;
    }

    .page-888k__heading {
      color: #e44d26; /* Accent color */
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-888k__subheading {
      color: #f0f0f0;
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-888k__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ccc;
    }

    .page-888k__button {
      display: inline-block;
      background-color: #e44d26; /* Accent color */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-888k__button:hover {
      background-color: #ff6f42;
    }

    /* Hero Section */
    .page-888k__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
      background-color: #1a1a1a;
    }

    .page-888k__hero-image {
      width: 100%;
      height: 500px; /* Fixed height for hero image */
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      filter: brightness(0.5); /* Darken image for text readability */
    }

    .page-888k__hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding-top: 50px; /* Space from top of hero section */
      color: #fff;
    }

    .page-888k__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: #e44d26;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-888k__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #f0f0f0;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    }

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

    .page-888k__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-888k__game-card:hover {
      transform: translateY(-5px);
    }

    .page-888k__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    .page-888k__game-card:hover .page-888k__game-image {
        transform: scale(1.05);
    }

    .page-888k__game-content {
      padding: 20px;
      text-align: left;
    }

    .page-888k__game-title {
      font-size: 1.4em;
      color: #e44d26;
      margin-bottom: 10px;
    }

    .page-888k__game-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }
    
    /* Promotions Section */
    .page-888k__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-888k__promo-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        box-sizing: border-box;
    }

    .page-888k__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .page-888k__promo-content {
        padding: 20px;
    }

    .page-888k__promo-title {
        font-size: 1.5em;
        color: #e44d26;
        margin-bottom: 10px;
    }

    .page-888k__promo-description {
        font-size: 1em;
        color: #ccc;
        margin-bottom: 15px;
    }

    /* How to Access Section */
    .page-888k__steps-list {
        list-style: none;
        padding: 0;
        margin: 30px auto 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-888k__step-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        flex: 1;
        min-width: 280px;
        max-width: 380px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-888k__step-number {
        font-size: 2.5em;
        color: #e44d26;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .page-888k__step-title {
        font-size: 1.3em;
        color: #f0f0f0;
        margin-bottom: 10px;
    }

    .page-888k__step-description {
        color: #ccc;
        font-size: 1em;
    }

    /* Why Choose Us Section */
    .page-888k__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-888k__feature-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
    }

    .page-888k__feature-icon {
        width: 80px; /* Display size */
        height: 80px; /* Display size */
        margin-bottom: 15px;
        object-fit: contain; /* Ensure image fits */
    }

    .page-888k__feature-title {
        font-size: 1.3em;
        color: #e44d26;
        margin-bottom: 10px;
    }

    .page-888k__feature-description {
        color: #ccc;
        font-size: 1em;
    }

    /* Floating Register/Login Buttons */
    .page-888k__fixed-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(26, 26, 26, 0.95); /* Semi-transparent dark background */
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      display: flex;
      justify-content: center;
      gap: 15px;
      box-sizing: border-box;
    }

    .page-888k__fixed-button {
      flex: 1;
      max-width: 180px;
      text-align: center;
      padding: 12px 10px;
      font-size: 1.1em;
      border-radius: 8px;
    }
    .page-888k__fixed-button--register {
        background-color: #e44d26;
        color: #fff;
    }
    .page-888k__fixed-button--login {
        background-color: #333;
        color: #f0f0f0;
        border: 1px solid #e44d26;
    }
    .page-888k__fixed-button--login:hover {
        background-color: #444;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-888k__hero-title {
        font-size: 3em;
      }
      .page-888k__hero-subtitle {
        font-size: 1.3em;
      }
      .page-888k__heading {
        font-size: 2em;
      }
      .page-888k__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-888k__hero-image {
        height: 400px;
      }
      .page-888k__hero-content {
        padding-top: 30px;
      }
      .page-888k__hero-title {
        font-size: 2.5em;
      }
      .page-888k__hero-subtitle {
        font-size: 1.2em;
      }
      .page-888k__heading {
        font-size: 1.8em;
      }
      .page-888k__subheading {
        font-size: 1.4em;
      }

      /* List items mobile responsiveness */
      .page-888k__game-card,
      .page-888k__promo-card,
      .page-888k__step-item,
      .page-888k__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-888k__game-categories,
      .page-888k__promotions-grid,
      .page-888k__steps-list,
      .page-888k__features-grid {
        grid-template-columns: 1fr; /* Single column layout */
        padding: 0 10px !important; /* Adjust container padding */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-888k__steps-list {
        padding: 0 15px !important;
      }

      /* Images mobile responsiveness */
      .page-888k__game-image,
      .page-888k__promo-image,
      .page-888k__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      /* Specific override for hero image to maintain aspect if possible, but fit width */
      .page-888k__hero-image {
        height: 300px !important; /* Smaller height for mobile hero */
      }

      .page-888k__fixed-buttons {
        gap: 10px;
        padding: 8px 10px;
      }
      .page-888k__fixed-button {
        padding: 10px 8px;
        font-size: 1em;
      }
      .page-888k__feature-icon { /* Icons are generated as >= 200x200, then scaled down for display */
        width: 60px;
        height: 60px;
      }
    }

    @media (max-width: 480px) {
      .page-888k__hero-title {
        font-size: 2em;
      }
      .page-888k__hero-subtitle {
        font-size: 1em;
      }
      .page-888k__heading {
        font-size: 1.6em;
      }
      .page-888k__subheading {
        font-size: 1.2em;
      }
      .page-888k__fixed-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 8px;
        padding: 8px 15px;
      }
      .page-888k__fixed-button {
        max-width: 100%;
      }
      .page-888k {
        padding-bottom: 120px; /* More space for stacked buttons */
      }
    }
  