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

    /* General Section Styling */
    .page-8k8__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    
    .page-8k8__section--dark {
        background-color: #2a2a2a;
        color: #f0f0f0;
    }

    .page-8k8__section-title {
      font-size: 2.5em;
      color: #c0392b; /* A vibrant red for casino theme */
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-8k8__section-description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: #555;
    }
    
    .page-8k8__section--dark .page-8k8__section-description {
        color: #ccc;
    }

    /* Hero Section */
    .page-8k8__hero-section {
      position: relative;
      width: 100%;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      background-color: #1a1a1a;
      padding: 60px 20px; /* Added padding to ensure content is not too close to edges */
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
    }

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

    .page-8k8__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-8k8__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #f39c12; /* Golden color for emphasis */
    }

    .page-8k8__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-8k8__floating-buttons {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-8k8__floating-button {
      background-color: #c0392b; /* Red for action */
      color: #fff;
      border: none;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      min-width: 120px;
      text-align: center;
    }

    .page-8k8__floating-button:hover {
      background-color: #e74c3c;
      transform: translateY(-3px);
    }
    
    .page-8k8__floating-button--login {
        background-color: #f39c12; /* Golden for login */
    }
    
    .page-8k8__floating-button--login:hover {
        background-color: #f1c40f;
    }

    /* Product Display / Game Grid */
    .page-8k8__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
      margin-top: 40px;
    }

    .page-8k8__game-card {
      background-color: #fefefe;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

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

    .page-8k8__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8__game-title {
      font-size: 1.4em;
      color: #c0392b;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8__game-description {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }
    
    .page-8k8__section--dark .page-8k8__game-card {
        background-color: #3a3a3a;
        color: #eee;
    }
    
    .page-8k8__section--dark .page-8k8__game-title {
        color: #f39c12;
    }
    
    .page-8k8__section--dark .page-8k8__game-description {
        color: #ccc;
    }

    /* Promotions Section */
    .page-8k8__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-8k8__promo-card {
        background-color: #fefefe;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

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

    .page-8k8__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-8k8__promo-info {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .page-8k8__promo-title {
        font-size: 1.5em;
        color: #c0392b;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-8k8__promo-description {
        font-size: 0.95em;
        color: #666;
        margin-bottom: 15px;
        flex-grow: 1;
    }
    
    .page-8k8__promo-button {
        background-color: #f39c12;
        color: #fff;
        border: none;
        padding: 12px 20px;
        border-radius: 5px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-align: center;
        display: inline-block; /* For proper padding and alignment */
        width: fit-content;
        margin-top: 10px;
    }

    .page-8k8__promo-button:hover {
        background-color: #e67e22;
    }

    /* Payment & Providers Grid */
    .page-8k8__payment-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for smaller logos */
      gap: 20px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-8k8__item-card {
      background-color: #fefefe;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 150px;
      box-sizing: border-box;
    }

    .page-8k8__item-card:hover {
      transform: translateY(-3px);
    }

    .page-8k8__item-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Constrain height for logos */
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 150px; /* Ensure logos don't get too big */
      box-sizing: border-box;
    }

    .page-8k8__item-name {
      font-size: 1.1em;
      font-weight: bold;
      color: #333;
    }
    
    .page-8k8__section--dark .page-8k8__item-card {
        background-color: #3a3a3a;
    }
    
    .page-8k8__section--dark .page-8k8__item-name {
        color: #eee;
    }

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

    .page-8k8__feature-item {
      background-color: #fefefe;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-sizing: border-box;
    }
    
    .page-8k8__section--dark .page-8k8__feature-item {
        background-color: #3a3a3a;
    }

    .page-8k8__feature-icon {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      object-fit: contain;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8__feature-content {
      flex-grow: 1;
    }

    .page-8k8__feature-title {
      font-size: 1.4em;
      color: #c0392b;
      margin-bottom: 8px;
      font-weight: bold;
    }

    .page-8k8__feature-description {
      font-size: 1em;
      color: #666;
    }
    
    .page-8k8__section--dark .page-8k8__feature-title {
        color: #f39c12;
    }
    
    .page-8k8__section--dark .page-8k8__feature-description {
        color: #ccc;
    }

    /* FAQ Section */
    .page-8k8__faq-container {
      margin-top: 40px;
    }

    .page-8k8__faq-item {
      background-color: #fefefe;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }
    
    .page-8k8__section--dark .page-8k8__faq-item {
        background-color: #3a3a3a;
    }

    .page-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #f5f5f5;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
    }
    
    .page-8k8__section--dark .page-8k8__faq-question {
        background-color: #4a4a4a;
        border-bottom-color: #555;
    }

    .page-8k8__faq-question:hover {
      background-color: #eee;
    }
    
    .page-8k8__section--dark .page-8k8__faq-question:hover {
        background-color: #555;
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }
    
    .page-8k8__section--dark .page-8k8__faq-question h3 {
        color: #f0f0f0;
    }

    .page-8k8__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #c0392b;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }
    
    .page-8k8__faq-item.active .page-8k8__faq-toggle {
      transform: rotate(45deg); /* Rotates the plus to a cross */
      color: #f39c12;
    }

    .page-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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;
      font-size: 1em;
    }
    
    .page-8k8__section--dark .page-8k8__faq-answer {
        color: #ccc;
    }

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

    /* Call to Action Section */
    .page-8k8__cta-section {
      background-color: #c0392b;
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-8k8__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #f39c12;
    }

    .page-8k8__cta-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    .page-8k8__cta-button {
      background-color: #f39c12;
      color: #fff;
      border: none;
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8__cta-button:hover {
      background-color: #e67e22;
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-8k8__hero-title {
        font-size: 3em;
      }
      .page-8k8__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8 {
        padding-top: 10px !important; /* Ensure consistent top padding */
      }
      .page-8k8__hero-section {
        min-height: 450px;
        padding: 40px 15px;
      }
      .page-8k8__hero-title {
        font-size: 2.2em;
      }
      .page-8k8__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8__floating-buttons {
        right: 10px;
        gap: 10px;
      }
      .page-8k8__floating-button {
        padding: 12px 20px;
        font-size: 1em;
        min-width: 100px;
      }
      .page-8k8__section {
        padding: 30px 15px;
      }
      .page-8k8__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }
      .page-8k8__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-8k8__game-grid,
      .page-8k8__promo-grid,
      .page-8k8__payment-providers-grid,
      .page-8k8__features-list {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust if parent section has padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* List item specific mobile styles */
      .page-8k8__game-card,
      .page-8k8__promo-card,
      .page-8k8__item-card,
      .page-8k8__feature-item,
      .page-8k8__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      .page-8k8__game-info, .page-8k8__promo-info, .page-8k8__feature-content {
          padding: 0 !important; /* Reset inner padding if parent padding is adjusted */
      }
      
      .page-8k8__game-title, .page-8k8__promo-title, .page-8k8__feature-title {
          font-size: 1.3em;
      }
      
      .page-8k8__game-description, .page-8k8__promo-description, .page-8k8__feature-description {
          font-size: 0.9em;
      }

      .page-8k8__faq-question {
        padding: 15px 20px;
      }
      .page-8k8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8__faq-answer {
        padding: 0 20px;
      }
      .page-8k8__faq-item.active .page-8k8__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8__cta-section {
        padding: 40px 15px;
      }
      .page-8k8__cta-title {
        font-size: 2em;
      }
      .page-8k8__cta-description {
        font-size: 1.1em;
      }
      .page-8k8__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }
      
      /* Image responsiveness */
      .page-8k8__hero-background,
      .page-8k8__game-image,
      .page-8k8__promo-image,
      .page-8k8__item-logo,
      .page-8k8__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8__hero-title {
        font-size: 1.8em;
      }
      .page-8k8__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8__section-title {
        font-size: 1.6em;
      }
      .page-8k8__floating-buttons {
        right: 5px;
        top: unset;
        bottom: 20px;
        transform: none;
        flex-direction: row;
        width: calc(100% - 20px);
        justify-content: center;
        background: rgba(0,0,0,0.7);
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
      }
      .page-8k8__floating-button {
          flex: 1;
          padding: 10px 15px;
          font-size: 0.9em;
          min-width: unset;
      }
      .page-8k8__section {
        padding: 25px 10px;
      }
      .page-8k8__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8__faq-toggle {
        font-size: 1.5em;
      }
    }
  