
    .page-99ok-123 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
    }

    .page-99ok-123__section-title {
      font-size: 2.2em;
      color: #004d99; /* Dark blue for titles */
      text-align: center;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-99ok-123__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #ffcc00; /* Yellow accent */
      border-radius: 2px;
    }

    .page-99ok-123__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      color: #666;
    }

    /* Hero Section */
    .page-99ok-123__hero-section {
      background: linear-gradient(135deg, #004d99, #007bff); /* Blue gradient */
      color: #fff;
      padding: 10px 20px 60px 20px; /* 10px top padding as per instruction */
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

    .page-99ok-123__hero-content {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-99ok-123__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffcc00; /* Yellow for keyword */
    }

    .page-99ok-123__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-99ok-123__hero-image-wrapper {
      margin-bottom: 30px;
      width: 100%;
      max-width: 800px;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-99ok-123__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 15px;
    }

    .page-99ok-123__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #333;
      padding: 15px 40px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

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

    /* Floating Buttons */
    .page-99ok-123__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-99ok-123__floating-btn {
      background-color: #ffcc00; /* A vibrant color */
      color: #333;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 120px; /* Ensure button width */
      text-align: center;
    }

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

    .page-99ok-123__register-btn {
      background-color: #007bff; /* Blue for register */
      color: #fff;
    }
    .page-99ok-123__register-btn:hover {
      background-color: #0056b3;
    }
    .page-99ok-123__login-btn {
      background-color: #28a745; /* Green for login */
      color: #fff;
    }
    .page-99ok-123__login-btn:hover {
      background-color: #1e7e34;
    }

    /* Game Categories Section */
    .page-99ok-123__game-categories,
    .page-99ok-123__promotions-section,
    .page-99ok-123__providers-section,
    .page-99ok-123__payment-section,
    .page-99ok-123__why-choose-us {
      padding: 60px 20px;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-99ok-123__category-grid,
    .page-99ok-123__promo-grid,
    .page-99ok-123__provider-grid,
    .page-99ok-123__payment-grid,
    .page-99ok-123__advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Min width for items */
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-99ok-123__category-item,
    .page-99ok-123__promo-item,
    .page-99ok-123__provider-item,
    .page-99ok-123__payment-item,
    .page-99ok-123__advantage-item {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for list items */
    }

    .page-99ok-123__category-item:hover,
    .page-99ok-123__promo-item:hover,
    .page-99ok-123__provider-item:hover,
    .page-99ok-123__payment-item:hover,
    .page-99ok-123__advantage-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-99ok-123__category-image,
    .page-99ok-123__promo-image,
    .page-99ok-123__provider-logo,
    .page-99ok-123__payment-logo,
    .page-99ok-123__advantage-icon {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 15px auto;
      border-radius: 8px;
      object-fit: contain; /* For logos to maintain aspect ratio */
      width: 100%; /* Ensure full width within container */
      max-height: 200px; /* Limit height for uniform display */
    }

    /* Specific adjustments for smaller logos/icons */
    .page-99ok-123__provider-logo,
    .page-99ok-123__payment-logo {
      max-width: 150px; /* Smaller max-width for logos */
      max-height: 80px;
    }
    .page-99ok-123__advantage-icon {
      max-width: 100px;
      max-height: 100px;
    }

    .page-99ok-123__category-name,
    .page-99ok-123__promo-title,
    .page-99ok-123__provider-name,
    .page-99ok-123__payment-name,
    .page-99ok-123__advantage-title {
      font-size: 1.3em;
      color: #004d99;
      margin-bottom: 10px;
    }

    .page-99ok-123__category-text,
    .page-99ok-123__promo-text,
    .page-99ok-123__advantage-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-99ok-123__promo-link {
      display: inline-block;
      margin-top: 15px;
      background-color: #ffcc00;
      color: #333;
      padding: 8px 20px;
      border-radius: 20px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-99ok-123__promo-link:hover {
      background-color: #e6b800;
    }

    .page-99ok-123__more-promos-text {
      text-align: center;
      margin-top: 30px;
      font-size: 1.1em;
      color: #004d99;
    }

    /* FAQ Section */
    .page-99ok-123__faq-section {
      padding: 40px 20px;
      background-color: #f9f9f9;
      text-align: center;
    }

    .page-99ok-123__faq-list {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-99ok-123__faq-item {
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden; /* Important for max-height transition */
    }

    .page-99ok-123__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-99ok-123__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-99ok-123__faq-question-title {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-99ok-123__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Crucial for click event on parent */
      transition: transform 0.3s ease;
    }

    .page-99ok-123__faq-item.active .page-99ok-123__faq-toggle {
      transform: rotate(45deg); /* Change + to X */
    }

    .page-99ok-123__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-99ok-123__faq-item.active .page-99ok-123__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-99ok-123__faq-answer p {
      margin: 0;
      line-height: 1.6;
      color: #555;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-99ok-123__hero-title {
        font-size: 2.5em;
      }
      .page-99ok-123__hero-subtitle {
        font-size: 1.2em;
      }
      .page-99ok-123__section-title {
        font-size: 1.8em;
      }
      .page-99ok-123__section-description {
        font-size: 1em;
      }
    }

    @media (max-width: 768px) {
      .page-99ok-123__hero-section {
        padding: 10px 15px 40px 15px;
        min-height: 400px;
      }
      .page-99ok-123__hero-title {
        font-size: 2em;
      }
      .page-99ok-123__hero-subtitle {
        font-size: 1.1em;
      }
      .page-99ok-123__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-99ok-123__section-title {
        font-size: 1.6em;
      }
      .page-99ok-123__section-description {
        margin-bottom: 30px;
      }

      .page-99ok-123__game-categories,
      .page-99ok-123__promotions-section,
      .page-99ok-123__providers-section,
      .page-99ok-123__payment-section,
      .page-99ok-123__why-choose-us,
      .page-99ok-123__faq-section {
        padding: 40px 15px;
      }

      /* Floating Buttons */
      .page-99ok-123__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Align horizontally on mobile */
        left: 15px; /* Span across the bottom */
        justify-content: space-around;
      }
      .page-99ok-123__floating-btn {
        padding: 10px 15px;
        font-size: 1em;
        min-width: unset;
        flex: 1; /* Distribute space evenly */
      }

      /* List items responsive */
      .page-99ok-123__category-grid,
      .page-99ok-123__promo-grid,
      .page-99ok-123__provider-grid,
      .page-99ok-123__payment-grid,
      .page-99ok-123__advantages-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-99ok-123__category-item,
      .page-99ok-123__promo-item,
      .page-99ok-123__provider-item,
      .page-99ok-123__payment-item,
      .page-99ok-123__advantage-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      /* Image responsive */
      .page-99ok-123__hero-image,
      .page-99ok-123__category-image,
      .page-99ok-123__promo-image,
      .page-99ok-123__provider-logo,
      .page-99ok-123__payment-logo,
      .page-99ok-123__advantage-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-99ok-123__hero-image-wrapper {
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-99ok-123__category-name,
      .page-99ok-123__promo-title,
      .page-99ok-123__provider-name,
      .page-99ok-123__payment-name,
      .page-99ok-123__advantage-title {
        font-size: 1.1em;
      }

      .page-99ok-123__category-text,
      .page-99ok-123__promo-text,
      .page-99ok-123__advantage-description {
        font-size: 0.9em;
      }

      .page-99ok-123__faq-question {
        padding: 12px 15px;
      }
      .page-99ok-123__faq-question-title {
        font-size: 1em;
      }
      .page-99ok-123__faq-toggle {
        font-size: 1.3em;
      }
      .page-99ok-123__faq-answer {
        padding: 0 10px;
      }
      .page-99ok-123__faq-item.active .page-99ok-123__faq-answer {
        padding: 15px 10px !important;
      }
      .page-99ok-123__faq-list {
        padding: 0;
      }
    }

    @media (max-width: 480px) {
      .page-99ok-123__hero-title {
        font-size: 1.8em;
      }
      .page-99ok-123__hero-subtitle {
        font-size: 1em;
      }
      .page-99ok-123__section-title {
        font-size: 1.4em;
      }
    }
  