
    /* Page-specific CSS for www.8k8 */
    :root {
      --primary-color: #e44d26; /* A vibrant color for highlights */
      --secondary-color: #333;
      --text-color: #f8f8f8;
      --background-color: #1a1a1a;
      --card-background: #2a2a2a;
      --border-color: #444;
      --button-hover: #ff6a00;
      --link-color: #e44d26;
      --link-hover-color: #ff6a00;
      --faq-question-bg: #3a3a3a;
      --faq-answer-bg: #2a2a2a;
      --faq-border: #555;
      --header-offset: 122px; /* Default value, should be overridden by shared.css */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      margin: 0;
      padding: 0;
      padding-top: var(--header-offset); /* Relies on shared.css setting --header-offset */
      text-align: center; /* For overall brand keyword centered top */
    }

    .page-www-8k8 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px 80px 15px; /* Added bottom padding for floating buttons */
      box-sizing: border-box;
      position: relative;
    }

    /* General Section Styling */
    .page-www-8k8__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: var(--card-background);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
    }

    .page-www-8k8__section--dark {
      background-color: var(--secondary-color);
    }

    .page-www-8k8__section-header {
      text-align: center;
      margin-bottom: 30px;
      padding: 0 15px;
    }

    .page-www-8k8__section-header h2 {
      color: var(--primary-color);
      font-size: 2.5em;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-www-8k8__section-header p {
      color: #ccc;
      font-size: 1.1em;
    }

    /* Hero Section */
    .page-www-8k8__hero-section {
      position: relative;
      background-color: #000;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 30px;
      padding-top: 10px; /* Small decorative top padding, body has main offset */
    }

    .page-www-8k8__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      object-fit: cover;
      filter: brightness(0.7);
      border-radius: 10px;
    }

    .page-www-8k8__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: var(--text-color);
      width: 90%;
      max-width: 800px;
      padding: 20px;
      box-sizing: border-box;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-www-8k8__hero-content h1 {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-www-8k8__hero-content p {
      font-size: 1.3em;
      margin-bottom: 25px;
      color: #eee;
    }

    .page-www-8k8__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--primary-color);
      color: var(--text-color);
      text-decoration: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-www-8k8__button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }

    /* Floating Register/Login Buttons */
    .page-www-8k8__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.8);
      padding: 10px 0;
      display: flex;
      justify-content: space-around;
      align-items: center;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-www-8k8__floating-button {
      flex: 1;
      margin: 0 10px;
      padding: 12px 0;
      text-align: center;
      background-color: var(--primary-color);
      color: var(--text-color);
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-www-8k8__floating-button:hover {
      background-color: var(--button-hover);
    }

    /* Promotions Section */
    .page-www-8k8__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-www-8k8__promotion-card {
      background-color: var(--background-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: center;
    }

    .page-www-8k8__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-www-8k8__promotion-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-www-8k8__promotion-content {
      padding: 20px;
    }

    .page-www-8k8__promotion-content h3 {
      color: var(--primary-color);
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .page-www-8k8__promotion-content p {
      color: #bbb;
      font-size: 1em;
      margin-bottom: 20px;
    }

    /* Games Section */
    .page-www-8k8__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-www-8k8__game-card {
      background-color: var(--background-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: center;
      cursor: pointer;
    }

    .page-www-8k8__game-card:hover {
      transform: translateY(-5px);
    }

    .page-www-8k8__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-www-8k8__game-title {
      padding: 15px;
      color: var(--primary-color);
      font-size: 1.4em;
      margin: 0;
    }

    /* Features Section */
    .page-www-8k8__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 15px;
      list-style: none;
      margin: 0;
    }

    .page-www-8k8__feature-item {
      background-color: var(--background-color);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-www-8k8__feature-item h3 {
      color: var(--primary-color);
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-www-8k8__feature-item p {
      color: #bbb;
      font-size: 1em;
    }

    /* Payment Methods */
    .page-www-8k8__payment-methods-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 0 15px;
    }

    .page-www-8k8__payment-method-item {
      background-color: var(--background-color);
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      color: #eee;
      font-weight: bold;
      font-size: 1.1em;
      box-sizing: border-box; /* Required for list items */
      flex: 0 0 auto;
      min-width: 120px;
      text-align: center;
    }

    /* FAQ Section */
    .page-www-8k8__faq-container {
      padding: 0 15px;
    }

    .page-www-8k8__faq-item {
      background-color: var(--faq-question-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-www-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      color: var(--text-color);
      background-color: var(--faq-question-bg);
      border-bottom: 1px solid var(--faq-border);
      transition: background-color 0.3s ease;
    }

    .page-www-8k8__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-www-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-www-8k8__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-www-8k8__faq-item.active .page-www-8k8__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-www-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      background-color: var(--faq-answer-bg);
      color: #bbb;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      text-align: left;
    }

    .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important; /* Adjusted padding for active state */
      opacity: 1;
    }

    .page-www-8k8__faq-answer p {
      margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-www-8k8__hero-content h1 {
        font-size: 3em;
      }
      .page-www-8k8__hero-content p {
        font-size: 1.2em;
      }
    }

    @media (max-width: 768px) {
      .page-www-8k8 {
        padding: 10px 10px 80px 10px; /* Adjust padding for smaller screens */
      }

      .page-www-8k8__hero-content h1 {
        font-size: 2.5em;
      }
      .page-www-8k8__hero-content p {
        font-size: 1.1em;
      }
      .page-www-8k8__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-www-8k8__section-header h2 {
        font-size: 2em;
      }
      .page-www-8k8__section-header p {
        font-size: 1em;
      }

      .page-www-8k8__promotions-grid,
      .page-www-8k8__games-grid,
      .page-www-8k8__features-list {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 20px;
        padding: 0 10px;
      }

      .page-www-8k8__promotion-image {
        height: 200px;
      }

      .page-www-8k8__game-image {
        height: 180px;
      }

      /* List item responsive adjustments */
      .page-www-8k8__features-list,
      .page-www-8k8__payment-methods-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important; /* Adjust padding to prevent overflow */
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-www-8k8__feature-item,
      .page-www-8k8__payment-method-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-www-8k8__faq-question {
        padding: 12px 15px;
      }
      .page-www-8k8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-www-8k8__faq-answer {
        padding: 0 10px;
      }
      .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
        padding: 15px 10px !important;
      }

      .page-www-8k8__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }
    }

    @media (max-width: 480px) {
      .page-www-8k8__hero-content h1 {
        font-size: 2em;
      }
      .page-www-8k8__hero-content p {
        font-size: 1em;
      }
      .page-www-8k8__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-www-8k8__floating-buttons {
        flex-direction: column;
        padding: 5px 0;
      }
      .page-www-8k8__floating-button {
        width: 90%;
        margin: 5px auto;
      }
      .page-www-8k8 {
        padding-bottom: 120px; /* More space for stacked floating buttons */
      }
    }
  