
    /* Page-specific CSS for 8k8 slot casino */
    .page-8k8-slot-casino {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: 10px; /* Small padding, relying on body padding for header offset */
    }

    .page-8k8-slot-casino__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-8k8-slot-casino__section:last-of-type {
        margin-bottom: 0;
    }

    .page-8k8-slot-casino__hero-section {
      text-align: center;
      padding: 60px 20px; /* Internal padding, main's padding-top handles header offset */
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      border-radius: 0;
      margin-bottom: 20px;
      box-shadow: none;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-slot-casino__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:hero:1920x1080:slot casino,gaming background]');
      background-size: cover;
      background-position: center;
      opacity: 0.2;
      z-index: 0;
    }

    .page-8k8-slot-casino__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8k8-slot-casino__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      color: #ffe0b2; /* Lighter color for contrast */
    }

    .page-8k8-slot-casino__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #ffffff;
    }

    .page-8k8-slot-casino__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffc107; /* Gold/Yellow */
      color: #1a2a6c; /* Dark blue for contrast */
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-slot-casino__button:hover {
      background-color: #ffa000;
      transform: translateY(-2px);
    }

    .page-8k8-slot-casino__heading {
      font-size: 2.5em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-slot-casino__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffc107;
      border-radius: 2px;
    }

    .page-8k8-slot-casino__subheading {
      font-size: 1.8em;
      color: #333;
      margin-bottom: 20px;
    }

    .page-8k8-slot-casino__paragraph {
      margin-bottom: 15px;
      color: #555;
    }

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

    .page-8k8-slot-casino__list-item {
      background-color: #f0f8ff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0,0,0,0.08);
      text-align: center;
      position: relative;
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-slot-casino__list-item::before {
      content: '✔';
      position: absolute;
      top: 15px;
      left: 15px;
      color: #28a745;
      font-size: 1.2em;
      font-weight: bold;
    }

    .page-8k8-slot-casino__list-item-text {
      font-weight: bold;
      color: #1a2a6c;
      margin-top: 10px;
      display: block;
      padding-left: 30px; /* Make space for the checkmark */
      text-align: left;
    }

    .page-8k8-slot-casino__game-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-slot-casino__game-card {
      background-color: #fdfdfd;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-slot-casino__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .page-8k8-slot-casino__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-8k8-slot-casino__game-card-title {
      font-size: 1.4em;
      color: #1a2a6c;
      margin: 15px 0;
      padding: 0 15px;
    }

    .page-8k8-slot-casino__game-card-button {
      display: block;
      width: calc(100% - 30px);
      margin: 0 15px 15px 15px;
      padding: 12px 0;
      background-color: #ffc107;
      color: #1a2a6c;
      text-decoration: none;
      border-radius: 25px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-slot-casino__game-card-button:hover {
      background-color: #ffa000;
    }

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

    .page-8k8-slot-casino__promo-card {
        background-color: #fdfdfd;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        padding: 25px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-slot-casino__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .page-8k8-slot-casino__promo-title {
        font-size: 1.5em;
        color: #b21f1f;
        margin-bottom: 10px;
    }

    .page-8k8-slot-casino__promo-description {
        color: #555;
        margin-bottom: 20px;
    }

    .page-8k8-slot-casino__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-8k8-slot-casino__payment-method-item {
      background-color: #f0f8ff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0,0,0,0.08);
      text-align: center;
      font-weight: bold;
      color: #1a2a6c;
      box-sizing: border-box;
      width: 100%; /* Ensure it takes full grid column width */
      max-width: 150px; /* Limit max width for larger screens */
    }

    .page-8k8-slot-casino__payment-method-image {
        max-width: 100%;
        height: auto;
        margin-bottom: 10px;
        border-radius: 5px;
        object-fit: contain;
    }

    .page-8k8-slot-casino__faq-section {
        padding: 40px 20px;
        max-width: 900px;
        margin: 0 auto 20px auto;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-8k8-slot-casino__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-8k8-slot-casino__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-8k8-slot-casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f9f9f9;
      cursor: pointer;
      font-weight: bold;
      color: #1a2a6c;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .page-8k8-slot-casino__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-8k8-slot-casino__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        pointer-events: none; /* Prevent h3 from intercepting click */
        color: #1a2a6c; /* Ensure contrast */
    }

    .page-8k8-slot-casino__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from intercepting click */
      color: #ffc107; /* Ensure contrast */
    }

    .page-8k8-slot-casino__faq-item.active .page-8k8-slot-casino__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-8k8-slot-casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: #fff;
    }

    .page-8k8-slot-casino__faq-item.active .page-8k8-slot-casino__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* General image responsiveness */
    .page-8k8-slot-casino img {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-slot-casino__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-slot-casino__hero-description {
        font-size: 1em;
      }

      .page-8k8-slot-casino__heading {
        font-size: 1.8em;
      }

      .page-8k8-slot-casino__section {
        padding: 20px 15px;
        margin-bottom: 15px;
      }

      .page-8k8-slot-casino__list {
        grid-template-columns: 1fr; /* Stack items */
        gap: 15px;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-slot-casino__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;
      }

      .page-8k8-slot-casino__list-item::before {
        top: 10px;
        left: 10px;
      }

      .page-8k8-slot-casino__list-item-text {
        padding-left: 25px;
      }

      .page-8k8-slot-casino__game-cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-slot-casino__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot-casino__game-card-image {
        max-width: 100% !important;
        height: auto !important; /* Ensure images are responsive */
        box-sizing: border-box !important;
      }

      .page-8k8-slot-casino__promotions-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .page-8k8-slot-casino__promo-card {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
      }

      .page-8k8-slot-casino__payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Slightly smaller for mobile */
        gap: 15px;
      }

      .page-8k8-slot-casino__payment-method-item {
          padding: 10px;
          max-width: 120px; /* Adjust max width for mobile */
      }

      .page-8k8-slot-casino__payment-method-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-slot-casino__faq-section {
          padding: 20px 15px;
      }

      .page-8k8-slot-casino__faq-question {
          padding: 12px;
      }

      .page-8k8-slot-casino__faq-question h3 {
          font-size: 1em;
      }

      .page-8k8-slot-casino__faq-answer {
          padding: 15px 12px;
      }

      .page-8k8-slot-casino__faq-item.active .page-8k8-slot-casino__faq-answer {
          padding: 15px 12px !important; /* Adjust padding for mobile */
      }
    }
  