
    :root {
      --page-8k8-slot-primary-color: #f7b731;
      --page-8k8-slot-secondary-color: #333;
      --page-8k8-slot-text-color: #fff;
      --page-8k8-slot-dark-text: #222;
      --page-8k8-slot-bg-dark: #1a1a1a;
      --page-8k8-slot-bg-light: #f4f4f4;
      --page-8k8-slot-border-color: #444;
    }

    .page-8k8-slot {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-slot-text-color);
      background-color: var(--page-8k8-slot-bg-dark);
      padding-bottom: 50px; /* Ensure space above footer */
    }

    .page-8k8-slot__hero-section {
      position: relative;
      padding: 10px 0 60px; /* Small top padding, body handles header offset */
      text-align: center;
      overflow: hidden;
      background: linear-gradient(135deg, #0f0f0f, #222222);
      color: var(--page-8k8-slot-text-color);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .page-8k8-slot__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.5);
    }

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

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

    .page-8k8-slot__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: normal;
    }

    .page-8k8-slot__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-slot-primary-color);
      color: var(--page-8k8-slot-dark-text);
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

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

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

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

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

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

    .page-8k8-slot__text-content {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.1em;
      line-height: 1.8;
    }

    .page-8k8-slot__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

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

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

    .page-8k8-slot__feature-icon {
      width: 120px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }

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

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

    .page-8k8-slot__game-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-8k8-slot__game-card {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.4);
      transition: transform 0.3s ease;
      text-align: center;
      border: 1px solid var(--page-8k8-slot-border-color);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

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

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

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

    .page-8k8-slot__game-provider {
      font-size: 0.9em;
      color: #aaa;
      margin-bottom: 15px;
    }

    .page-8k8-slot__play-button {
      background-color: var(--page-8k8-slot-primary-color);
      color: var(--page-8k8-slot-dark-text);
      padding: 10px 25px;
      border-radius: 50px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-8k8-slot__play-button:hover {
      background-color: #ffdd77;
    }

    .page-8k8-slot__steps-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }

    .page-8k8-slot__step-item {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.4);
      width: calc(33% - 20px);
      min-width: 280px;
      text-align: left;
      border: 1px solid var(--page-8k8-slot-border-color);
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

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

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

    .page-8k8-slot__faq-section {
      padding: 60px 20px;
      background-color: var(--page-8k8-slot-bg-light);
      color: var(--page-8k8-slot-dark-text);
    }

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

    .page-8k8-slot__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border: 1px solid #ddd;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-8k8-slot__faq-question h3 {
      font-size: 1.2em;
      margin: 0;
      color: var(--page-8k8-slot-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-slot__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-slot-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

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

    .page-8k8-slot__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      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-8k8-slot-dark-text);
      text-align: left;
    }

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

    .page-8k8-slot__faq-answer p {
      margin-top: 0;
      margin-bottom: 1em;
    }
    .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.8em;
      }
      .page-8k8-slot__section-title {
        font-size: 2em;
      }
      .page-8k8-slot__feature-item,
      .page-8k8-slot__game-card,
      .page-8k8-slot__step-item {
        min-width: unset;
      }
      .page-8k8-slot__step-item {
        width: calc(50% - 15px);
      }
    }

    @media (max-width: 768px) {
      .page-8k8-slot__hero-section {
        padding-bottom: 40px;
      }
      .page-8k8-slot__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-slot__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-slot__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-slot__section {
        padding: 40px 15px;
      }
      .page-8k8-slot__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-slot__text-content {
        font-size: 1em;
      }

      /* List Item Responsive */
      .page-8k8-slot__features-grid,
      .page-8k8-slot__game-gallery,
      .page-8k8-slot__steps-list,
      .page-8k8-slot__faq-list {
        display: flex; /* Ensure flex behavior */
        flex-direction: column; /* Stack items vertically */
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot__feature-item,
      .page-8k8-slot__game-card,
      .page-8k8-slot__step-item,
      .page-8k8-slot__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-slot__game-card {
        padding: 0 !important; /* Game card padding is internal */
      }
      .page-8k8-slot__game-info {
        padding: 20px !important;
      }
      .page-8k8-slot__game-image {
        height: 180px;
      }

      .page-8k8-slot__feature-title,
      .page-8k8-slot__step-title {
        font-size: 1.4em;
      }
      .page-8k8-slot__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-slot__faq-answer {
        padding: 0 15px !important; /* Ensure initial padding is correct */
      }
      .page-8k8-slot__faq-item.active .page-8k8-slot__faq-answer {
        padding: 15px 15px !important; /* Adjusted for mobile */
      }

      /* Image responsive */
      .page-8k8-slot__hero-background,
      .page-8k8-slot__feature-icon,
      .page-8k8-slot__game-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-slot__game-image {
        width: 100% !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-slot__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-slot__section-title {
        font-size: 1.6em;
      }
      .page-8k8-slot__feature-title,
      .page-8k8-slot__step-title {
        font-size: 1.2em;
      }
      .page-8k8-slot__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-slot__faq-toggle {
        font-size: 1.5em;
      }
    }
  