
    .page-99ok-bet {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-99ok-bet__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 10px 20px; /* Decorative top padding */
      box-sizing: border-box;
    }

    .page-99ok-bet__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6);
      max-width: 100%;
    }

    .page-99ok-bet__hero-content {
      position: relative;
      z-index: 2;
      color: #ffffff;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      max-width: 90%;
    }

    .page-99ok-bet__brand-title {
      font-size: 3.5em;
      margin-bottom: 10px;
      color: #e94560;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-99ok-bet__hero-slogan {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-99ok-bet__hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    .page-99ok-bet__hero-btn {
      background-color: #e94560;
      color: #ffffff;
      padding: 12px 25px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-weight: bold;
    }

    .page-99ok-bet__hero-btn:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

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

    .page-99ok-bet__floating-btn {
      display: block;
      background-color: #0f3460;
      color: #ffffff;
      padding: 12px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-weight: bold;
      min-width: 100px;
    }

    .page-99ok-bet__floating-btn--register {
      background-color: #e94560;
    }

    .page-99ok-bet__floating-btn--register:hover {
      background-color: #c0392b;
      transform: scale(1.05);
    }

    .page-99ok-bet__floating-btn--login {
      background-color: #0f3460;
    }

    .page-99ok-bet__floating-btn--login:hover {
      background-color: #1f4a7c;
      transform: scale(1.05);
    }

    .page-99ok-bet__section-title {
      font-size: 2.5em;
      color: #e94560;
      text-align: center;
      margin-bottom: 40px;
      padding-top: 60px;
      font-weight: bold;
    }

    .page-99ok-bet__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
      padding: 0 20px;
      color: #b0b0b0;
    }

    .page-99ok-bet__intro-section,
    .page-99ok-bet__products-section,
    .page-99ok-bet__promotions-section,
    .page-99ok-bet__providers-section,
    .page-99ok-bet__payment-section,
    .page-99ok-bet__faq-section,
    .page-99ok-bet__social-section,
    .page-99ok-bet__cta-section,
    .page-99ok-bet__news-section {
      padding: 20px 0;
      margin-bottom: 40px;
    }

    .page-99ok-bet__product-grid,
    .page-99ok-bet__promo-grid,
    .page-99ok-bet__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-99ok-bet__product-card,
    .page-99ok-bet__promo-card,
    .page-99ok-bet__news-article {
      background-color: #2a2a4a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-sizing: border-box;
    }

    .page-99ok-bet__product-card:hover,
    .page-99ok-bet__promo-card:hover,
    .page-99ok-bet__news-article:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    }

    .page-99ok-bet__product-image,
    .page-99ok-bet__promo-image,
    .page-99ok-bet__news-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%;
    }

    .page-99ok-bet__product-title,
    .page-99ok-bet__promo-title,
    .page-99ok-bet__news-title {
      font-size: 1.4em;
      color: #e94560;
      margin: 20px 15px 10px 15px;
      font-weight: bold;
    }

    .page-99ok-bet__product-description,
    .page-99ok-bet__promo-description,
    .page-99ok-bet__news-excerpt {
      font-size: 1em;
      color: #b0b0b0;
      padding: 0 15px 20px 15px;
      flex-grow: 1;
    }

    .page-99ok-bet__news-date {
      font-size: 0.9em;
      color: #888;
      margin-bottom: 10px;
    }

    .page-99ok-bet__read-more {
      background-color: #0f3460;
      color: #ffffff;
      padding: 10px 15px;
      border-radius: 0 0 12px 12px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-weight: bold;
    }

    .page-99ok-bet__read-more:hover {
      background-color: #1f4a7c;
    }

    .page-99ok-bet__providers-list,
    .page-99ok-bet__payment-list,
    .page-99ok-bet__social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-99ok-bet__provider-item,
    .page-99ok-bet__payment-item,
    .page-99ok-bet__social-icon-link {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-width: 180px;
      flex: 1 1 auto;
      max-width: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #e0e0e0;
      box-sizing: border-box;
    }

    .page-99ok-bet__provider-item:hover,
    .page-99ok-bet__payment-item:hover,
    .page-99ok-bet__social-icon-link:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .page-99ok-bet__provider-logo,
    .page-99ok-bet__payment-logo,
    .page-99ok-bet__social-icon {
      width: 100%;
      height: auto;
      max-width: 200px; /* Ensure minimum size */
      margin-bottom: 10px;
      object-fit: contain;
      max-height: 100px;
    }

    .page-99ok-bet__provider-name,
    .page-99ok-bet__payment-name,
    .page-99ok-bet__social-name {
      font-size: 1.1em;
      font-weight: bold;
      color: #e94560;
    }

    .page-99ok-bet__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-99ok-bet__faq-item {
      background-color: #2a2a4a;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      overflow: hidden;
    }

    .page-99ok-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      user-select: none;
      background-color: #0f3460;
      border-radius: 10px;
      transition: background-color 0.3s ease;
    }

    .page-99ok-bet__faq-question:hover {
      background-color: #1f4a7c;
    }

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

    .page-99ok-bet__faq-toggle {
      font-size: 1.8em;
      color: #e94560;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
    }

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

    .page-99ok-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: #b0b0b0;
    }

    .page-99ok-bet__faq-item.active .page-99ok-bet__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

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

    .page-99ok-bet__cta-section {
      text-align: center;
      background-color: #0f3460;
      padding: 60px 20px;
      margin-top: 50px;
    }

    .page-99ok-bet__cta-button {
      display: inline-block;
      background-color: #e94560;
      color: #ffffff;
      padding: 15px 35px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.3em;
      font-weight: bold;
      margin-top: 30px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-99ok-bet__cta-button:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-99ok-bet__hero-section {
        height: 50vh;
      }

      .page-99ok-bet__brand-title {
        font-size: 2.5em;
      }

      .page-99ok-bet__hero-slogan {
        font-size: 1.2em;
      }

      .page-99ok-bet__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }

      .page-99ok-bet__hero-btn {
        padding: 10px 20px;
        font-size: 1em;
        width: 100%;
        max-width: 250px;
      }

      .page-99ok-bet__section-title {
        font-size: 2em;
      }

      .page-99ok-bet__section-description {
        font-size: 1em;
      }

      .page-99ok-bet__product-grid,
      .page-99ok-bet__promo-grid,
      .page-99ok-bet__news-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .page-99ok-bet__product-card,
      .page-99ok-bet__promo-card,
      .page-99ok-bet__news-article {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-99ok-bet__product-image,
      .page-99ok-bet__promo-image,
      .page-99ok-bet__news-image {
        height: 180px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-99ok-bet__providers-list,
      .page-99ok-bet__payment-list,
      .page-99ok-bet__social-links {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
      }

      .page-99ok-bet__provider-item,
      .page-99ok-bet__payment-item,
      .page-99ok-bet__social-icon-link {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-99ok-bet__provider-logo,
      .page-99ok-bet__payment-logo,
      .page-99ok-bet__social-icon {
        max-width: 150px; /* Adjust for smaller screens */
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

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

      .page-99ok-bet__faq-answer {
        padding: 0 10px;
      }

      .page-99ok-bet__faq-item.active .page-99ok-bet__faq-answer {
        padding: 15px 10px !important;
      }

      .page-99ok-bet__cta-section {
        padding: 40px 15px;
      }

      .page-99ok-bet__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }

      .page-99ok-bet__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-99ok-bet__floating-btn {
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-99ok-bet__brand-title {
        font-size: 2em;
      }

      .page-99ok-bet__hero-slogan {
        font-size: 1em;
      }

      .page-99ok-bet__section-title {
        font-size: 1.8em;
      }
    }
  