
    /* General styling for the 8k8 bet page */
    .page-8k8-bet {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background for casino theme */
      line-height: 1.6;
      padding-bottom: 50px; /* Space above footer */
    }

    /* Hero Section */
    .page-8k8-bet__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
      color: #ffffff;
      text-align: center;
      padding: 10px 20px 60px; /* Small top padding, assuming body has padding-top from shared CSS */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px; /* Minimum height for hero */
    }

    .page-8k8-bet__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.7); /* Darken image slightly, not changing color */
      max-width: 100%; /* Responsive image */
    }

    .page-8k8-bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .page-8k8-bet__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-bet__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-8k8-bet__promo-button {
      display: inline-block;
      background-color: #e63946; /* Red accent */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-bet__promo-button:hover {
      background-color: #c92a37;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8k8-bet__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-bet__section-title {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-bet__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #e63946;
      margin: 10px auto 0;
    }

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

    .page-8k8-bet__feature-card {
      background-color: #2c2c4a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

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

    .page-8k8-bet__feature-icon {
      width: 200px; /* Minimum size for image placeholder */
      height: auto;
      margin-bottom: 20px;
      display: block;
      margin-left: 0; /* Align to left */
      max-width: 100%; /* Responsive image */
      object-fit: cover;
      border-radius: 8px;
    }

    .page-8k8-bet__feature-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 15px;
    }

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

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

    .page-8k8-bet__game-card {
      background-color: #2c2c4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      box-sizing: border-box; /* Ensure padding is included in width */
    }

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

    .page-8k8-bet__game-image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-bet__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
    }

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

    .page-8k8-bet__game-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8-bet__game-provider {
      font-size: 0.9em;
      color: #999999;
    }

    /* Payment Methods Section */
    .page-8k8-bet__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-bet__payment-item {
      background-color: #2c2c4a;
      padding: 15px 25px;
      border-radius: 8px;
      font-size: 1.1em;
      color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    /* FAQ Section */
    .page-8k8-bet__faq-section {
      padding: 50px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-bet__faq-title {
      font-size: 2.2em;
      color: #ffcc00;
      margin-bottom: 40px;
      text-align: center;
      position: relative;
    }

    .page-8k8-bet__faq-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #e63946;
      margin: 10px auto 0;
    }

    .page-8k8-bet__faq-item {
      background-color: #2c2c4a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a5a;
      color: #ffffff;
      font-size: 1.15em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-8k8-bet__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-8k8-bet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from intercepting click */
      color: #ffcc00; /* Gold for question title */
    }

    .page-8k8-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
      color: #e63946;
    }

    .page-8k8-bet__faq-item.active .page-8k8-bet__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual */
    }

    .page-8k8-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding for closed state */
      opacity: 0;
      color: #cccccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-8k8-bet__faq-item.active .page-8k8-bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large for content */
      padding: 20px 25px !important; /* Adjust padding for open state */
      opacity: 1;
    }

    /* Call to Action Section */
    .page-8k8-bet__cta-section {
      background-color: #3a3a5a;
      padding: 60px 20px;
      text-align: center;
      margin-top: 50px;
    }

    .page-8k8-bet__cta-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 20px;
    }

    .page-8k8-bet__cta-description {
      font-size: 1.2em;
      color: #f0f0f0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Buttons for Register/Login */
    .page-8k8-bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-8k8-bet__floating-button {
      background-color: #e63946;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      text-align: center;
      min-width: 120px; /* Ensure buttons have consistent width */
    }

    .page-8k8-bet__floating-button:hover {
      background-color: #c92a37;
      transform: translateY(-2px);
    }


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

      .page-8k8-bet__hero-subtitle {
        font-size: 1em;
      }

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

      .page-8k8-bet__section-title,
      .page-8k8-bet__faq-title,
      .page-8k8-bet__cta-title {
        font-size: 1.8em;
      }

      .page-8k8-bet__features-grid,
      .page-8k8-bet__games-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-bet__feature-card,
      .page-8k8-bet__game-card {
        padding: 20px;
      }

      .page-8k8-bet__game-image-container {
        height: 180px;
      }

      .page-8k8-bet__payment-item {
        font-size: 0.9em;
        padding: 10px 15px;
      }

      .page-8k8-bet__faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }

      .page-8k8-bet__faq-answer {
        padding: 0 20px; /* Mobile closed padding */
      }

      .page-8k8-bet__faq-item.active .page-8k8-bet__faq-answer {
        padding: 15px 20px !important; /* Mobile open padding */
      }

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

      .page-8k8-bet__cta-description {
        font-size: 1em;
      }

      .page-8k8-bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Horizontal on smaller mobile */
        width: calc(100% - 30px);
        justify-content: center;
      }

      .page-8k8-bet__floating-button {
        flex-grow: 1;
        min-width: unset;
      }

      /* List item responsive requirements */
      .page-8k8-bet__features-grid > * { /* Targets direct children of the grid */
        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-bet__games-grid > * { /* Targets direct children of the grid */
        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-bet__payment-methods > * { /* Targets direct children of the flex container */
        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;
      }
    }
  