
    :root {
      --primary-color: #e44d26; /* A vibrant red-orange for calls to action */
      --secondary-color: #ffb74d; /* A complementary yellow-orange */
      --dark-background: #1a1a1a;
      --light-text: #ffffff;
      --gray-text: #cccccc;
      --border-color: #333333;
      --button-hover: #ff6f42;
      --faq-bg: #2a2a2a;
      --faq-border: #444444;
      --faq-text: #ffffff;
      --faq-toggle: #ffb74d;
    }

    .page-8k8 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-background);
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, assuming body padding handles header offset */
    }

    .page-8k8__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Hero Section */
    .page-8k8__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .page-8k8__hero-section img {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-8k8__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      width: 90%;
      max-width: 800px;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    }

    .page-8k8__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--secondary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--light-text);
    }

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

    .page-8k8__button {
      background-color: var(--primary-color);
      color: var(--light-text);
      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-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

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

    /* Section Styling */
    .page-8k8__section {
      padding: 40px 20px;
      margin-bottom: 40px;
      background-color: #222222;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8__section-title {
      font-size: 2.2em;
      color: var(--secondary-color);
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .page-8k8__section-text {
      font-size: 1.1em;
      color: var(--gray-text);
      text-align: justify;
      margin-bottom: 20px;
    }

    /* Features Section */
    .page-8k8__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-8k8__feature-item {
      background-color: var(--faq-bg);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
    }

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

    .page-8k8__feature-icon {
      margin-bottom: 15px;
    }

    .page-8k8__feature-icon img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      box-sizing: border-box;
      max-height: 200px; /* Ensure images don't get too large */
    }

    .page-8k8__feature-title {
      font-size: 1.4em;
      color: var(--secondary-color);
      margin-bottom: 10px;
    }

    .page-8k8__feature-description {
      color: var(--gray-text);
      font-size: 1em;
    }

    /* Game Providers & Payment Methods */
    .page-8k8__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for more columns */
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-8k8__grid-item {
      background-color: var(--faq-bg);
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      border: 1px solid var(--border-color);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
      width: 100%; /* Default to 100% for mobile */
      max-width: 200px; /* Max width for individual items */
    }

    .page-8k8__grid-item:hover {
      transform: translateY(-3px);
    }

    .page-8k8__grid-item img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      box-sizing: border-box;
      max-height: 100px; /* Constrain height for logos */
      object-fit: contain; /* Ensure logos fit without cropping */
    }

    .page-8k8__grid-item-name {
      margin-top: 10px;
      font-size: 0.9em;
      color: var(--gray-text);
    }

    /* Promotions Section */
    .page-8k8__promo-card {
      background-color: var(--faq-bg);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8__promo-card img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8__promo-title {
      font-size: 1.8em;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    .page-8k8__promo-description {
      font-size: 1.1em;
      color: var(--gray-text);
      margin-bottom: 25px;
    }

    /* FAQ Section */
    .page-8k8__faq-list {
      list-style: none;
      padding: 0;
    }

    .page-8k8__faq-item {
      background-color: var(--faq-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--faq-border);
      transition: background-color 0.3s ease;
    }

    .page-8k8__faq-item.active {
      background-color: #333333;
    }

    .page-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: var(--faq-text);
      transition: color 0.3s ease;
    }

    .page-8k8__faq-question:hover {
      color: var(--secondary-color);
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevents text from blocking click event */
      color: inherit;
    }

    .page-8k8__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--faq-toggle);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from blocking click event */
    }

    .page-8k8__faq-item.active .page-8k8__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar effect */
    }

    .page-8k8__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(--gray-text);
      font-size: 1em;
    }

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

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

    .page-8k8__floating-button {
      background-color: var(--primary-color);
      color: var(--light-text);
      padding: 12px 25px;
      border: none;
      border-radius: 30px; /* Pill shape */
      font-size: 1em;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 120px;
    }

    .page-8k8__floating-button:hover {
      background-color: var(--button-hover);
      transform: translateY(-3px);
    }

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

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

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

      .page-8k8__button {
        width: 100%;
        padding: 12px 20px;
      }

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

      .page-8k8__section-text {
        font-size: 0.95em;
      }

      .page-8k8__features-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8__grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      
      .page-8k8__grid-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px; /* Adjust padding for smaller screens */
      }

      .page-8k8__grid-item img {
        max-height: 80px;
      }

      .page-8k8__promo-title {
        font-size: 1.5em;
      }

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

      .page-8k8__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-8k8__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8__faq-answer {
        padding: 0 20px;
      }

      .page-8k8__faq-item.active .page-8k8__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-8k8__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 100px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8__container {
        padding: 15px;
      }

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

      .page-8k8__hero-title {
        font-size: 1.8em;
      }

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