
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #8B0000; /* Dark Red */
      --text-color: #FFFFFF;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --accent-color: #00BFFF; /* Deep Sky Blue */
      --border-color: rgba(255, 255, 255, 0.1);
      --button-hover-bg: #E6C200;
      --button-hover-text: #1a1a1a;
    }

    /* Base styles for the page-8k8-4 scope */
    .page-8k8-4 {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 10px; /* Minimal padding-top for content, relying on body padding for header offset */
    }

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

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

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

    .page-8k8-4__heading {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

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

    .page-8k8-4__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.9);
    }

    .page-8k8-4__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-4__button:hover {
      background-color: var(--button-hover-bg);
      color: var(--button-hover-text);
    }

    /* Hero Section */
    .page-8k8-4__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,register,gaming,lights]') no-repeat center center/cover;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-4__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 2px;
      line-height: 1.2;
    }

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

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

    .page-8k8-4__feature-card {
      background-color: var(--background-dark);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--border-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

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

    .page-8k8-4__feature-icon {
      width: 100px; /* Container size, actual image will scale within */
      height: 100px;
      margin: 0 auto 20px auto;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden; /* Ensure image doesn't overflow */
      border-radius: 8px;
    }
    .page-8k8-4__feature-icon img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below image */
        border-radius: 8px;
    }

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

    .page-8k8-4__feature-description {
      font-size: 1em;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Registration Steps */
    .page-8k8-4__steps-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-4__step-item {
      background-color: var(--background-dark);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: left;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Crucial for responsive width */
    }

    .page-8k8-4__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--accent-color);
      flex-shrink: 0;
      line-height: 1;
    }

    .page-8k8-4__step-content {
      flex-grow: 1;
    }

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

    .page-8k8-4__step-description {
      font-size: 1.05em;
      color: rgba(255, 255, 255, 0.85);
    }

    /* Promotion Section */
    .page-8k8-4__promo-card {
      background: linear-gradient(45deg, var(--secondary-color), #A52A2A);
      padding: 40px;
      border-radius: 15px;
      margin-top: 40px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      border: 2px solid var(--primary-color);
    }

    .page-8k8-4__promo-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .page-8k8-4__promo-text {
      font-size: 1.2em;
      color: var(--text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-4__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-8k8-4__faq-item {
      background-color: var(--background-light);
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsive width */
    }

    .page-8k8-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--background-light);
      transition: background-color 0.3s ease;
      color: var(--text-color);
    }

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

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

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

    .page-8k8-4__faq-item.active .page-8k8-4__faq-toggle {
      transform: rotate(45deg); /* Rotates the + to an X or makes it look like a minus */
    }

    .page-8k8-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #333;
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.05em;
      text-align: left;
    }

    .page-8k8-4__faq-item.active .page-8k8-4__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px 25px !important; /* Final padding */
      opacity: 1;
    }
    
    .page-8k8-4__faq-answer p {
        margin: 0;
    }

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

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

      .page-8k8-4__heading {
        font-size: 2.4em;
      }

      .page-8k8-4__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-4__container {
        padding: 15px;
      }

      .page-8k8-4__section {
        padding: 40px 0;
      }

      .page-8k8-4__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }

      .page-8k8-4__hero-title {
        font-size: 2.5em;
      }

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

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

      .page-8k8-4__subheading {
        font-size: 1.4em;
      }

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

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

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

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

      .page-8k8-4__steps-list {
        gap: 20px;
        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-4__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-4__step-number {
        margin-bottom: 10px;
      }

      .page-8k8-4__step-title {
        font-size: 1.4em;
      }

      .page-8k8-4__promo-card {
        padding: 30px;
      }

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

      .page-8k8-4__promo-text {
        font-size: 1.1em;
      }

      .page-8k8-4__faq-question {
        padding: 15px 20px;
      }

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

      .page-8k8-4__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-4__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }

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

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

    @media (max-width: 480px) {
      .page-8k8-4__hero-title {
        font-size: 2em;
      }
      .page-8k8-4__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-4__heading {
        font-size: 1.8em;
      }
      .page-8k8-4__subheading {
        font-size: 1.2em;
      }
      .page-8k8-4__promo-title {
        font-size: 1.8em;
      }
    }
  