
    :root {
      --page-8k8-slot-primary-color: #e44d26; /* A vibrant orange-red for action */
      --page-8k8-slot-secondary-color: #333;
      --page-8k8-slot-accent-color: #ffcc00; /* Gold/yellow for highlights */
      --page-8k8-slot-text-color: #f0f0f0;
      --page-8k8-slot-background-dark: #1a1a1a;
      --page-8k8-slot-background-light: #2c2c2c;
      --page-8k8-slot-border-color: #555;
    }

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

    .page-8k8-slot__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-8k8-slot__hero-section {
      position: relative;
      background-color: var(--page-8k8-slot-background-dark);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
    }

    .page-8k8-slot__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
      max-width: 100%; /* Responsive image */
    }

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

    .page-8k8-slot__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: var(--page-8k8-slot-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word; /* Ensure title breaks on mobile */
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-slot__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-slot__cta-button {
      background-color: var(--page-8k8-slot-primary-color);
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      margin: 10px;
    }

    .page-8k8-slot__cta-button:hover {
      background-color: #ff6a3d;
      transform: translateY(-2px);
    }

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

    .page-8k8-slot__floating-button {
      background-color: var(--page-8k8-slot-primary-color);
      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.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 120px;
    }

    .page-8k8-slot__floating-button:hover {
      background-color: #ff6a3d;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8k8-slot__section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--page-8k8-slot-background-light);
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-slot__section--dark {
      background-color: var(--page-8k8-slot-background-dark);
    }

    .page-8k8-slot__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-slot-accent-color);
      margin-bottom: 40px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-slot__section-text {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: #ccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

    .page-8k8-slot__game-card {
      background-color: var(--page-8k8-slot-background-dark);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-8k8-slot-border-color);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-8k8-slot__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-slot__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      background-color: #000;
    }

    .page-8k8-slot__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
      transition: transform 0.3s ease;
    }

    .page-8k8-slot__game-card:hover .page-8k8-slot__game-image {
      transform: scale(1.05);
    }

    .page-8k8-slot__game-info {
      padding: 20px;
      flex-grow: 1;
    }

    .page-8k8-slot__game-title {
      font-size: 1.5em;
      color: var(--page-8k8-slot-accent-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-slot__game-description {
      font-size: 0.95em;
      color: #bbb;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

    .page-8k8-slot__promo-card {
      background-color: var(--page-8k8-slot-background-dark);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      border: 1px solid var(--page-8k8-slot-border-color);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

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

    .page-8k8-slot__promo-title {
      font-size: 1.8em;
      color: var(--page-8k8-slot-primary-color);
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-slot__promo-description {
      color: #ccc;
      margin-bottom: 20px;
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-slot__promo-button {
      background-color: var(--page-8k8-slot-accent-color);
      color: var(--page-8k8-slot-background-dark);
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      font-size: 1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      text-decoration: none;
    }

    .page-8k8-slot__promo-button:hover {
      background-color: #ffd733;
      transform: translateY(-2px);
    }

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

    .page-8k8-slot__logo-item {
      background-color: var(--page-8k8-slot-background-dark);
      border: 1px solid var(--page-8k8-slot-border-color);
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 100%;
      box-sizing: border-box;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

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

    .page-8k8-slot__logo-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      display: block;
    }

    /* Why Choose Us Features */
    .page-8k8-slot__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      list-style: none; /* Remove default list styling */
      padding: 0;
    }

    .page-8k8-slot__feature-item {
      background-color: var(--page-8k8-slot-background-dark);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      border: 1px solid var(--page-8k8-slot-border-color);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-8k8-slot__feature-title {
      font-size: 1.6em;
      color: var(--page-8k8-slot-primary-color);
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-slot__feature-description {
      color: #ccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* FAQ Section */
    .page-8k8-slot__faq-section {
      background-color: var(--page-8k8-slot-background-light);
      padding: 60px 20px;
      text-align: center;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-slot__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
      text-align: left;
      list-style: none;
      padding: 0;
    }

    .page-8k8-slot__faq-item {
      background-color: var(--page-8k8-slot-background-dark);
      border: 1px solid var(--page-8k8-slot-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-8k8-slot-background-dark);
      color: var(--page-8k8-slot-accent-color);
      font-size: 1.2em;
      border-bottom: 1px solid transparent;
      transition: background-color 0.3s ease, border-bottom 0.3s ease;
      user-select: none;
    }

    .page-8k8-slot__faq-question:hover {
      background-color: #2a2a2a;
    }

    .page-8k8-slot__faq-item.active .page-8k8-slot__faq-question {
      border-bottom-color: var(--page-8k8-slot-border-color);
    }

    .page-8k8-slot__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: var(--page-8k8-slot-accent-color);
      pointer-events: none; /* Prevents h3 from blocking click event on parent div */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-slot__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      color: var(--page-8k8-slot-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle from blocking click event on parent div */
      min-width: 20px; /* Ensure consistent width for the toggle icon */
      text-align: center;
    }

    .page-8k8-slot__faq-item.active .page-8k8-slot__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-8k8-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: var(--page-8k8-slot-background-dark);
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1.05em;
    }

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

    .page-8k8-slot__faq-answer p {
      margin: 0 0 10px 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8-slot__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-slot__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-slot__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-slot__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-slot__hero-section {
        padding: 60px 15px;
        min-height: 350px;
      }
      .page-8k8-slot__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
      }
      .page-8k8-slot__hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 20px;
      }
      .page-8k8-slot__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-slot__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Horizontal on smaller screens */
        width: calc(100% - 30px);
        justify-content: space-around;
      }
      .page-8k8-slot__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }

      .page-8k8-slot__section {
        padding: 40px 15px;
      }
      .page-8k8-slot__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-slot__section-text {
        font-size: 1em;
      }

      .page-8k8-slot__game-grid,
      .page-8k8-slot__promo-list,
      .page-8k8-slot__logo-grid,
      .page-8k8-slot__features-list {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
        margin-top: 30px;
      }

      .page-8k8-slot__game-card,
      .page-8k8-slot__promo-card,
      .page-8k8-slot__logo-item,
      .page-8k8-slot__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust padding for mobile */
      }

      .page-8k8-slot__game-image-wrapper {
        height: 180px;
      }

      .page-8k8-slot__game-title {
        font-size: 1.3em;
      }
      .page-8k8-slot__promo-title {
        font-size: 1.5em;
      }
      .page-8k8-slot__feature-title {
        font-size: 1.4em;
      }

      .page-8k8-slot__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-slot__faq-answer {
        padding: 15px 20px;
        font-size: 0.95em;
      }
      .page-8k8-slot__faq-list {
        margin-top: 30px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot__hero-section {
        padding: 50px 10px;
        min-height: 300px;
      }
      .page-8k8-slot__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-slot__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-slot__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-8k8-slot__floating-buttons {
        bottom: 10px;
        right: 10px;
        width: calc(100% - 20px);
      }
      .page-8k8-slot__floating-button {
        padding: 8px 10px;
        font-size: 0.85em;
      }

      .page-8k8-slot__section {
        padding: 30px 10px;
      }
      .page-8k8-slot__section-title {
        font-size: 1.5em;
      }
      .page-8k8-slot__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-8k8-slot__faq-answer {
        padding: 12px 15px;
      }
    }

    /* Ensure all images are responsive and not tiny */
    .page-8k8-slot img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    @media (max-width: 768px) {
      .page-8k8-slot img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-slot__game-image-wrapper,
      .page-8k8-slot__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  