
    .page-8kbet-code {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
    }

    .page-8kbet-code__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px 20px 40px; /* 10px top for offset, more padding bottom */
      background: linear-gradient(135deg, #2a0a4a, #0a0a2a); /* Dark gradient */
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .page-8kbet-code__hero-section {
        flex-direction: row;
        text-align: left;
        padding: 60px 40px;
        justify-content: center;
      }
    }

    .page-8kbet-code__hero-content {
      max-width: 600px;
      margin-bottom: 30px;
      z-index: 1;
    }

    @media (min-width: 768px) {
      .page-8kbet-code__hero-content {
        margin-right: 40px;
        margin-bottom: 0;
      }
    }

    .page-8kbet-code__main-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #ffdd00; /* Vibrant yellow for titles */
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .page-8kbet-code__main-title {
        font-size: 3.5em;
      }
    }

    .page-8kbet-code__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8kbet-code__hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    @media (min-width: 480px) {
      .page-8kbet-code__hero-buttons {
        flex-direction: row;
        justify-content: center;
      }
    }

    .page-8kbet-code__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1em;
      box-sizing: border-box; /* Ensure padding is included in width */
      width: 100%; /* Full width on mobile */
    }

    @media (min-width: 480px) {
      .page-8kbet-code__button {
        width: auto; /* Auto width on larger screens */
      }
    }

    .page-8kbet-code__button--primary {
      background-color: #ffdd00; /* Yellow */
      color: #1a1a1a;
      border: 2px solid #ffdd00;
    }

    .page-8kbet-code__button--primary:hover {
      background-color: #ffe74c;
      transform: translateY(-2px);
    }

    .page-8kbet-code__button--secondary {
      background-color: transparent;
      color: #ffdd00;
      border: 2px solid #ffdd00;
    }

    .page-8kbet-code__button--secondary:hover {
      background-color: rgba(255, 221, 0, 0.1);
      transform: translateY(-2px);
    }

    .page-8kbet-code__hero-image-wrapper {
      width: 100%;
      max-width: 500px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    @media (min-width: 768px) {
      .page-8kbet-code__hero-image-wrapper {
        max-width: 700px;
      }
    }

    .page-8kbet-code__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Section common styles */
    .page-8kbet-code__promo-highlights,
    .page-8kbet-code__how-to-use,
    .page-8kbet-code__faq-section,
    .page-8kbet-code__cta-section {
      padding: 40px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .page-8kbet-code__promo-highlights,
      .page-8kbet-code__how-to-use,
      .page-8kbet-code__faq-section,
      .page-8kbet-code__cta-section {
        padding: 60px 40px;
      }
    }

    .page-8kbet-code__section-title {
      font-size: 2em;
      color: #ffdd00;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .page-8kbet-code__section-title {
        font-size: 2.8em;
      }
    }

    .page-8kbet-code__section-description,
    .page-8kbet-code__cta-description {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Promo Grid */
    .page-8kbet-code__promo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    @media (min-width: 768px) {
      .page-8kbet-code__promo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .page-8kbet-code__promo-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .page-8kbet-code__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
      width: 100%;
    }

    .page-8kbet-code__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8kbet-code__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-8kbet-code__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-8kbet-code__promo-card-title {
      font-size: 1.3em;
      color: #ffdd00;
      margin-bottom: 10px;
    }

    .page-8kbet-code__promo-card-text {
      font-size: 0.95em;
      color: #cccccc;
    }

    /* How To Use Steps */
    .page-8kbet-code__steps-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    @media (min-width: 768px) {
      .page-8kbet-code__steps-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .page-8kbet-code__steps-container {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .page-8kbet-code__step-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
      width: 100%;
    }

    .page-8kbet-code__step-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-8kbet-code__step-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-8kbet-code__step-title {
      font-size: 1.4em;
      color: #ffdd00;
      margin-bottom: 10px;
    }

    .page-8kbet-code__step-text {
      font-size: 0.95em;
      color: #cccccc;
    }

    /* FAQ Section */
    .page-8kbet-code__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8kbet-code__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
      width: 100%;
    }

    .page-8kbet-code__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333333;
      color: #ffdd00;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #444444;
      transition: background-color 0.3s ease;
    }

    .page-8kbet-code__faq-question:hover {
      background-color: #444444;
    }

    .page-8kbet-code__faq-question-title {
      font-size: 1.1em;
      margin: 0;
      flex-grow: 1;
      color: #ffdd00; /* Ensure title color is consistent */
      pointer-events: none; /* Prevent text selection from interfering with click */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8kbet-code__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle icon from interfering with click */
    }

    .page-8kbet-code__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      background-color: #1a1a1a;
      color: #e0e0e0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    }

    .page-8kbet-code__faq-answer p {
      margin: 0;
      padding-bottom: 15px; /* Adjust as needed */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8kbet-code__faq-item.active .page-8kbet-code__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-8kbet-code__faq-item.active .page-8kbet-code__faq-toggle {
      content: "−";
    }

    /* CTA Section */
    .page-8kbet-code__cta-section {
      background-color: #2a0a4a; /* Darker accent for CTA */
      padding: 60px 20px;
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-8kbet-code__button--cta {
      background-color: #ffdd00;
      color: #1a1a1a;
      padding: 15px 35px;
      font-size: 1.2em;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-8kbet-code__button--cta:hover {
      background-color: #ffe74c;
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-8kbet-code__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: calc(100% - 40px); /* Adjust width for padding */
      max-width: 400px;
    }

    .page-8kbet-code__floating-button {
      flex: 1;
      padding: 12px 0;
      text-align: center;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8kbet-code__floating-button--register {
      background-color: #ffdd00;
      color: #1a1a1a;
    }

    .page-8kbet-code__floating-button--register:hover {
      background-color: #ffe74c;
      transform: translateY(-2px);
    }

    .page-8kbet-code__floating-button--login {
      background-color: #4CAF50; /* Green */
      color: #ffffff;
    }

    .page-8kbet-code__floating-button--login:hover {
      background-color: #66BB6A;
      transform: translateY(-2px);
    }

    /* General responsiveness for images and lists */
    img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    /* Ensure all list items (promo-card, step-item, faq-item) are responsive */
    @media (max-width: 768px) {
      .page-8kbet-code__promo-card,
      .page-8kbet-code__step-item,
      .page-8kbet-code__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important; /* Adjust padding for mobile */
        padding-right: 15px !important;
      }
      .page-8kbet-code__promo-card-text,
      .page-8kbet-code__step-text,
      .page-8kbet-code__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }
  