
    .page-ok9bet {
      font-family: 'Arial', sans-serif;
      color: #FFFFFF; /* White text */
      background-color: #000000; /* Black background */
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Hero Section */
    .page-ok9bet__hero-section {
      position: relative;
      width: 100%;
      background-color: #1a1a1a;
      padding-top: 160px; /* Safety zone for fixed header */
      padding-bottom: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-sizing: border-box;
    }

    .page-ok9bet__hero-image {
      width: 100%;
      max-width: 1200px; /* Max width for the image */
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); /* Yellow glow */
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-ok9bet__hero-content {
      padding: 0 20px;
      max-width: 900px;
    }

    .page-ok9bet__hero-title {
      font-size: 2.8em;
      color: #FFD700; /* Yellow */
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-ok9bet__hero-description {
      font-size: 1.2em;
      color: #E0E0E0;
      margin-bottom: 30px;
    }

    .page-ok9bet__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Yellow */
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }

    .page-ok9bet__cta-button:hover {
      background-color: #FFA500; /* Orange-yellow */
      transform: translateY(-3px);
    }

    /* General Section Styling */
    .page-ok9bet__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #1a1a1a;
      border-radius: 8px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-ok9bet__section-title {
      font-size: 2.2em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-ok9bet__text-content {
      font-size: 1.1em;
      color: #E0E0E0;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-ok9bet__text-content strong {
      color: #FFD700;
    }

    /* Game Categories */
    .page-ok9bet__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-ok9bet__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-ok9bet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
    }

    .page-ok9bet__game-card-image-wrapper {
      width: 100%;
      height: 150px; /* Fixed height for image container */
      overflow: hidden;
      margin-bottom: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #000; /* Ensure black background for game logos */
    }

    .page-ok9bet__game-card-image {
      width: 100%;
      height: auto;
      object-fit: contain; /* Ensure image fits without cropping and maintains aspect ratio */
      border-radius: 8px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-ok9bet__game-card-title {
      font-size: 1.3em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-ok9bet__game-card-link {
      display: block;
      color: #FFD700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-ok9bet__game-card-link:hover {
      color: #FFFFFF;
    }

    /* Promotions Section */
    .page-ok9bet__promotion-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-ok9bet__promotion-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for promo image container */
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-ok9bet__promotion-image {
      width: 100%;
      height: auto;
      object-fit: cover; /* Cover the container */
      border-radius: 8px;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-ok9bet__promotion-title {
      font-size: 1.6em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-ok9bet__promotion-description {
      font-size: 1em;
      color: #E0E0E0;
      margin-bottom: 20px;
    }

    /* Guides Section */
    .page-ok9bet__guide-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-ok9bet__guide-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-ok9bet__guide-item-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-ok9bet__guide-item-text {
      color: #E0E0E0;
      margin-bottom: 15px;
    }

    /* Benefits Section */
    .page-ok9bet__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-ok9bet__benefit-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-ok9bet__benefit-icon-wrapper {
        margin-bottom: 15px;
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
    .page-ok9bet__benefit-icon {
      width: 80px; /* Adjust size for icon-like images */
      height: 80px;
      object-fit: contain;
      max-width: 100%; /* Ensure responsiveness */
      height: auto;
    }

    .page-ok9bet__benefit-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-ok9bet__benefit-description {
      color: #E0E0E0;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-ok9bet__faq-container {
      margin-top: 30px;
    }

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

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

    .page-ok9bet__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-ok9bet__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
    }

    .page-ok9bet__faq-toggle {
      font-size: 1.8em;
      color: #FFD700;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      line-height: 1;
    }

    .page-ok9bet__faq-item.active .page-ok9bet__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to -) */
    }

    .page-ok9bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      color: #E0E0E0;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      background-color: #2a2a2a;
    }

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

    /* Sticky CTA Button */
    .page-ok9bet__sticky-cta-wrapper {
      position: sticky;
      bottom: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      padding: 15px 0;
      text-align: center;
      box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      margin-top: 40px; /* Give some space from content above */
    }

    .page-ok9bet__sticky-cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
      animation: pulse 2s infinite;
    }

    .page-ok9bet__sticky-cta-button:hover {
      background-color: #FFA500;
      transform: translateY(-3px);
    }

    @keyframes pulse {
      0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
      70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
      100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-ok9bet__hero-section {
        padding-top: 100px; /* Adjust for mobile header */
        padding-bottom: 30px;
      }

      .page-ok9bet__hero-title {
        font-size: 2em;
      }

      .page-ok9bet__hero-description {
        font-size: 1em;
      }

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

      .page-ok9bet__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }

      .page-ok9bet__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

      .page-ok9bet__text-content {
        font-size: 0.95em;
      }

      .page-ok9bet__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
      }

      .page-ok9bet__game-card {
        padding: 15px;
      }

      .page-ok9bet__game-card-image-wrapper {
        height: 120px;
      }

      .page-ok9bet__game-card-title {
        font-size: 1.1em;
      }

      .page-ok9bet__promotion-item {
        padding: 20px;
      }

      .page-ok9bet__promotion-image-wrapper {
        height: 150px;
      }

      .page-ok9bet__promotion-title {
        font-size: 1.4em;
      }

      .page-ok9bet__guide-list {
        grid-template-columns: 1fr;
      }

      .page-ok9bet__benefit-title {
        font-size: 1.3em;
      }

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

      .page-ok9bet__faq-question h3 {
        font-size: 1.1em;
      }

      .page-ok9bet__faq-toggle {
        font-size: 1.5em;
      }

      .page-ok9bet__faq-answer {
        padding: 15px 15px;
      }

      .page-ok9bet__sticky-cta-wrapper {
        padding: 10px 0;
      }

      .page-ok9bet__sticky-cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }

      /* Image responsiveness for mobile */
      .page-ok9bet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ok9bet__game-card-image-wrapper,
      .page-ok9bet__promotion-image-wrapper,
      .page-ok9bet__benefit-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  