
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow for 8k8 Casino */
      --secondary-color: #333333; /* Dark grey */
      --text-color: #ffffff; /* White text */
      --dark-bg: #1a1a1a; /* Very dark background */
      --light-bg: #2a2a2a; /* Slightly lighter dark background */
      --accent-color: #ff4400; /* Orange/Red accent */
      --border-color: #444444;
      --header-offset: 122px; /* Default value if not set by shared.css */
    }

    /* Base styles for the page content */
    .page-8k8-slot {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--dark-bg);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback to default if shared.css doesn't set it */
    }

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

    /* Hero Section */
    .page-8k8-slot__hero-section {
      position: relative;
      background-color: var(--light-bg);
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding as per instruction */
    }

    .page-8k8-slot__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-8k8-slot__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-slot__hero-title {
      font-size: 3.2em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-slot__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-slot__cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-color);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-slot__cta-button:hover {
      background-color: #e63900;
    }

    /* Section Styling */
    .page-8k8-slot__section {
      padding: 60px 20px;
      background-color: var(--dark-bg);
      text-align: center;
    }

    .page-8k8-slot__section:nth-of-type(even) {
      background-color: var(--light-bg);
    }

    .page-8k8-slot__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 40px;
      text-align: center;
    }

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

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

    .page-8k8-slot__feature-item {
      background-color: var(--secondary-color);
      padding: 30px;
      border-radius: 10px;
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      border-left: 5px solid var(--primary-color);
      box-sizing: border-box;
    }

    .page-8k8-slot__feature-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-slot__feature-description {
      color: #ddd;
      font-size: 1em;
    }

    /* Slot Titles Grid */
    .page-8k8-slot__slot-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-slot__slot-card {
      background-color: var(--secondary-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-slot__slot-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .page-8k8-slot__slot-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-8k8-slot__slot-info {
      padding: 20px;
    }

    .page-8k8-slot__slot-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
      word-wrap: break-word; /* Ensure title wraps */
    }

    .page-8k8-slot__slot-provider {
      font-size: 0.9em;
      color: #aaa;
    }

    /* Steps List */
    .page-8k8-slot__steps-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-slot__step-item {
      background-color: var(--secondary-color);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      position: relative;
      box-sizing: border-box;
      border-bottom: 5px solid var(--primary-color);
    }

    .page-8k8-slot__step-number {
      font-size: 2.5em;
      color: var(--primary-color);
      font-weight: bold;
      margin-bottom: 15px;
      display: block;
    }

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

    .page-8k8-slot__step-description {
      color: #ddd;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-8k8-slot__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-8k8-slot__faq-item {
      background-color: var(--light-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-8k8-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--secondary-color);
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-slot__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-8k8-slot__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

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

    .page-8k8-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #ddd;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    /* Call to Action Final Section */
    .page-8k8-slot__final-cta {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--light-bg);
    }

    .page-8k8-slot__final-cta-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 20px;
    }

    .page-8k8-slot__final-cta-text {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-slot__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-slot__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-slot__section-title {
        font-size: 2em;
      }
      .page-8k8-slot__features-grid,
      .page-8k8-slot__slot-grid,
      .page-8k8-slot__steps-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-8k8-slot__hero-section {
        padding: 60px 15px;
      }
      .page-8k8-slot__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-slot__hero-description {
        font-size: 1em;
      }
      .page-8k8-slot__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .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: 0.95em;
      }

      /* List item mobile responsiveness */
      .page-8k8-slot__features-grid,
      .page-8k8-slot__slot-grid,
      .page-8k8-slot__steps-list,
      .page-8k8-slot__faq-list {
        display: block; /* Stack items */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-slot__feature-item,
      .page-8k8-slot__slot-card,
      .page-8k8-slot__step-item,
      .page-8k8-slot__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-slot__slot-title,
      .page-8k8-slot__feature-title,
      .page-8k8-slot__step-title {
        word-break: break-word !important;
      }

      .page-8k8-slot__slot-image-wrapper {
        height: 180px;
      }
      .page-8k8-slot__slot-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8k8-slot__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-slot__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }
      .page-8k8-slot__faq-item.active .page-8k8-slot__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-slot__final-cta-title {
        font-size: 2em;
      }
      .page-8k8-slot__final-cta-text {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-slot__section-title {
        font-size: 1.6em;
      }
      .page-8k8-slot__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
    }
  