
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow */
      --secondary-color: #333333; /* Dark Grey */
      --accent-color: #cc0000; /* Red */
      --text-color: #ffffff; /* White */
      --dark-bg: #1a1a1a; /* Very Dark Grey */
      --light-bg: #2a2a2a; /* Slightly Lighter Dark Grey */
      --button-hover-color: #e6b800;
      --border-color: #444444;
      --header-offset: 122px; /* Default value, will be overridden by shared.css if present */
    }

    /* Base styles for the page */
    .page-8k8-4 {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--dark-bg);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback 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;
      background-color: var(--light-bg);
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-8k8-4__subtitle {
      font-size: 1.8em;
      color: var(--text-color);
      margin-bottom: 30px;
    }

    .page-8k8-4__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #cccccc;
    }

    /* 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:8k8,register,casino,banner]') no-repeat center center / cover;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      position: relative;
      overflow: hidden;
      border-radius: 0; /* Hero section typically full width */
      margin-bottom: 0;
      padding-top: 10px; /* Small decorative padding, main offset handled by body */
    }

    .page-8k8-4__hero-heading {
      font-size: 3.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      text-align: center;
    }

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

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

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

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

    .page-8k8-4__benefit-item {
      background-color: var(--secondary-color);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

    .page-8k8-4__benefit-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-4__benefit-image { /* Actual image element */
      width: 100%;
      max-width: 250px; /* Ensure images are not too large */
      height: auto;
      margin: 0 auto 20px auto;
      display: block;
      border-radius: 4px;
    }

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

    .page-8k8-4__benefit-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* How to Register Section */
    .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(--secondary-color);
      padding: 30px;
      border-radius: 8px;
      text-align: left;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Crucial for responsiveness */
      width: 100%; /* Ensure it takes full width initially */
    }

    .page-8k8-4__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--primary-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(--text-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-4__step-description {
      font-size: 1em;
      color: #cccccc;
    }
    
    .page-8k8-4__step-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      margin-top: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

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

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

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

    .page-8k8-4__game-info {
      padding: 20px;
    }

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

    .page-8k8-4__game-provider {
      font-size: 0.9em;
      color: #aaaaaa;
    }

    /* Payment Methods Section */
    .page-8k8-4__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-4__payment-item {
      background-color: var(--secondary-color);
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-8k8-4__payment-logo {
      width: 100%;
      max-width: 120px;
      height: auto;
      object-fit: contain;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-4__payment-name {
      font-size: 1em;
      color: var(--text-color);
      font-weight: bold;
    }

    /* FAQ Section */
    .page-8k8-4__faq-list {
      margin-top: 40px;
      text-align: left;
    }

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

    .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(--secondary-color);
      color: var(--primary-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

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

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

    .page-8k8-4__faq-item.active .page-8k8-4__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      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-4__faq-item.active .page-8k8-4__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

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

      .page-8k8-4__title {
        font-size: 2.2em;
      }

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

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

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

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

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

      .page-8k8-4__benefits-grid,
      .page-8k8-4__game-grid,
      .page-8k8-4__payment-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
      }
      
      /* List items specific mobile responsiveness */
      .page-8k8-4__benefit-item,
      .page-8k8-4__step-item,
      .page-8k8-4__game-card,
      .page-8k8-4__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding to prevent overflow */
      }

      .page-8k8-4__step-item {
        flex-direction: column; /* Stack number and content */
        align-items: center;
        text-align: center;
      }
      
      .page-8k8-4__step-number {
        margin-bottom: 15px;
      }

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

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

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

      /* Ensure text wraps */
      .page-8k8-4__text,
      .page-8k8-4__benefit-description,
      .page-8k8-4__step-description,
      .page-8k8-4__game-provider,
      .page-8k8-4__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Images responsiveness */
      .page-8k8-4__benefit-image,
      .page-8k8-4__step-image,
      .page-8k8-4__game-image,
      .page-8k8-4__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-4__game-image {
        height: 180px; /* Adjust height for smaller screens */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-4__title {
        font-size: 1.8em;
      }
      .page-8k8-4__hero-heading {
        font-size: 2em;
      }
      .page-8k8-4__hero-subheading {
        font-size: 1em;
      }
      .page-8k8-4__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }
  