
    /* CSS Styles for ok365com page */
    .page-ok365com {
      background-color: #000000;
      color: #FFFFFF;
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
    }

    .page-ok365com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-ok365com__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-ok365com__section--dark {
      background-color: #1a1a1a;
    }

    .page-ok365com__section-title {
      font-size: 3em;
      color: #FFD700;
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }
    .page-ok365com__section-title span {
      color: #FFFFFF;
    }

    .page-ok365com__section-subtitle {
      font-size: 1.5em;
      color: #FFFFFF;
      margin-bottom: 40px;
    }

    /* Hero Section */
    .page-ok365com__hero-section {
      position: relative;
      overflow: hidden;
      padding-top: 140px; /* Space for fixed header */
      text-align: center;
      background-color: #000; /* Ensure black background */
    }

    .page-ok365com__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Maintain aspect ratio */
      border-radius: 8px;
    }

    .page-ok365com__hero-content {
      padding: 40px 15px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .page-ok365com__hero-title {
      font-size: 3.5em;
      color: #FFD700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-ok365com__hero-description {
      font-size: 1.3em;
      color: #FFFFFF;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ok365com__cta-button {
      display: inline-block;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 40px;
      border-radius: 50px;
      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(255, 215, 0, 0.4);
    }

    .page-ok365com__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-ok365com__floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #FFD700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
      animation: page-ok365com__pulse 1.5s infinite;
      display: none; /* Hidden by default, shown by JS */
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-ok365com__floating-login-button:hover {
      background-color: #e6c200;
      transform: translateX(-50%) translateY(-3px);
    }

    @keyframes page-ok365com__pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.05); }
      100% { transform: translateX(-50%) scale(1); }
    }

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

    .page-ok365com__game-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-ok365com__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    }

    .page-ok365com__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-ok365com__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-ok365com__game-card-link {
      color: #FFD700;
      text-decoration: none;
      font-weight: bold;
    }

    .page-ok365com__game-card-link:hover {
      text-decoration: underline;
    }

    /* Game Providers */
    .page-ok365com__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for image size requirement */
      gap: 20px;
      margin-top: 40px;
      align-items: center;
    }

    .page-ok365com__provider-logo {
      width: 100%;
      height: auto;
      max-width: 200px; /* Adjusted to meet min 200px dimension requirement */
      display: block;
      margin: 0 auto;
      object-fit: contain;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }

    .page-ok365com__provider-logo:hover {
      opacity: 1;
    }

    /* Promotions */
    .page-ok365com__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-ok365com__promo-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-ok365com__promo-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    }

    .page-ok365com__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .page-ok365com__promo-content {
      padding: 25px;
    }

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

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

    /* Why Choose Section */
    .page-ok365com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-ok365com__feature-item {
      background-color: #1a1a1a;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: background-color 0.3s ease;
    }

    .page-ok365com__feature-item:hover {
      background-color: #2a2a2a;
    }

    .page-ok365com__feature-icon {
      width: 100%;
      max-width: 200px; /* Adjusted to meet min 200px dimension requirement */
      height: auto;
      margin-bottom: 20px;
      object-fit: contain;
    }

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

    .page-ok365com__feature-description {
      color: #FFFFFF;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-ok365com__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-ok365com__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-ok365com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2a2a2a;
      color: #FFD700;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-ok365com__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-ok365com__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from intercepting click */
    }

    .page-ok365com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #FFFFFF;
      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;
    }

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

    .page-ok365com__faq-answer p {
      margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-ok365com__hero-title {
        font-size: 3em;
      }
      .page-ok365com__section-title {
        font-size: 2.5em;
      }
      .page-ok365com__game-categories,
      .page-ok365com__promo-grid,
      .page-ok365com__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-ok365com__hero-section {
        padding-top: 100px; /* Adjusted for mobile header */
      }
      .page-ok365com__hero-title {
        font-size: 2.5em;
      }
      .page-ok365com__hero-description {
        font-size: 1.1em;
      }
      .page-ok365com__section-title {
        font-size: 2em;
      }
      .page-ok365com__section-subtitle {
        font-size: 1.2em;
      }
      .page-ok365com__cta-button {
        padding: 12px 30px;
        font-size: 1em;
      }
      .page-ok365com__game-categories,
      .page-ok365com__promo-grid,
      .page-ok365com__features-grid {
        grid-template-columns: 1fr;
      }
      .page-ok365com__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-ok365com__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-ok365com__faq-question h3 {
        font-size: 1.1em;
      }
      .page-ok365com__faq-answer {
        padding: 0 20px;
      }
      .page-ok365com__faq-item.active .page-ok365com__faq-answer {
        padding: 15px 20px !important;
      }
      /* Ensure images are responsive */
      .page-ok365com__hero-image,
      .page-ok365com__game-card-image,
      .page-ok365com__provider-logo,
      .page-ok365com__promo-image,
      .page-ok365com__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-ok365com__game-card-image {
        height: 180px; /* Adjust height for smaller screens */
      }
      .page-ok365com__promo-image {
        height: 200px; /* Adjust height for smaller screens */
      }
    }
  