
    :root {
      --primary-color: #FFD700; /* Gold/Yellow */
      --secondary-color: #FF4500; /* OrangeRed */
      --dark-bg: #1A1A1A; /* Dark Grey */
      --light-text: #F0F0F0; /* Off-white */
      --medium-grey: #333333; /* Medium Grey */
      --border-color: #444444;
      --button-hover-color: #E6C200;
    }

    .page-8k8-4 {
      font-family: 'Arial', sans-serif;
      color: var(--light-text);
      background-color: var(--dark-bg);
      line-height: 1.6;
      padding-bottom: 40px;
    }

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

    .page-8k8-4__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:online casino,registration,welcome bonus]') no-repeat center center;
      background-size: cover;
      padding: 10px 0 80px; /* Adjusted padding-top as body handles header offset */
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 500px;
      position: relative;
    }

    .page-8k8-4__hero-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

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

    .page-8k8-4__hero-subtitle {
      font-size: 1.5em;
      color: var(--light-text);
      margin-bottom: 30px;
    }

    .page-8k8-4__cta-button {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--light-text);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-4__cta-button:hover {
      background-color: #CC3700; /* Darker OrangeRed */
    }

    .page-8k8-4__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-4__section--grey {
      background-color: var(--medium-grey);
    }

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

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

    .page-8k8-4__card {
      background-color: var(--medium-grey);
      border-radius: 8px;
      padding: 30px;
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .page-8k8-4__card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-4__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 5px;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-4__card-title {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-4__card-text {
      font-size: 1em;
      color: var(--light-text);
    }

    .page-8k8-4__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .page-8k8-4__step-item {
      background-color: var(--medium-grey);
      border-radius: 8px;
      padding: 30px;
      text-align: center;
      flex: 1 1 300px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-8k8-4__step-number {
      font-size: 3em;
      color: var(--secondary-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

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

    .page-8k8-4__step-description {
      font-size: 1em;
      color: var(--light-text);
    }

    .page-8k8-4__faq-section {
      background-color: var(--dark-bg);
      padding: 60px 0;
    }

    .page-8k8-4__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      padding: 0;
      list-style: none;
    }

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

    .page-8k8-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #282828; /* Slightly lighter than dark-bg */
      transition: background-color 0.3s ease;
    }

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

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

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

    .page-8k8-4__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: var(--light-text);
    }

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

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

    .page-8k8-4__promo-section {
      padding: 60px 0;
      background-color: var(--medium-grey);
      text-align: center;
    }

    .page-8k8-4__promo-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-4__promo-image {
      width: 100%;
      height: auto;
      max-width: 800px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8-4__promo-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: var(--light-text);
    }

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

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

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

      .page-8k8-4__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-4__steps-list {
        flex-direction: column;
        align-items: center;
      }

      .page-8k8-4__step-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-4__faq-list {
        padding: 0 10px;
      }

      .page-8k8-4__faq-question h3 {
        font-size: 1.1em;
      }

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

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

      /* Image responsiveness */
      .page-8k8-4__card-image,
      .page-8k8-4__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-4__container {
        padding: 0 10px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-4__hero-title {
        font-size: 2em;
      }

      .page-8k8-4__hero-subtitle {
        font-size: 1em;
      }

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

      .page-8k8-4__section-title {
        font-size: 1.8em;
      }
    }
  