
    /* Base styles for the page content, scoped to .page-8k8-slot */
    .page-8k8-slot {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e; /* Dark background for casino theme */
      line-height: 1.6;
      padding-bottom: 50px; /* Space for footer */
      padding-top: 10px; /* Small padding for hero/first section as body padding-top is handled by shared.css */
    }

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

    .page-8k8-slot__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-slot__section--dark {
      background-color: #0f0f1d;
    }

    .page-8k8-slot__section-title {
      font-size: 2.8em;
      color: #ffcc00; /* Gold/yellow accent */
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: bold;
    }

    .page-8k8-slot__section-subtitle {
      font-size: 1.5em;
      color: #cccccc;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-slot__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #f0f0f0;
    }

    .page-8k8-slot__button {
      display: inline-block;
      background-color: #e6b800; /* Vibrant gold */
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      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__button:hover {
      background-color: #ffcc00;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8k8-slot__hero-section {
      position: relative;
      overflow: hidden;
      padding: 100px 0; /* Adjusted padding to account for body padding-top */
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-8k8-slot__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Darken background image for text readability */
    }

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

    .page-8k8-slot__hero-title {
      font-size: 4em;
      margin-bottom: 20px;
      color: #ffcc00;
      text-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
      line-height: 1.1;
      font-weight: 900;
    }

    .page-8k8-slot__hero-subtitle {
      font-size: 1.8em;
      margin-bottom: 40px;
      color: #f0f0f0;
      font-weight: normal;
    }

    /* Features/Game Cards Section */
    .page-8k8-slot__cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-slot__card {
      background-color: #2a2a4a;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease, background-color 0.3s ease;
      border: 1px solid #444466;
      display: flex;
      flex-direction: column;
      align-items: center; /* Center content within card */
    }

    .page-8k8-slot__card:hover {
      transform: translateY(-8px);
      background-color: #3a3a5a;
    }

    .page-8k8-slot__card-image {
      width: 100%; /* Ensure image fills card width */
      max-width: 400px; /* Maximum width for card images */
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-slot__card-title {
      font-size: 1.8em;
      color: #ffcc00;
      margin-bottom: 15px;
      font-weight: bold;
      text-align: center;
    }

    .page-8k8-slot__card-description {
      font-size: 1.05em;
      color: #cccccc;
      text-align: center;
    }

    /* Game Providers Section */
    .page-8k8-slot__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-slot__provider-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
      border: 1px solid #444466;
    }

    .page-8k8-slot__provider-item:hover {
      transform: scale(1.05);
    }

    .page-8k8-slot__provider-logo {
      width: 100%;
      max-width: 150px; /* Constrain provider logo size */
      height: auto;
      margin-bottom: 10px;
      filter: grayscale(20%) brightness(1.2); /* Make logos pop slightly */
    }

    .page-8k8-slot__provider-name {
      font-size: 1.1em;
      color: #ffffff;
      font-weight: bold;
    }

    /* Payment Methods Section */
    .page-8k8-slot__payments-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
    }

    .page-8k8-slot__payment-method {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 20px 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 15px;
      transition: background-color 0.3s ease;
      border: 1px solid #444466;
    }

    .page-8k8-slot__payment-method:hover {
      background-color: #3a3a5a;
    }

    .page-8k8-slot__payment-icon {
      width: 100%;
      max-width: 80px; /* Adjust size for payment icons */
      height: auto;
      filter: brightness(1.1);
    }

    .page-8k8-slot__payment-name {
      font-size: 1.2em;
      color: #ffffff;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-8k8-slot__faq-list {
      margin-top: 40px;
      text-align: left;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5a;
      color: #ffcc00;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-slot__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-slot__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

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

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

    .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;
    }

    /* Promotional Banner */
    .page-8k8-slot__promo-banner {
      background-color: #e6b800;
      color: #1a1a2e;
      padding: 40px 20px;
      margin-top: 60px;
      text-align: center;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-slot__promo-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      font-weight: bold;
    }

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

    .page-8k8-slot__promo-button {
      background-color: #1a1a2e;
      color: #ffcc00;
      padding: 15px 35px;
      border-radius: 8px;
      font-size: 1.3em;
      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__promo-button:hover {
      background-color: #0f0f1d;
      transform: translateY(-2px);
    }

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

    @media (max-width: 768px) {
      .page-8k8-slot {
        padding-top: 5px; /* Adjust for smaller screens, if needed */
      }
      .page-8k8-slot__hero-section {
        padding: 80px 0;
        min-height: 500px;
      }
      .page-8k8-slot__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-slot__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-slot__section {
        padding: 40px 0;
      }
      .page-8k8-slot__section-title {
        font-size: 2em;
      }
      .page-8k8-slot__section-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-slot__cards-grid,
      .page-8k8-slot__providers-grid,
      .page-8k8-slot__payments-list {
        grid-template-columns: 1fr; /* Stack cards, providers, payments vertically */
        gap: 20px;
      }
      .page-8k8-slot__card,
      .page-8k8-slot__provider-item,
      .page-8k8-slot__payment-method {
        width: 100% !important; /* Important for list items */
        max-width: 100% !important; /* Important for list items */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }
      .page-8k8-slot__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8-slot__faq-answer {
        font-size: 1em;
        padding: 15px 20px !important; /* Adjusted padding for mobile */
      }
      .page-8k8-slot__promo-title {
        font-size: 2em;
      }
      .page-8k8-slot__promo-description {
        font-size: 1.1em;
      }
      .page-8k8-slot__text-content {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-slot__card-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-slot__provider-name {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-slot__payment-name {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-slot__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-slot__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-slot__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-slot__section-title {
        font-size: 1.8em;
      }
      .page-8k8-slot__section-subtitle {
        font-size: 1em;
      }
      .page-8k8-slot__card {
        padding: 20px;
      }
      .page-8k8-slot__card-title {
        font-size: 1.4em;
      }
      .page-8k8-slot__card-description {
        font-size: 0.95em;
      }
      .page-8k8-slot__provider-item,
      .page-8k8-slot__payment-method {
        padding: 15px;
      }
      .page-8k8-slot__payment-name {
        font-size: 1.1em;
      }
      .page-8k8-slot__promo-title {
        font-size: 1.8em;
      }
      .page-8k8-slot__promo-description {
        font-size: 1em;
      }
      .page-8k8-slot__promo-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }
  