
    .page-23-win-bet__container {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding: 10px 0 80px 0; /* Minimal top padding, space for fixed buttons at bottom */
      max-width: 100%;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    .page-23-win-bet__header-title {
      text-align: center;
      padding: 20px 15px;
      background-color: #2a0000; /* Darker background for prominence */
      color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-23-win-bet__header-title h1 {
      font-size: 2.2em;
      margin: 0;
      color: #ffcc00; /* Gold color for brand */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-23-win-bet__section {
      padding: 30px 15px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-23-win-bet__section--dark {
      background-color: #333;
      color: #eee;
    }

    .page-23-win-bet__section h2 {
      color: #2a0000;
      text-align: center;
      margin-bottom: 25px;
      font-size: 1.8em;
    }

    .page-23-win-bet__section--dark h2 {
      color: #ffcc00;
    }

    .page-23-win-bet__text-content p {
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    .page-23-win-bet__highlight {
      color: #2a0000;
      font-weight: bold;
    }

    .page-23-win-bet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
      align-items: stretch;
      margin-top: 20px;
    }

    .page-23-win-bet__product-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-23-win-bet__product-item:hover {
      transform: translateY(-5px);
    }

    .page-23-win-bet__product-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-23-win-bet__product-item h3 {
      font-size: 1.3em;
      color: #2a0000;
      margin: 15px 10px 10px 10px;
    }

    .page-23-win-bet__product-item p {
      font-size: 0.95em;
      color: #555;
      padding: 0 10px 15px 10px;
      flex-grow: 1;
    }

    .page-23-win-bet__cta-button {
      display: block;
      width: fit-content;
      margin: 20px auto 0 auto;
      padding: 12px 25px;
      background-color: #ffcc00;
      color: #2a0000;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      cursor: pointer;
      border: none;
    }

    .page-23-win-bet__cta-button:hover {
      background-color: #e6b800;
    }

    .page-23-win-bet__provider-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

    .page-23-win-bet__provider-list li {
      background-color: #eee;
      padding: 12px 15px;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
      color: #333;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-23-win-bet__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .page-23-win-bet__payment-method-item {
      background-color: #eee;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      color: #333;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-23-win-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);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-23-win-bet__floating-button {
      flex: 1;
      text-align: center;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 1.1em;
      color: #fff;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-23-win-bet__floating-button--register {
      background-color: #ffcc00;
      color: #2a0000;
    }

    .page-23-win-bet__floating-button--register:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-23-win-bet__floating-button--login {
      background-color: #007bff;
    }

    .page-23-win-bet__floating-button--login:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-23-win-bet__faq-section {
      margin-top: 40px;
    }

    .page-23-win-bet__faq-item {
      background-color: #f0f0f0;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-23-win-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2a0000;
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-23-win-bet__faq-question:hover {
      background-color: #3d0000;
    }

    .page-23-win-bet__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #ffcc00;
      pointer-events: none; /* Prevents text from blocking click event */
    }

    .page-23-win-bet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from blocking click event */
    }

    .page-23-win-bet__faq-item.active .page-23-win-bet__faq-toggle {
      transform: rotate(45deg);
    }

    .page-23-win-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #fff;
      color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    .page-23-win-bet__faq-answer p {
      margin: 0;
      font-size: 1em;
    }

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

      .page-23-win-bet__section {
        padding: 25px 10px;
        max-width: 95%;
      }

      .page-23-win-bet__section h2 {
        font-size: 1.5em;
      }

      .page-23-win-bet__text-content p {
        font-size: 1em;
      }

      .page-23-win-bet__product-grid {
        grid-template-columns: 1fr;
      }

      .page-23-win-bet__product-item img {
        height: 200px;
      }

      .page-23-win-bet__provider-list {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }

      .page-23-win-bet__provider-list li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-23-win-bet__provider-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-23-win-bet__payment-methods {
        gap: 10px;
      }

      .page-23-win-bet__payment-method-item {
        padding: 8px 15px;
      }

      .page-23-win-bet__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }

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

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

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

    @media (min-width: 769px) {
      .page-23-win-bet__floating-buttons {
        width: auto;
        left: auto;
        right: 20px;
        bottom: 20px;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-radius: 10px;
        background-color: rgba(0, 0, 0, 0.7);
      }

      .page-23-win-bet__floating-button {
        width: 150px;
        margin: 0;
      }
    }
  