
    /* Page-specific CSS for 8k8 slot */
    .page-8k8-slot {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: 10px; /* Small padding to account for fixed header if body padding is not enough */
    }

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

    .page-8k8-slot__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-image: url('[GALLERY:hero:1920x1080:8k8 slot,casino,gaming,jackpot]');
      background-size: cover;
      background-position: center;
      color: #ffffff;
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-slot__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

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

    .page-8k8-slot__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #f7b731; /* Golden color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-slot__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #ffffff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-slot__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #f7b731;
      color: #1a1a2e;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-slot__button:hover {
      background-color: #e0a42a;
      transform: translateY(-2px);
    }

    .page-8k8-slot__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #2a2a4a;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-slot__section-title {
      font-size: 2.5em;
      color: #f7b731;
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-8k8-slot__card {
      background-color: #3a3a5a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .page-8k8-slot__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-slot__card-image-wrapper {
      width: 100%;
      max-width: 400px;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-8k8-slot__card-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-8k8-slot__card-title {
      font-size: 1.6em;
      color: #f7b731;
      margin-bottom: 15px;
    }

    .page-8k8-slot__card-description {
      font-size: 0.95em;
      color: #c0c0c0;
      flex-grow: 1;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

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

    .page-8k8-slot__list-item {
      background-color: #3a3a5a;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      color: #d0d0d0;
      font-size: 1.05em;
      box-sizing: border-box; /* Crucial for responsive lists */
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .page-8k8-slot__list-icon {
      flex-shrink: 0;
      width: 60px; /* Minimum 200x200px rule is for content images, not decorative icons. Let's make this larger. */
      height: 60px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }
    
    .page-8k8-slot__list-item strong {
      color: #f7b731;
    }

    /* FAQ Section Styles */
    .page-8k8-slot__faq-section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: #2a2a4a;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-slot__faq-item {
      background-color: #3a3a5a;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-slot__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #4a4a6a;
      border-radius: 10px;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-slot__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #f7b731;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-slot__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #f7b731;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .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; /* 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: #d0d0d0;
      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; /* Active padding */
      opacity: 1;
    }
    
    .page-8k8-slot__faq-answer p {
      margin-bottom: 15px;
    }
    .page-8k8-slot__faq-answer p:last-child {
      margin-bottom: 0;
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-slot__hero-title {
        font-size: 3em;
      }
      .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: 40px 15px;
      }
      .page-8k8-slot__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-slot__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-slot__section {
        padding: 30px 0;
      }
      .page-8k8-slot__section-title {
        font-size: 1.8em;
      }
      .page-8k8-slot__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-slot__list {
        grid-template-columns: 1fr;
        margin: 20px 0;
      }
      .page-8k8-slot__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-slot__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-slot__card-image-wrapper,
      .page-8k8-slot__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-8k8-slot__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-slot__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-slot__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-slot__faq-item.active .page-8k8-slot__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-slot__hero-title {
        font-size: 2em;
      }
      .page-8k8-slot__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-slot__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-slot__section-title {
        font-size: 1.5em;
      }
      .page-8k8-slot__card-title {
        font-size: 1.4em;
      }
      .page-8k8-slot__text-content {
        font-size: 1em;
      }
    }
  