
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow for betting theme */
      --secondary-color: #333333; /* Dark grey */
      --text-color: #ffffff; /* White text */
      --dark-bg: #1a1a1a; /* Dark background */
      --light-bg: #2a2a2a; /* Slightly lighter background */
      --border-color: #555555;
      --button-hover-color: #e6b800;
    }

    /* Base styles for the page content, ensuring it doesn't interfere with global styles */
    .page-8k8-3 {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--dark-bg);
      line-height: 1.6;
      padding-bottom: 40px; /* Add some padding at the bottom */
    }

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

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

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

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

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

    .page-8k8-3__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-3__hero-section {
      background-color: var(--dark-bg);
      padding-top: 10px; /* Decorative top padding, relying on body for header offset */
      padding-bottom: 60px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 450px;
    }

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

    .page-8k8-3__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-3__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--text-color);
    }

    .page-8k8-3__login-button {
      background-color: var(--primary-color);
      color: var(--secondary-color);
      border: none;
      padding: 15px 40px;
      font-size: 1.2em;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-3__login-button:hover {
      background-color: var(--button-hover-color);
    }

    /* Features Section */
    .page-8k8-3__features-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-3__feature-item {
      background-color: var(--dark-bg);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 30px;
      flex: 1 1 calc(33% - 40px); /* 3 items per row */
      max-width: calc(33% - 40px);
      box-sizing: border-box;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-3__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-3__feature-icon {
      width: 80px;
      height: 80px;
      max-width: 100%;
      height: auto;
      margin-bottom: 20px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary-color);
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-3__feature-description {
      font-size: 1em;
      color: var(--text-color);
      text-align: center;
    }

    /* How to Login Section */
    .page-8k8-3__step-list {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
      margin-top: 40px;
      padding: 0;
      list-style: none;
    }

    .page-8k8-3__step-item {
      background-color: var(--dark-bg);
      border: 1px solid var(--border-color);
      border-left: 5px solid var(--primary-color);
      border-radius: 8px;
      padding: 25px;
      max-width: 700px;
      width: 100%;
      box-sizing: border-box;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: box-shadow 0.3s ease;
    }

    .page-8k8-3__step-item:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-3__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--primary-color);
      background-color: var(--light-bg);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .page-8k8-3__step-text {
      font-size: 1.1em;
      color: var(--text-color);
    }

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

    .page-8k8-3__game-card {
      background-color: var(--dark-bg);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-3__card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .page-8k8-3__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-8k8-3__game-card:hover .page-8k8-3__card-image {
      transform: scale(1.05);
    }

    .page-8k8-3__card-content {
      padding: 20px;
    }

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

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

    /* Security Section */
    .page-8k8-3__security-text {
      max-width: 900px;
      margin: 20px auto 40px auto;
    }

    .page-8k8-3__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-8k8-3__payment-item {
      background-color: var(--dark-bg);
      border: 1px solid var(--border-color);
      border-radius: 5px;
      padding: 10px 20px;
      color: var(--text-color);
      font-weight: bold;
      font-size: 0.9em;
      display: flex;
      align-items: center;
      gap: 10px;
      box-sizing: border-box;
    }

    .page-8k8-3__payment-icon {
      width: 60px; /* Adjust size for payment icons */
      height: 40px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-8k8-3__faq-section {
      text-align: left;
    }

    .page-8k8-3__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      list-style: none;
    }

    .page-8k8-3__faq-item {
      background-color: var(--dark-bg);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-8k8-3__faq-item.active {
      background-color: var(--light-bg);
    }

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

    .page-8k8-3__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

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

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

    .page-8k8-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      font-size: 1em;
      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;
      opacity: 0;
    }

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

    /* Call to Action Section */
    .page-8k8-3__cta-section .page-8k8-3__login-button {
      margin-top: 30px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-3__hero-title {
        font-size: 3em;
      }
      .page-8k8-3__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-3__feature-item {
        flex: 1 1 calc(50% - 30px); /* 2 items per row */
        max-width: calc(50% - 30px);
      }
    }

    @media (max-width: 768px) {
      .page-8k8-3__section {
        padding: 40px 0;
      }
      .page-8k8-3__title {
        font-size: 2.2em;
      }
      .page-8k8-3__subtitle {
        font-size: 1.5em;
      }
      .page-8k8-3__hero-section {
        min-height: 350px;
      }
      .page-8k8-3__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-3__hero-description {
        font-size: 1em;
      }
      .page-8k8-3__login-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-8k8-3__features-grid,
      .page-8k8-3__game-grid {
        gap: 20px;
      }
      .page-8k8-3__feature-item {
        flex: 1 1 100% !important; /* 1 item per row */
        max-width: 100% !important;
        padding: 20px;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-3__step-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-3__step-number {
        margin-bottom: 10px;
      }
      .page-8k8-3__step-list {
        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-3__game-card {
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-3__card-image-wrapper {
        height: 180px;
      }
      .page-8k8-3__payment-methods {
        flex-direction: column;
        align-items: center;
      }
      .page-8k8-3__payment-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
      }
      .page-8k8-3__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-8k8-3__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-3__faq-item.active .page-8k8-3__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-3__faq-list {
        padding: 0 10px;
      }
      .page-8k8-3__text, .page-8k8-3__feature-description, .page-8k8-3__step-text, .page-8k8-3__card-description, .page-8k8-3__security-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-3__hero-title {
        font-size: 2em;
      }
      .page-8k8-3__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-3__title {
        font-size: 1.8em;
      }
      .page-8k8-3__subtitle {
        font-size: 1.3em;
      }
    }
  