
    :root {
      --page-888k-primary-color: #ffcc00; /* Gold/Yellow */
      --page-888k-secondary-color: #f44336; /* Red */
      --page-888k-dark-bg: #1a1a1a; /* Very dark gray */
      --page-888k-medium-bg: #2a2a2a; /* Dark gray */
      --page-888k-light-text: #ffffff; /* White */
      --page-888k-gray-text: #cccccc; /* Light gray */
      --page-888k-border-color: #444444; /* Darker gray for borders */
    }

    .page-888k {
      font-family: 'Arial', sans-serif;
      color: var(--page-888k-light-text);
      background-color: var(--page-888k-dark-bg);
      line-height: 1.6;
    }

    /* Fixed Nav Bar Offset: Assuming shared.css handles body padding-top */
    .page-888k__hero-section {
      padding-top: 10px; /* Small decorative top padding */
    }

    .page-888k__section-title {
      font-size: 2.5em;
      color: var(--page-888k-primary-color);
      text-align: center;
      margin-bottom: 20px;
      padding: 0 15px;
      word-wrap: break-word; /* Ensure long titles break */
      overflow-wrap: break-word;
    }

    .page-888k__brand-highlight {
      color: var(--page-888k-secondary-color);
    }

    .page-888k__section-description {
      font-size: 1.1em;
      color: var(--page-888k-gray-text);
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
    }

    /* Hero Section */
    .page-888k__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      background-color: var(--page-888k-medium-bg);
      position: relative;
      overflow: hidden;
    }

    .page-888k__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .page-888k__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle background */
      max-width: 100%; /* Responsive image */
    }

    .page-888k__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      width: 100%;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
      border-radius: 10px;
    }

    .page-888k__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--page-888k-light-text);
      line-height: 1.2;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-888k__hero-description {
      font-size: 1.3em;
      color: var(--page-888k-gray-text);
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-888k__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-888k__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive buttons */
      word-wrap: break-word;
      overflow-wrap: break-word;
      color: var(--page-888k-light-text); /* Ensure text color contrast */
    }

    .page-888k__button--primary {
      background-color: var(--page-888k-primary-color);
      color: var(--page-888k-dark-bg); /* Text on primary button */
    }

    .page-888k__button--primary:hover {
      background-color: #e6b800; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    .page-888k__button--secondary {
      background-color: var(--page-888k-secondary-color);
    }

    .page-888k__button--secondary:hover {
      background-color: #c62828; /* Slightly darker red */
      transform: translateY(-2px);
    }

    .page-888k__button--small {
      padding: 10px 20px;
      font-size: 0.9em;
      background-color: var(--page-888k-primary-color);
      color: var(--page-888k-dark-bg); /* Text on small button */
    }

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


    /* Games Section */
    .page-888k__games-section {
      padding: 80px 20px;
      background-color: var(--page-888k-dark-bg);
    }

    .page-888k__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-888k__game-card {
      background-color: var(--page-888k-medium-bg);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-888k__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-888k__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-888k__game-card-title {
      font-size: 1.8em;
      color: var(--page-888k-primary-color);
      margin: 20px 15px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-888k__game-card-text {
      font-size: 1em;
      color: var(--page-888k-gray-text);
      padding: 0 15px 20px;
      flex-grow: 1; /* Pushes content to bottom */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-888k__promotions-section {
      padding: 80px 20px;
      background-color: var(--page-888k-medium-bg);
    }

    .page-888k__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-888k__promo-card {
      background-color: var(--page-888k-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-888k__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-888k__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
    }

    .page-888k__promo-card-title {
      font-size: 1.6em;
      color: var(--page-888k-primary-color);
      margin: 20px 15px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-888k__promo-card-text {
      font-size: 1em;
      color: var(--page-888k-gray-text);
      padding: 0 15px 20px;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Features Section */
    .page-888k__features-section {
      padding: 80px 20px;
      background-color: var(--page-888k-dark-bg);
    }

    .page-888k__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-888k__feature-item {
      background-color: var(--page-888k-medium-bg);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: background-color 0.3s ease;
      height: 100%;
    }

    .page-888k__feature-item:hover {
      background-color: #3a3a3a; /* Slightly lighter on hover */
    }

    .page-888k__feature-icon {
      width: 100px; 
      height: 100px; 
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
    }

    .page-888k__feature-title {
      font-size: 1.5em;
      color: var(--page-888k-primary-color);
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-888k__feature-description {
      font-size: 1em;
      color: var(--page-888k-gray-text);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-888k__faq-section {
      padding: 80px 20px;
      background-color: var(--page-888k-medium-bg);
    }

    .page-888k__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-888k__faq-item {
      background-color: var(--page-888k-dark-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      border: 1px solid var(--page-888k-border-color);
    }

    .page-888k__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #222222; /* Slightly different background for question */
      transition: background-color 0.3s ease;
    }

    .page-888k__faq-question:hover {
      background-color: #333333;
    }

    .page-888k__faq-title {
      font-size: 1.2em;
      color: var(--page-888k-light-text);
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Crucial for FAQ click functionality */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-888k__faq-toggle {
      font-size: 1.8em;
      color: var(--page-888k-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for FAQ click functionality */
    }

    .page-888k__faq-item.active .page-888k__faq-toggle {
      transform: rotate(45deg); /* Changes + to X or - visual */
    }

    .page-888k__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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(--page-888k-gray-text);
    }

    .page-888k__faq-item.active .page-888k__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-888k__faq-answer p {
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Floating Buttons */
    .page-888k__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-888k__floating-button {
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      color: var(--page-888k-light-text); /* Default text color for contrast */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-888k__floating-button--register {
      background-color: var(--page-888k-primary-color);
      color: var(--page-888k-dark-bg); /* Text on register button */
    }

    .page-888k__floating-button--register:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-888k__floating-button--login {
      background-color: var(--page-888k-secondary-color);
    }

    .page-888k__floating-button--login:hover {
      background-color: #c62828;
      transform: translateY(-2px);
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-888k__hero-title {
        font-size: 2.8em;
      }
      .page-888k__hero-description {
        font-size: 1.2em;
      }
      .page-888k__section-title {
        font-size: 2em;
      }
      .page-888k__games-grid,
      .page-888k__promotions-grid,
      .page-888k__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-888k__hero-title {
        font-size: 2.2em;
      }
      .page-888k__hero-description {
        font-size: 1em;
      }
      .page-888k__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-888k__button {
        width: 100%;
        max-width: 300px; /* Limit button width for better appearance */
        margin: 0 auto;
      }
      .page-888k__section-title {
        font-size: 1.8em;
      }
      .page-888k__section-description {
        font-size: 0.95em;
      }

      /* List Item Responsive Requirements */
      .page-888k__games-grid,
      .page-888k__promotions-grid,
      .page-888k__features-grid {
        grid-template-columns: 1fr !important; /* Single column for mobile */
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important; /* Adjust padding for container */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-888k__game-card,
      .page-888k__promo-card,
      .page-888k__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Reduce padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-888k__game-card-image,
      .page-888k__promo-card-image,
      .page-888k__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* FAQ specific mobile styles */
      .page-888k__faq-question {
        padding: 15px 20px;
      }
      .page-888k__faq-title {
        font-size: 1.1em;
      }
      .page-888k__faq-answer {
        padding: 15px 20px;
      }

      .page-888k__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }
      .page-888k__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-888k__hero-title {
        font-size: 1.8em;
      }
      .page-888k__hero-description {
        font-size: 0.9em;
      }
      .page-888k__button {
        padding: 12px 25px;
        font-size: 0.95em;
      }
      .page-888k__section-title {
        font-size: 1.6em;
      }
      .page-888k__game-card-title,
      .page-888k__promo-card-title,
      .page-888k__feature-title {
        font-size: 1.3em;
      }
      .page-888k__faq-title {
        font-size: 1em;
      }
      .page-888k__faq-toggle {
        font-size: 1.5em;
      }
    }
  