
    :root {
      --page-8k8-7-primary-color: #e44d26; /* A vibrant red-orange, good for a casino */
      --page-8k8-7-secondary-color: #333;
      --page-8k8-7-accent-color: #ffcc00; /* Gold/yellow for highlights */
      --page-8k8-7-text-light: #fff;
      --page-8k8-7-text-dark: #1a1a1a;
      --page-8k8-7-bg-dark: #0f0f0f;
      --page-8k8-7-bg-light: #f5f5f5;
      --page-8k8-7-border-color: #555;
    }

    .page-8k8-7 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-7-text-dark);
      background-color: var(--page-8k8-7-bg-light);
      padding-top: 10px; /* Small top padding for visual separation from header */
    }

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

    .page-8k8-7__section--dark {
      background-color: var(--page-8k8-7-bg-dark);
      color: var(--page-8k8-7-text-light);
    }

    .page-8k8-7__section-title {
      text-align: center;
      color: var(--page-8k8-7-primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8-7__section--dark .page-8k8-7__section-title {
      color: var(--page-8k8-7-accent-color);
    }

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

    .page-8k8-7__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,lights,gaming]') no-repeat center center/cover;
      color: var(--page-8k8-7-text-light);
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 500px;
      box-sizing: border-box;
    }

    .page-8k8-7__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-7-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-7__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
    }

    .page-8k8-7__cta-button {
      background-color: var(--page-8k8-7-primary-color);
      color: var(--page-8k8-7-text-light);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      margin: 10px;
      display: inline-block; /* Ensure buttons are side-by-side */
    }

    .page-8k8-7__cta-button:hover {
      background-color: #ff6a40;
      transform: translateY(-3px);
    }

    .page-8k8-7__cta-button--secondary {
      background-color: var(--page-8k8-7-accent-color);
      color: var(--page-8k8-7-text-dark);
    }

    .page-8k8-7__cta-button--secondary:hover {
      background-color: #ffd700;
    }

    .page-8k8-7__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-8k8-7__floating-button {
      background-color: var(--page-8k8-7-primary-color);
      color: var(--page-8k8-7-text-light);
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      min-width: 120px;
    }

    .page-8k8-7__floating-button:hover {
      background-color: #ff6a40;
      transform: scale(1.05);
    }

    .page-8k8-7__floating-button--login {
      background-color: var(--page-8k8-7-accent-color);
      color: var(--page-8k8-7-text-dark);
    }

    .page-8k8-7__floating-button--login:hover {
      background-color: #ffd700;
    }

    .page-8k8-7__about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-7__about-text {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
    }

    .page-8k8-7__about-image {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-7__about-image img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-8k8-7__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-8k8-7__game-card {
      background-color: var(--page-8k8-7-bg-dark);
      color: var(--page-8k8-7-text-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      position: relative;
      width: 100%;
      max-width: 350px;
      box-sizing: border-box;
    }

    .page-8k8-7__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-7__game-card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-7__game-card-image img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-8k8-7__game-card-content {
      padding: 20px;
    }

    .page-8k8-7__game-card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-8k8-7-accent-color);
    }

    .page-8k8-7__game-card-description {
      font-size: 0.95em;
      color: #ccc;
    }

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

    .page-8k8-7__promo-card {
      background-color: var(--page-8k8-7-text-light);
      border: 1px solid var(--page-8k8-7-border-color);
      border-radius: 8px;
      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;
      width: 100%;
      max-width: 400px;
      box-sizing: border-box;
    }

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

    .page-8k8-7__promo-card-image {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

    .page-8k8-7__promo-card-image img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-8k8-7__promo-card-content {
      padding: 20px;
      color: var(--page-8k8-7-text-dark);
    }

    .page-8k8-7__promo-card-title {
      font-size: 1.6em;
      margin-bottom: 10px;
      color: var(--page-8k8-7-primary-color);
    }

    .page-8k8-7__promo-card-description {
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-8k8-7__promo-link {
      color: var(--page-8k8-7-primary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
      display: inline-block; /* Ensure it behaves like a text link */
      cursor: default; /* Indicate it's not a clickable link */
    }

    .page-8k8-7__promo-link:hover {
      color: #ff6a40;
    }

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

    .page-8k8-7__feature-item {
      background-color: var(--page-8k8-7-bg-dark);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      color: var(--page-8k8-7-text-light);
      box-sizing: border-box;
    }

    .page-8k8-7__feature-icon {
      margin-bottom: 15px;
      width: 80px; /* Ensure minimum size */
      height: 80px;
      object-fit: contain;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-7__feature-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--page-8k8-7-accent-color);
    }

    .page-8k8-7__faq-container {
      margin-top: 40px;
    }

    .page-8k8-7__faq-item {
      background-color: var(--page-8k8-7-text-light);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      border: 1px solid #ddd;
    }

    .page-8k8-7__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-8k8-7-primary-color);
      color: var(--page-8k8-7-text-light);
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-7__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-7__faq-question:hover {
      background-color: #ff6a40;
    }

    .page-8k8-7__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8k8-7__faq-item.active .page-8k8-7__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or - if desired) */
    }

    .page-8k8-7__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #f9f9f9;
      color: var(--page-8k8-7-text-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-8k8-7__faq-answer p {
      margin: 0;
    }

    .page-8k8-7__promo-link-text {
      font-weight: bold;
      color: var(--page-8k8-7-primary-color);
    }

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

      .page-8k8-7__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-7__section-title {
        font-size: 2em;
      }

      .page-8k8-7__about-content {
        flex-direction: column;
      }

      .page-8k8-7__about-text,
      .page-8k8-7__about-image {
        max-width: 100%;
        min-width: unset;
      }

      .page-8k8-7__game-grid,
      .page-8k8-7__promo-grid,
      .page-8k8-7__features-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-7__game-card,
      .page-8k8-7__promo-card,
      .page-8k8-7__feature-item {
        max-width: 100%;
      }

      /* List item responsive requirements */
      .page-8k8-7__game-grid > *,
      .page-8k8-7__promo-grid > *,
      .page-8k8-7__features-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding to prevent content overflow */
        padding-right: 15px !important; /* Adjust padding to prevent content overflow */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-7__game-grid,
      .page-8k8-7__promo-grid,
      .page-8k8-7__features-grid {
        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-7__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        bottom: 10px;
        right: 20px;
        left: 20px;
        justify-content: space-around;
      }

      .page-8k8-7__floating-button {
        flex: 1;
        min-width: unset;
        font-size: 1em;
        padding: 10px 15px;
      }

      .page-8k8-7__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-8k8-7__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-7__faq-answer {
        padding: 15px 15px !important;
      }

      .page-8k8-7__section {
        padding: 30px 15px;
      }

      /* Image responsive */
      .page-8k8-7 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-7__about-image,
      .page-8k8-7__game-card-image,
      .page-8k8-7__promo-card-image,
      .page-8k8-7__feature-icon {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  