
    /* Base styles for the specific page */
    .page-8k8-casino {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      /* Fallback for body padding, if not handled by shared.css */
      padding-top: var(--header-offset, 122px); 
    }

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

    .page-8k8-casino__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-casino__section--dark {
        background-color: #2a2a2a;
        color: #f0f0f0;
    }

    .page-8k8-casino__section-title {
      font-size: 2.5em;
      color: #e44d26; /* A vibrant color for titles */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-casino__section-subtitle {
      font-size: 1.8em;
      color: #333;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-casino__section--dark .page-8k8-casino__section-subtitle {
        color: #f0f0f0;
    }

    .page-8k8-casino__text {
      font-size: 1.1em;
      margin-bottom: 15px;
    }

    .page-8k8-casino__text strong {
        color: #e44d26;
    }

    .page-8k8-casino__text--center {
        text-align: center;
    }

    /* Hero Section */
    .page-8k8-casino__hero-section {
      position: relative;
      overflow: hidden;
      color: #ffffff;
      text-align: center;
      padding: 100px 20px; /* Adjusted padding-top to avoid double offset */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      box-sizing: border-box;
    }

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

    .page-8k8-casino__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      line-height: 1.2;
    }

    .page-8k8-casino__hero-description {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-casino__button {
      background-color: #e44d26;
      color: #ffffff;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* In case it's used as an <a>, though instructions say <button> */
      display: inline-block;
      font-weight: bold;
    }

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

    /* Game Categories / Features Grid */
    .page-8k8-casino__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-8k8-casino__grid-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-casino__grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-8k8-casino__grid-item-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box; /* Responsive image */
    }

    .page-8k8-casino__grid-item-title {
      font-size: 1.4em;
      color: #e44d26;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-casino__grid-item-description {
      font-size: 1em;
      color: #555;
    }

    /* Payment Methods */
    .page-8k8-casino__payment-methods-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-8k8-casino__payment-method-item {
        background-color: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px 25px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: transform 0.2s ease;
        box-sizing: border-box; /* Responsive list item */
        max-width: 180px; /* Adjust max-width for better display */
        width: 100%; /* Responsive list item */
    }

    .page-8k8-casino__payment-method-item:hover {
        transform: translateY(-3px);
    }

    .page-8k8-casino__payment-method-logo {
        max-width: 100px;
        height: auto;
        margin-bottom: 10px;
        max-height: 50px; /* Keep logos from being too large */
        object-fit: contain;
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
        box-sizing: border-box; /* Responsive image */
    }

    .page-8k8-casino__payment-method-name {
        font-weight: bold;
        color: #333;
        font-size: 1em;
    }

    /* Why Choose Us List */
    .page-8k8-casino__features-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-8k8-casino__feature-item {
      background-color: #f0f8ff;
      padding: 25px;
      border-left: 5px solid #e44d26;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Responsive list item */
    }

    .page-8k8-casino__feature-title {
      font-size: 1.3em;
      color: #e44d26;
      margin-bottom: 10px;
      font-weight: bold;
    }

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

    /* FAQ Section */
    .page-8k8-casino__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-casino__faq-item {
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-casino__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #e44d26;
        pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-8k8-casino__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e44d26;
      margin-left: 15px;
      pointer-events: none; /* Prevent span from blocking click event on parent */
    }

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

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-casino__hero-title {
        font-size: 3em;
      }
      .page-8k8-casino__hero-description {
        font-size: 1.3em;
      }
      .page-8k8-casino__section-title {
        font-size: 2em;
      }
      .page-8k8-casino__section-subtitle {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-casino__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }
      .page-8k8-casino__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-casino__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-casino__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-casino__section {
        padding: 25px 15px;
      }
      .page-8k8-casino__section-title {
        font-size: 1.8em;
      }
      .page-8k8-casino__section-subtitle {
        font-size: 1.4em;
      }
      .page-8k8-casino__text {
        font-size: 1em;
      }

      /* Responsive list items for grid */
      .page-8k8-casino__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-casino__grid-item {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-casino__grid-item-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Responsive list items for payment methods */
      .page-8k8-casino__payment-methods-list {
          flex-direction: column;
          align-items: center;
          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-casino__payment-method-item {
          width: 90% !important; /* Adjust width for better mobile fit */
          max-width: 90% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }
      .page-8k8-casino__payment-method-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Responsive list items for features */
      .page-8k8-casino__features-list {
        grid-template-columns: 1fr;
        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-casino__feature-item {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      /* FAQ adjustments */
      .page-8k8-casino__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-8k8-casino__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-casino__faq-answer {
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-casino__hero-title {
        font-size: 2em;
      }
      .page-8k8-casino__hero-description {
        font-size: 1em;
      }
      .page-8k8-casino__section-title {
        font-size: 1.5em;
      }
      .page-8k8-casino__section-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-casino__button {
        font-size: 1em;
        padding: 10px 20px;
      }
    }
  