
    :root {
      --primary-color: #e0b000; /* Gold/Yellow for casino theme */
      --secondary-color: #333;
      --accent-color: #ff4500; /* Orange-red for highlights */
      --text-color: #eee;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --border-color: #555;
      --button-bg: var(--primary-color);
      --button-text: #1a1a1a;
      --button-hover-bg: #ffd700;
    }

    .page-8k8-6 {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
    }

    .page-8k8-6__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-8k8-6__hero-section {
      background: var(--background-light);
      text-align: center;
      padding: 60px 20px;
      border-radius: 8px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-6__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.2;
    }

    .page-8k8-6__hero-content {
      position: relative;
      z-index: 1;
    }

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

    .page-8k8-6__hero-subtitle {
      font-size: 1.5em;
      color: var(--text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-6__cta-button {
      display: inline-block;
      background-color: var(--button-bg);
      color: var(--button-text);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-8k8-6__cta-button:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-2px);
    }

    .page-8k8-6__section {
      background-color: var(--background-light);
      padding: 40px;
      margin-bottom: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-6__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-6__content-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-color);
    }

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

    .page-8k8-6__feature-card {
      background-color: var(--background-dark);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
    }

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

    .page-8k8-6__feature-icon {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-6__feature-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-6__feature-description {
      font-size: 0.95em;
      color: var(--text-color);
    }

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

    .page-8k8-6__promo-card {
      background-color: var(--background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
    }

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

    .page-8k8-6__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-8k8-6__promo-content {
      padding: 20px;
    }

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

    .page-8k8-6__promo-description {
      font-size: 0.95em;
      color: var(--text-color);
      margin-bottom: 15px;
    }

    .page-8k8-6__promo-link {
      color: var(--accent-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
      display: inline-block;
      padding: 8px 15px;
      background-color: var(--primary-color);
      color: var(--button-text);
      border-radius: 20px;
      font-size: 0.9em;
    }

    .page-8k8-6__promo-link:hover {
      color: var(--button-hover-bg);
      background-color: var(--accent-color);
    }

    .page-8k8-6__faq-section {
      background-color: var(--background-light);
      padding: 40px;
      margin-bottom: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-6__faq-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-6__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      overflow: hidden;
      background-color: var(--background-dark);
    }

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

    .page-8k8-6__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-8k8-6__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-6__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--accent-color);
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

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

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

    .page-8k8-6__faq-item.active .page-8k8-6__faq-toggle {
      transform: rotate(45deg); /* Rotate + to become x or change to - */
    }

    .page-8k8-6__faq-item.active .page-8k8-6__faq-question {
      background-color: #3a3a3a;
    }

    /* Floating buttons for Register/Login */
    .page-8k8-6__floating-buttons {
      position: fixed;
      top: 20px; /* Adjusted to be below header if it's fixed */
      right: 20px;
      z-index: 1000;
      display: flex;
      gap: 10px;
      flex-direction: column;
      align-items: flex-end; /* Align buttons to the right */
    }

    .page-8k8-6__floating-button {
      background-color: var(--primary-color);
      color: var(--button-text);
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1em;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-8k8-6__floating-button:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-6__container {
        padding: 15px;
      }

      .page-8k8-6__hero-title {
        font-size: 2.2em;
      }

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

      .page-8k8-6__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-6__section {
        padding: 30px 20px;
      }

      .page-8k8-6__section-title,
      .page-8k8-6__faq-title {
        font-size: 2em;
      }

      .page-8k8-6__features-grid,
      .page-8k8-6__promotions-grid {
        grid-template-columns: 1fr;
      }

      /* List item responsive requirements */
      .page-8k8-6__features-grid > *,
      .page-8k8-6__promotions-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 overlap with container padding */
        padding-right: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

      .page-8k8-6__faq-answer {
        padding: 0 15px;
      }

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

      .page-8k8-6__floating-buttons {
        top: auto;
        bottom: 20px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile bottom-right */
        width: auto;
        justify-content: flex-end;
      }
      .page-8k8-6__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      /* Image responsive */
      .page-8k8-6__hero-background,
      .page-8k8-6__feature-icon,
      .page-8k8-6__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  