
    :root {
      --page-sportsthabet88__primary-color: #007bff;
      --page-sportsthabet88__secondary-color: #6c757d;
      --page-sportsthabet88__accent-color: #ffc107;
      --page-sportsthabet88__text-color: #343a40;
      --page-sportsthabet88__background-color: #f8f9fa;
      --page-sportsthabet88__card-background: #ffffff;
      --page-sportsthabet88__border-color: #e9ecef;
    }

    .page-sportsthabet88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-sportsthabet88__text-color);
      background-color: var(--page-sportsthabet88__background-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    .page-sportsthabet88__container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-sportsthabet88__hero-section {
      position: relative;
      width: 100%;
      background-color: #000;
      color: #fff;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Spacing for fixed header */
      box-sizing: border-box;
    }

    .page-sportsthabet88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover;
      filter: brightness(0.7);
    }

    .page-sportsthabet88__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      width: 90%;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-sportsthabet88__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #fff;
    }

    .page-sportsthabet88__hero-description {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: #e9ecef;
    }

    .page-sportsthabet88__cta-button {
      display: inline-block;
      background-color: var(--page-sportsthabet88__accent-color);
      color: var(--page-sportsthabet88__text-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
    }

    .page-sportsthabet88__cta-button:hover {
      background-color: #e0a800;
    }

    .page-sportsthabet88__section {
      padding: 40px 0;
      width: 100%;
      box-sizing: border-box;
    }

    .page-sportsthabet88__section--light {
      background-color: var(--page-sportsthabet88__background-color);
    }

    .page-sportsthabet88__section--dark {
      background-color: #343a40;
      color: #fff;
    }

    .page-sportsthabet88__section-title {
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      color: var(--page-sportsthabet88__primary-color);
    }

    .page-sportsthabet88__section--dark .page-sportsthabet88__section-title {
      color: var(--page-sportsthabet88__accent-color);
    }

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

    .page-sportsthabet88__card {
      background-color: var(--page-sportsthabet88__card-background);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-sportsthabet88__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .page-sportsthabet88__card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-sportsthabet88__card-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }

    .page-sportsthabet88__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
      box-sizing: border-box;
    }

    .page-sportsthabet88__card-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-sportsthabet88__primary-color);
    }

    .page-sportsthabet88__card-text {
      font-size: 0.95em;
      color: var(--page-sportsthabet88__secondary-color);
      margin-bottom: 15px;
    }

    .page-sportsthabet88__card-link {
      display: inline-block;
      color: var(--page-sportsthabet88__primary-color);
      text-decoration: none;
      font-weight: bold;
      margin-top: auto; /* Pushes the link to the bottom */
    }

    .page-sportsthabet88__card-link:hover {
      text-decoration: underline;
    }

    .page-sportsthabet88__text-block {
      max-width: 800px;
      margin: 0 auto 30px auto;
      text-align: left;
    }

    .page-sportsthabet88__text-block h2 {
      color: var(--page-sportsthabet88__primary-color);
      font-size: 1.8em;
      margin-bottom: 15px;
      text-align: center;
    }

    .page-sportsthabet88__text-block h3 {
      color: var(--page-sportsthabet88__primary-color);
      font-size: 1.4em;
      margin-top: 25px;
      margin-bottom: 10px;
    }

    .page-sportsthabet88__text-block p {
      margin-bottom: 15px;
      font-size: 1em;
    }

    .page-sportsthabet88__text-block ul {
      list-style-type: disc;
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .page-sportsthabet88__text-block ol {
      list-style-type: decimal;
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .page-sportsthabet88__text-block li {
      margin-bottom: 8px;
    }

    .page-sportsthabet88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #dc3545; /* Red for urgency */
      color: #fff;
      padding: 15px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      font-size: 1.1em;
      animation: page-sportsthabet88__pulse 2s infinite;
      text-align: center;
    }

    .page-sportsthabet88__floating-button:hover {
      background-color: #c82333;
      transform: scale(1.05);
    }

    @keyframes page-sportsthabet88__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .page-sportsthabet88__faq-section {
      padding: 40px 0;
      background-color: var(--page-sportsthabet88__card-background);
      border-top: 1px solid var(--page-sportsthabet88__border-color);
    }

    .page-sportsthabet88__faq-item {
      border: 1px solid var(--page-sportsthabet88__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-sportsthabet88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f1f1f1;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-sportsthabet88__faq-question:hover {
      background-color: #e2e6ea;
    }

    .page-sportsthabet88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-sportsthabet88__text-color);
      pointer-events: none; /* Prevents h3 from blocking click event */
    }

    .page-sportsthabet88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-sportsthabet88__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from blocking click event */
    }

    .page-sportsthabet88__faq-item.active .page-sportsthabet88__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-sportsthabet88__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;
      background-color: var(--page-sportsthabet88__card-background);
    }

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

    .page-sportsthabet88__faq-answer p {
      margin-bottom: 0;
      font-size: 0.95em;
      color: var(--page-sportsthabet88__text-color);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-sportsthabet88__hero-title {
        font-size: 1.8em;
      }

      .page-sportsthabet88__hero-description {
        font-size: 1em;
      }

      .page-sportsthabet88__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-sportsthabet88__section-title {
        font-size: 1.8em;
      }

      .page-sportsthabet88__text-block h2 {
        font-size: 1.6em;
      }

      .page-sportsthabet88__text-block h3 {
        font-size: 1.2em;
      }

      .page-sportsthabet88__grid {
        grid-template-columns: 1fr;
      }

      .page-sportsthabet88__card-content {
        padding: 15px;
      }

      .page-sportsthabet88__card-title {
        font-size: 1.2em;
      }

      .page-sportsthabet88__card-text {
        font-size: 0.9em;
      }

      .page-sportsthabet88__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        font-size: 1em;
      }

      .page-sportsthabet88__hero-section {
        padding-top: 10px; /* Ensure spacing on mobile */
      }

      .page-sportsthabet88__card-image-wrapper,
      .page-sportsthabet88__card-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-sportsthabet88__faq-question {
        padding: 12px 15px;
      }
      .page-sportsthabet88__faq-question h3 {
        font-size: 1em;
      }
      .page-sportsthabet88__faq-answer p {
        font-size: 0.9em;
      }
      .page-sportsthabet88__faq-item.active .page-sportsthabet88__faq-answer {
        padding: 15px 15px !important;
      }
    }
  