
    :root {
      --page-138bet__primary-color: #e44d26; /* Orange-red for brand */
      --page-138bet__secondary-color: #333; /* Dark grey for text */
      --page-138bet__accent-color: #f7b731; /* Gold/yellow for highlights */
      --page-138bet__background-dark: #1a1a1a; /* Dark background */
      --page-138bet__background-light: #2c2c2c; /* Slightly lighter dark background */
      --page-138bet__text-light: #f0f0f0; /* Light text */
      --page-138bet__text-dark: #000; /* Dark text for contrast */
      --page-138bet__border-color: #444; /* Border color */
    }

    .page-138bet {
      font-family: 'Arial', sans-serif;
      color: var(--page-138bet__text-light);
      background-color: var(--page-138bet__background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small padding, relying on body for main offset */
      box-sizing: border-box;
    }

    .page-138bet__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-138bet__background-light);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-138bet__section--dark {
      background-color: var(--page-138bet__background-dark);
    }

    .page-138bet__heading-1 {
      font-size: 2.5em;
      color: var(--page-138bet__accent-color);
      text-align: center;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-138bet__heading-2 {
      font-size: 2em;
      color: var(--page-138bet__primary-color);
      text-align: center;
      margin-bottom: 15px;
      border-bottom: 2px solid var(--page-138bet__border-color);
      padding-bottom: 10px;
    }

    .page-138bet__heading-3 {
      font-size: 1.5em;
      color: var(--page-138bet__accent-color);
      margin-bottom: 10px;
    }

    .page-138bet__paragraph {
      margin-bottom: 15px;
      color: var(--page-138bet__text-light);
      text-align: justify;
    }

    .page-138bet__center-content {
      text-align: center;
    }

    .page-138bet__image-container {
      width: 100%;
      max-width: 800px;
      margin: 20px auto;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-138bet__image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-138bet__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-138bet__primary-color);
      color: var(--page-138bet__text-light);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
      box-sizing: border-box;
    }

    .page-138bet__button:hover {
      background-color: #f76b4a;
      transform: translateY(-2px);
    }

    .page-138bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-138bet__floating-button {
      background-color: var(--page-138bet__accent-color);
      color: var(--page-138bet__text-dark);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 100px;
      box-sizing: border-box;
    }

    .page-138bet__floating-button:hover {
      background-color: #ffda6a;
      transform: translateY(-3px);
    }

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

    .page-138bet__card {
      background-color: var(--page-138bet__background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

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

    .page-138bet__card-image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #000;
    }

    .page-138bet__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-138bet__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .page-138bet__card-title {
      font-size: 1.3em;
      color: var(--page-138bet__primary-color);
      margin-bottom: 10px;
    }

    .page-138bet__card-description {
      font-size: 0.95em;
      color: var(--page-138bet__text-light);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-138bet__card-button-wrapper {
      text-align: center;
      margin-top: auto; /* Pushes the button to the bottom */
    }

    .page-138bet__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-138bet__list-item {
      background-color: var(--page-138bet__background-dark);
      border: 1px solid var(--page-138bet__border-color);
      border-radius: 5px;
      padding: 15px 20px;
      flex: 1 1 calc(33% - 30px); /* 3 items per row on desktop */
      min-width: 280px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-138bet__faq-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-138bet__faq-item {
      background-color: var(--page-138bet__background-light);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-138bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-138bet__primary-color);
      color: var(--page-138bet__text-light);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-138bet__faq-question:hover {
      background-color: #f76b4a;
    }

    .page-138bet__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-138bet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

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

    .page-138bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--page-138bet__background-dark);
      color: var(--page-138bet__text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-138bet__promo-highlight {
      background-color: var(--page-138bet__primary-color);
      color: var(--page-138bet__text-light);
      padding: 10px 15px;
      border-radius: 5px;
      font-weight: bold;
      display: inline-block;
      margin-top: 10px;
      box-sizing: border-box;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-138bet {
        padding-left: 10px;
        padding-right: 10px;
      }

      .page-138bet__heading-1 {
        font-size: 2em;
      }

      .page-138bet__heading-2 {
        font-size: 1.6em;
      }

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

      .page-138bet__list {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-138bet__list-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-138bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        gap: 8px;
      }

      .page-138bet__floating-button {
        padding: 10px 15px;
        min-width: 80px;
        font-size: 0.9em;
      }

      .page-138bet__image-container {
        margin: 15px auto;
      }

      .page-138bet__card-image-container {
        height: 180px;
      }

      .page-138bet__faq-question {
        padding: 12px 15px;
      }

      .page-138bet__faq-question h3 {
        font-size: 1.1em;
      }

      .page-138bet__faq-answer {
        padding: 15px 15px !important;
      }

      .page-138bet__section {
        padding: 30px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-138bet__heading-1 {
        font-size: 1.8em;
      }
      .page-138bet__heading-2 {
        font-size: 1.4em;
      }
      .page-138bet__floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 5px;
      }
      .page-138bet__floating-button {
        padding: 8px 12px;
        min-width: 70px;
        font-size: 0.85em;
      }
    }
  