
    .page-39-bet {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-39-bet__hero-section {
      position: relative;
      width: 100%;
      padding-top: 10px; /* Small padding, assuming body has header offset */
      padding-bottom: 50px;
      background: linear-gradient(135deg, #ff6b6b, #ee2b2b);
      color: #fff;
      text-align: center;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-39-bet__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      opacity: 0.8;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .page-39-bet__hero-content {
      position: relative;
      z-index: 2;
      max-width: 90%;
      margin: 0 auto;
      padding: 20px 15px;
      box-sizing: border-box;
    }

    .page-39-bet__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #fff;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39-bet__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #ffe0b2;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39-bet__buttons-container {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .page-39-bet__action-button {
      background-color: #ffd700;
      color: #333;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-39-bet__action-button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

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

    .page-39-bet__floating-button {
      flex: 1;
      text-align: center;
      background-color: #ff4500;
      color: #fff;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
    }

    .page-39-bet__floating-button--register {
      background-color: #008000;
    }

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

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

    .page-39-bet__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 20px;
      box-sizing: border-box;
    }

    .page-39-bet__section-title {
      font-size: 2em;
      color: #e60000;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39-bet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ff4500;
      border-radius: 2px;
    }

    .page-39-bet__text-content p {
      margin-bottom: 15px;
      text-align: justify;
      color: #555;
    }

    .page-39-bet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-39-bet__product-item {
      background-color: #fefefe;
      border-radius: 10px;
      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;
      padding-bottom: 15px;
      box-sizing: border-box;
    }

    .page-39-bet__product-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-39-bet__product-image-container {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-39-bet__product-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .page-39-bet__product-name {
      font-size: 1.3em;
      font-weight: bold;
      color: #333;
      margin: 0 15px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39-bet__promotion-card {
      background-color: #fff3e0;
      border: 1px solid #ffcc80;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-39-bet__promotion-card h3 {
      color: #e65100;
      font-size: 1.5em;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39-bet__promotion-card p {
      color: #795548;
      margin-bottom: 20px;
    }

    .page-39-bet__promotion-link {
      background-color: #ff9800;
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-39-bet__promotion-link:hover {
      background-color: #fb8c00;
    }

    .page-39-bet__payment-methods, .page-39-bet__provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-39-bet__payment-item, .page-39-bet__provider-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 15px 20px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      width: calc(33% - 20px); /* Default for larger screens */
      box-sizing: border-box;
    }

    .page-39-bet__payment-item:hover, .page-39-bet__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-39-bet__payment-logo, .page-39-bet__provider-logo {
      width: 100px;
      height: auto;
      max-height: 50px;
      object-fit: contain;
      margin-bottom: 10px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-39-bet__payment-item a, .page-39-bet__provider-item a {
      color: #333;
      text-decoration: none;
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39-bet__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 20px auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-39-bet__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-39-bet__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-39-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      color: #333;
      transition: color 0.3s ease;
    }

    .page-39-bet__faq-question:hover {
      color: #e60000;
    }

    .page-39-bet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39-bet__faq-toggle {
      font-size: 1.5em;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none;
      color: #e60000;
    }

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

    .page-39-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: #555;
      text-align: justify;
    }

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

    .page-39-bet__cta-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(90deg, #ff4500, #ff8c00);
      color: #fff;
      border-radius: 10px;
      margin: 20px auto;
      max-width: 1200px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-39-bet__cta-text {
      font-size: 2em;
      margin-bottom: 25px;
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-39-bet__cta-button {
      background-color: #ffd700;
      color: #333;
      padding: 15px 35px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-39-bet__cta-button:hover {
      background-color: #ffc107;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-39-bet__section {
        padding: 30px 15px;
      }
      .page-39-bet__product-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
      .page-39-bet__payment-item, .page-39-bet__provider-item {
        width: calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-39-bet__hero-title {
        font-size: 2em;
      }
      .page-39-bet__hero-description {
        font-size: 1em;
      }
      .page-39-bet__action-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-39-bet__section-title {
        font-size: 1.8em;
      }
      .page-39-bet__product-grid {
        grid-template-columns: 1fr;
      }
      .page-39-bet__product-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-39-bet__payment-item, .page-39-bet__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 10px !important; /* Reduce padding for smaller screens */
      }
      .page-39-bet__payment-methods, .page-39-bet__provider-list {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-39-bet__cta-text {
        font-size: 1.5em;
      }
      .page-39-bet__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-39-bet__product-image, .page-39-bet__payment-logo, .page-39-bet__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-39-bet__faq-question {
        font-size: 1em;
      }
      .page-39-bet__faq-answer {
        padding: 15px 10px !important;
      }
      .page-39-bet__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }
      .page-39-bet__text-content p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-39-bet__hero-title, .page-39-bet__hero-description, .page-39-bet__section-title, .page-39-bet__product-name, .page-39-bet__promotion-card h3, .page-39-bet__payment-item a, .page-39-bet__provider-item a, .page-39-bet__faq-question h3, .page-39-bet__cta-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-39-bet__hero-title {
        font-size: 1.8em;
      }
      .page-39-bet__section-title {
        font-size: 1.6em;
      }
      .page-39-bet__floating-button {
        font-size: 0.9em;
        padding: 8px 0;
      }
    }
  