
    :root {
      --page-8k8-bet-primary-color: #e44d26; /* A vibrant color for highlights */
      --page-8k8-bet-secondary-color: #333; /* Dark text */
      --page-8k8-bet-accent-color: #f7b731; /* Accent for buttons/icons */
      --page-8k8-bet-background-light: #f9f9f9;
      --page-8k8-bet-background-dark: #222;
      --page-8k8-bet-text-light: #fff;
      --page-8k8-bet-text-dark: #333;
      --page-8k8-bet-border-color: #ddd;
    }

    .page-8k8-bet {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-bet-text-dark);
      background-color: var(--page-8k8-bet-background-light);
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-8k8-bet__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

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

    .page-8k8-bet__hero-section {
      background-color: var(--page-8k8-bet-background-dark);
      color: var(--page-8k8-bet-text-light);
      text-align: center;
      padding: 60px 20px 40px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      padding-top: 10px; /* Small top padding, assuming body handles header offset */
    }

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

    .page-8k8-bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-bet__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-8k8-bet-accent-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-8k8-bet__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-8k8-bet-text-light);
    }

    .page-8k8-bet__button {
      display: inline-block;
      background-color: var(--page-8k8-bet-primary-color);
      color: var(--page-8k8-bet-text-light);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-8k8-bet__button:hover {
      background-color: #c74220;
    }

    .page-8k8-bet__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    }

    .page-8k8-bet__floating-button {
      flex: 1;
      margin: 0 5px;
      background-color: var(--page-8k8-bet-primary-color);
      color: var(--page-8k8-bet-text-light);
      padding: 12px 10px;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
      border: none;
      cursor: pointer;
      font-size: 1em;
      transition: background-color 0.3s ease;
      text-decoration: none; /* For the <a> tag button */
    }

    .page-8k8-bet__floating-button--register {
      background-color: var(--page-8k8-bet-accent-color);
    }

    .page-8k8-bet__floating-button:hover {
      opacity: 0.9;
    }

    .page-8k8-bet__heading {
      font-size: 2.2em;
      color: var(--page-8k8-bet-primary-color);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-8k8-bet__subheading {
      font-size: 1.6em;
      color: var(--page-8k8-bet-secondary-color);
      margin-top: 20px;
      margin-bottom: 15px;
    }
    .page-8k8-bet__section--dark .page-8k8-bet__subheading {
      color: var(--page-8k8-bet-text-light);
    }


    .page-8k8-bet__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-bet__card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      color: var(--page-8k8-bet-text-dark);
      text-align: center;
    }

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

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

    .page-8k8-bet__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-8k8-bet__card-description {
      font-size: 0.95em;
      color: var(--page-8k8-bet-secondary-color);
    }

    .page-8k8-bet__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .page-8k8-bet__list-item {
      background-color: var(--page-8k8-bet-background-light);
      border: 1px solid var(--page-8k8-bet-border-color);
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 0.95em;
      color: var(--page-8k8-bet-secondary-color);
      box-sizing: border-box; /* Ensure padding is included in width */
      word-wrap: break-word; /* For long texts */
      overflow-wrap: break-word;
      word-break: break-word;
      text-align: center;
    }
    .page-8k8-bet__section--dark .page-8k8-bet__list-item {
      background-color: #444;
      color: var(--page-8k8-bet-text-light);
      border-color: #666;
    }

    .page-8k8-bet__faq-container {
      max-width: 800px;
      margin: 40px auto;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-bet__faq-item {
      border-bottom: 1px solid var(--page-8k8-bet-border-color);
      background-color: #fff;
    }
    .page-8k8-bet__faq-item:last-child {
      border-bottom: none;
    }
    .page-8k8-bet__section--dark .page-8k8-bet__faq-item {
      background-color: #333;
      border-color: #555;
    }


    .page-8k8-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-8k8-bet-secondary-color);
      transition: background-color 0.3s ease;
    }
    .page-8k8-bet__section--dark .page-8k8-bet__faq-question {
      color: var(--page-8k8-bet-text-light);
    }

    .page-8k8-bet__faq-question:hover {
      background-color: #f0f0f0;
    }
    .page-8k8-bet__section--dark .page-8k8-bet__faq-question:hover {
      background-color: #444;
    }

    .page-8k8-bet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents text selection from interfering with click */
      color: inherit; /* Ensure h3 inherits color from parent */
    }

    .page-8k8-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevents icon from interfering with click */
      transition: transform 0.3s ease;
      color: var(--page-8k8-bet-primary-color);
    }

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

    .page-8k8-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-8k8-bet-secondary-color);
    }
    .page-8k8-bet__section--dark .page-8k8-bet__faq-answer {
      color: #ccc;
    }

    .page-8k8-bet__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    .page-8k8-bet__centered-image-container {
      text-align: center;
      margin-top: 30px;
    }

    .page-8k8-bet__centered-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      display: inline-block; /* To center with text-align */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-bet__section {
        padding: 30px 15px;
      }

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

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

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

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

      .page-8k8-bet__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-bet__list {
        flex-direction: column;
        gap: 10px;
      }

      .page-8k8-bet__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 15px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left;
      }
      .page-8k8-bet__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

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

      .page-8k8-bet__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-bet__faq-item.active .page-8k8-bet__faq-answer {
        padding: 15px 15px !important;
      }

      .page-8k8-bet__floating-button {
        padding: 10px 5px;
        font-size: 0.9em;
      }

      /* Image responsive for mobile */
      .page-8k8-bet__centered-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-bet__centered-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-bet__floating-button {
        font-size: 0.8em;
        padding: 10px 3px;
      }
    }
  