
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow, often used in casino themes */
      --secondary-color: #333333; /* Dark grey for text */
      --accent-color: #007bff; /* Blue for buttons/highlights */
      --background-dark: #1a1a1a; /* Dark background */
      --background-light: #f5f5f5; /* Light background for contrast */
      --text-light: #ffffff;
      --text-dark: #333333;
      --border-color: #444444;
      --button-hover-color: #e6b800;
    }

    .page-8k8-register {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-light);
      background-color: var(--background-dark);
      padding-top: 10px; /* Small top padding for content below potential fixed header */
    }

    /* General Section Styling */
    .page-8k8-register__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      text-align: center;
      box-sizing: border-box;
    }

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

    .page-8k8-register__section-title {
      font-size: 2.8em;
      margin-bottom: 30px;
      color: var(--primary-color);
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-8k8-register__section-subtitle {
      font-size: 1.4em;
      margin-bottom: 40px;
      color: var(--text-light);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-register__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,register,gaming_platform]') no-repeat center center / cover;
      color: var(--text-light);
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
      box-sizing: border-box;
    }

    .page-8k8-register__hero-title {
      font-size: 3.8em;
      margin-bottom: 20px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      line-height: 1.1;
    }

    .page-8k8-register__hero-description {
      font-size: 1.5em;
      max-width: 900px;
      margin-bottom: 40px;
      line-height: 1.5;
      color: var(--text-light);
    }

    .page-8k8-register__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      line-height: 1;
    }

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

    /* How to Register Section */
    .page-8k8-register__steps-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 50px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-8k8-register__step-card {
      background-color: #2a2a2a;
      border-radius: 15px;
      padding: 30px;
      flex: 1 1 calc(33% - 40px);
      max-width: calc(33% - 40px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
      transition: transform 0.3s ease, background-color 0.3s ease;
      text-align: center;
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

    .page-8k8-register__step-card:hover {
      transform: translateY(-10px);
      background-color: #3a3a3a;
    }

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

    .page-8k8-register__step-title {
      font-size: 1.8em;
      color: var(--text-light);
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .page-8k8-register__step-description {
      font-size: 1.1em;
      color: #cccccc;
    }

    /* Benefits Section */
    .page-8k8-register__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-8k8-register__benefit-item {
      background-color: var(--background-light);
      color: var(--text-dark);
      padding: 30px;
      border-radius: 15px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-sizing: border-box;
    }

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

    .page-8k8-register__benefit-icon {
      width: 200px; /* Minimum size 200x200px */
      height: 200px; /* Minimum size 200x200px */
      flex-shrink: 0;
      object-fit: contain;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-8k8-register__benefit-content h3 {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-8k8-register__benefit-content p {
      font-size: 1.1em;
      color: var(--text-dark);
    }

    /* Security Section */
    .page-8k8-register__security-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
      gap: 30px;
      box-sizing: border-box;
    }

    .page-8k8-register__security-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      object-fit: cover;
    }

    .page-8k8-register__security-text {
      font-size: 1.2em;
      color: #cccccc;
      text-align: left;
    }

    .page-8k8-register__security-text strong {
      color: var(--primary-color);
    }

    /* FAQ Section */
    .page-8k8-register__faq-container {
      max-width: 900px;
      margin: 50px auto 0 auto;
      text-align: left;
      box-sizing: border-box;
    }

    .page-8k8-register__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      box-sizing: border-box;
    }

    .page-8k8-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-register__faq-question h3 {
      font-size: 1.3em;
      color: var(--primary-color);
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      line-height: 1.4;
    }

    .page-8k8-register__faq-toggle {
      font-size: 2em;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      line-height: 1; /* Adjust line-height for better centering */
      margin-left: 15px; /* Add some space */
    }

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

    .page-8k8-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      font-size: 1.1em;
      box-sizing: border-box;
    }

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

    /* Final CTA Section */
    .page-8k8-register__final-cta-section {
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 80px 20px;
      box-sizing: border-box;
    }

    .page-8k8-register__final-cta-title {
      color: var(--background-dark);
      font-size: 3em;
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .page-8k8-register__final-cta-description {
      font-size: 1.4em;
      max-width: 800px;
      margin: 0 auto 40px auto;
      color: var(--secondary-color);
    }

    .page-8k8-register__final-cta-button {
      background-color: var(--background-dark);
      color: var(--primary-color);
      padding: 18px 45px;
      border-radius: 50px;
      font-size: 1.4em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      line-height: 1;
    }

    .page-8k8-register__final-cta-button:hover {
      background-color: #000000;
      transform: translateY(-3px);
    }

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

      .page-8k8-register__hero-description {
        font-size: 1.3em;
      }

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

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

      .page-8k8-register__step-card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
      }

      .page-8k8-register__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-8k8-register__hero-section {
        padding: 80px 15px;
      }

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

      .page-8k8-register__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-register__cta-button,
      .page-8k8-register__final-cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      .page-8k8-register__section {
        padding: 40px 15px;
      }

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

      .page-8k8-register__step-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-register__steps-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-register__benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-register__benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-register__benefit-icon {
        margin-bottom: 15px;
      }

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

      .page-8k8-register__faq-question h3 {
        font-size: 1.1em;
        word-break: break-word !important;
      }

      .page-8k8-register__faq-toggle {
        font-size: 1.8em;
      }

      .page-8k8-register__faq-answer {
        padding: 15px 20px !important;
        font-size: 1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-register__faq-container {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-register__final-cta-title {
        font-size: 2.2em;
      }

      .page-8k8-register__final-cta-description {
        font-size: 1.2em;
      }

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

    @media (max-width: 480px) {
      .page-8k8-register__hero-title {
        font-size: 2em;
      }
      .page-8k8-register__hero-description {
        font-size: 1em;
      }
      .page-8k8-register__section-title {
        font-size: 1.8em;
      }
      .page-8k8-register__final-cta-title {
        font-size: 1.8em;
      }
      .page-8k8-register__final-cta-description {
        font-size: 1em;
      }
    }
  