
    .page-999-ok {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-999-ok__hero-section {
      position: relative;
      width: 100%;
      min-height: 450px; /* Adjust height for mobile */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 20px 40px; /* Adjusted padding for potential header offset + content */
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-999-ok__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Adjust brightness for text readability */
    }

    .page-999-ok__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-999-ok__hero-title {
      font-size: 2.2em;
      color: #ffd700; /* Gold accent */
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-999-ok__hero-subtitle {
      font-size: 1.1em;
      color: #fff;
      margin-bottom: 30px;
    }

    .page-999-ok__hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }

    .page-999-ok__cta-button,
    .page-999-ok__secondary-button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      width: 100%;
      max-width: 250px;
      box-sizing: border-box;
    }

    .page-999-ok__cta-button {
      background-color: #00ff00; /* Green accent for CTA */
      color: #1a1a1a;
      border: none;
    }

    .page-999-ok__cta-button:hover {
      background-color: #00e600;
      transform: translateY(-2px);
    }

    .page-999-ok__secondary-button {
      background-color: transparent;
      color: #ffd700;
      border: 2px solid #ffd700;
    }

    .page-999-ok__secondary-button:hover {
      background-color: rgba(255, 215, 0, 0.1);
      transform: translateY(-2px);
    }

    .page-999-ok__section-title {
      font-size: 2em;
      color: #ffd700;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
    }

    .page-999-ok__section-description {
      font-size: 1.1em;
      color: #ccc;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
      padding: 0 15px;
    }

    .page-999-ok__about-section,
    .page-999-ok__games-section,
    .page-999-ok__promotions-section,
    .page-999-ok__faq-section,
    .page-999-ok__cta-bottom-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-999-ok__features-grid,
    .page-999-ok__game-categories,
    .page-999-ok__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      box-sizing: border-box; /* For list item responsive */
      padding: 0 15px; /* Adjust padding for mobile */
    }

    .page-999-ok__feature-item,
    .page-999-ok__game-card,
    .page-999-ok__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* For list item responsive */
      width: 100%; /* For list item responsive */
      max-width: 100%; /* For list item responsive */
      overflow: hidden; /* For list item responsive */
      word-wrap: break-word; /* For list item responsive */
      overflow-wrap: break-word; /* For list item responsive */
    }

    .page-999-ok__feature-item:hover,
    .page-999-ok__game-card:hover,
    .page-999-ok__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-999-ok__feature-icon {
      width: 250px; /* Min size 200px */
      height: 250px; /* Min size 200px */
      object-fit: contain;
      margin-bottom: 15px;
      max-width: 100%; /* For responsive image */
      height: auto; /* For responsive image */
      box-sizing: border-box; /* For responsive image */
    }

    .page-999-ok__feature-title,
    .page-999-ok__game-title,
    .page-999-ok__promo-title {
      font-size: 1.4em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-999-ok__feature-text,
    .page-999-ok__game-text,
    .page-999-ok__promo-text {
      font-size: 0.95em;
      color: #bbb;
      word-wrap: break-word; /* For list item responsive */
      overflow-wrap: break-word; /* For list item responsive */
    }

    .page-999-ok__game-image,
    .page-999-ok__promo-image {
      width: 100%;
      height: 250px; /* Min size 200px, but object-fit will scale */
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      max-width: 100%; /* For responsive image */
      height: auto; /* For responsive image */
      box-sizing: border-box; /* For responsive image */
    }

    .page-999-ok__promo-button {
      background-color: #00ff00;
      color: #1a1a1a;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      margin-top: 15px;
      transition: background-color 0.3s ease;
      width: auto;
      max-width: 180px;
    }

    .page-999-ok__promo-button:hover {
      background-color: #00e600;
    }

    /* FAQ Section */
    .page-999-ok__faq-container {
      max-width: 800px;
      margin: 0 auto;
      border: 1px solid #333;
      border-radius: 10px;
      overflow: hidden;
    }

    .page-999-ok__faq-item {
      border-bottom: 1px solid #333;
      box-sizing: border-box; /* For list item responsive */
      width: 100%; /* For list item responsive */
      max-width: 100%; /* For list item responsive */
      overflow: hidden; /* For list item responsive */
      word-wrap: break-word; /* For list item responsive */
      overflow-wrap: break-word; /* For list item responsive */
      margin-left: 0;
      margin-right: 0;
    }

    .page-999-ok__faq-item:last-child {
      border-bottom: none;
    }

    .page-999-ok__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #2a2a2a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: #ffd700;
    }

    .page-999-ok__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-999-ok__faq-question-text {
      font-size: 1.1em;
      margin: 0;
      pointer-events: none; /* Crucial for click event on parent */
      word-wrap: break-word; /* For list item responsive */
      overflow-wrap: break-word; /* For list item responsive */
    }

    .page-999-ok__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Crucial for click event on parent */
      transition: transform 0.3s ease;
    }

    .page-999-ok__faq-item.active .page-999-ok__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-999-ok__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #1a1a1a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #e0e0e0;
    }

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

    .page-999-ok__faq-answer p {
      margin: 0;
      word-wrap: break-word; /* For list item responsive */
      overflow-wrap: break-word; /* For list item responsive */
    }

    /* Bottom CTA */
    .page-999-ok__cta-bottom-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #2a2a2a;
      margin-top: 40px;
      border-radius: 10px;
    }

    .page-999-ok__cta-bottom-title {
      font-size: 2em;
      color: #ffd700;
      margin-bottom: 15px;
    }

    .page-999-ok__cta-bottom-description {
      font-size: 1.1em;
      color: #ccc;
      max-width: 700px;
      margin: 0 auto 30px;
    }

    .page-999-ok__cta-button--large {
      padding: 15px 35px;
      font-size: 1.2em;
      max-width: 350px;
      width: 100%;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-999-ok__hero-section {
        min-height: 400px;
        padding: 60px 15px 30px;
      }

      .page-999-ok__hero-title {
        font-size: 1.8em;
      }

      .page-999-ok__hero-subtitle {
        font-size: 1em;
      }

      .page-999-ok__hero-buttons {
        flex-direction: column;
      }

      .page-999-ok__cta-button,
      .page-999-ok__secondary-button {
        max-width: 90%;
      }

      .page-999-ok__section-title {
        font-size: 1.7em;
        padding-top: 30px;
      }

      .page-999-ok__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-999-ok__about-section,
      .page-999-ok__games-section,
      .page-999-ok__promotions-section,
      .page-999-ok__faq-section,
      .page-999-ok__cta-bottom-section {
        padding: 30px 15px;
      }

      .page-999-ok__features-grid,
      .page-999-ok__game-categories,
      .page-999-ok__promo-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
        padding: 0; /* Remove horizontal padding from grid container */
      }

      .page-999-ok__feature-item,
      .page-999-ok__game-card,
      .page-999-ok__promo-card {
        padding: 20px;
        margin-left: 0 !important; /* Ensure no extra margin */
        margin-right: 0 !important; /* Ensure no extra margin */
        width: 100% !important; /* Force full width */
        max-width: 100% !important; /* Force full width */
        box-sizing: border-box !important; /* Ensure box-sizing */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      
      .page-999-ok__feature-text,
      .page-999-ok__game-text,
      .page-999-ok__promo-text,
      .page-999-ok__faq-answer p {
        word-break: break-word !important; /* Ensure long words break */
      }

      .page-999-ok__feature-icon,
      .page-999-ok__game-image,
      .page-999-ok__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-999-ok__faq-question {
        padding: 12px 15px;
      }

      .page-999-ok__faq-question-text {
        font-size: 1em;
      }

      .page-999-ok__faq-answer {
        padding: 0 15px;
      }

      .page-999-ok__faq-item.active .page-999-ok__faq-answer {
        padding: 15px 15px !important;
      }

      .page-999-ok__cta-bottom-title {
        font-size: 1.7em;
      }

      .page-999-ok__cta-button--large {
        font-size: 1.1em;
        padding: 12px 25px;
      }
    }

    @media (max-width: 480px) {
      .page-999-ok__hero-title {
        font-size: 1.5em;
      }
      .page-999-ok__hero-subtitle {
        font-size: 0.9em;
      }
    }
  