
    /* CSS reset for this specific page component */
    .page-ok365 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .page-ok365 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f4f7f6;
      max-width: 100%;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-ok365__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-ok365__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-ok365__title {
      color: #0056b3; /* Darker blue for titles */
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-ok365__subtitle {
      color: #007bff; /* Primary blue for subtitles */
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-ok365__text {
      font-size: 1.1em;
      line-height: 1.8;
      margin-bottom: 15px;
      color: #555;
    }

    .page-ok365__button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for action */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      text-align: center;
    }

    .page-ok365__button:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

    .page-ok365__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #ffffff;
      text-align: center;
      padding: 10px 20px 60px 20px; /* Adjusted padding-top for fixed header */
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      margin-bottom: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-ok365__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      margin-bottom: 30px; /* Space between image and text */
      display: block; /* Ensure image is block level for centering */
      min-width: 200px;
      min-height: 200px;
    }

    .page-ok365__hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-ok365__hero-heading {
      font-size: 3.2em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #fff;
    }

    .page-ok365__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-ok365__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #ff4500;
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      animation: pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-ok365__floating-button:hover {
      background-color: #e63900;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    .page-ok365__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-ok365__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-ok365__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-ok365__game-image-wrapper {
      width: 100%;
      max-height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-ok365__game-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover; /* Ensure image covers the area */
      min-width: 200px; /* Minimum width for images */
      min-height: 200px; /* Minimum height for images */
    }

    .page-ok365__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-ok365__game-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-ok365__game-description {
      font-size: 1em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-ok365__game-link {
      display: block;
      background-color: #28a745; /* Green for game action */
      color: #ffffff;
      padding: 10px 15px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-ok365__game-link:hover {
      background-color: #218838;
    }

    .page-ok365__guide-steps {
      list-style: none;
      padding: 0;
    }

    .page-ok365__guide-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      background-color: #f0f8ff; /* Light blue background */
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-ok365__guide-number {
      background-color: #007bff;
      color: #ffffff;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-ok365__guide-content {
      flex-grow: 1;
    }

    .page-ok365__guide-heading {
      color: #0056b3;
      font-size: 1.4em;
      margin-bottom: 5px;
    }

    .page-ok365__guide-text {
      color: #444;
      font-size: 1em;
    }

    .page-ok365__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-ok365__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px; /* Add padding for button */
    }

    .page-ok365__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-ok365__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      min-width: 200px; /* Minimum width for images */
      min-height: 200px; /* Minimum height for images */
    }

    .page-ok365__promo-content {
      padding: 20px;
    }

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

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

    .page-ok365__faq-list {
      margin-top: 30px;
    }

    .page-ok365__faq-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-ok365__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff;
      color: #ffffff;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
      border-radius: 8px; /* Ensure rounded corners */
    }

    .page-ok365__faq-question:hover {
      background-color: #0056b3;
    }

    .page-ok365__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: #ffffff; /* Ensure heading text is white */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-ok365__faq-toggle {
      font-size: 1.5em;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-ok365__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;
      background-color: #f9f9f9;
      color: #333;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

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

    .page-ok365__reason-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-ok365__reason-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-ok365__reason-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-ok365__reason-icon {
      width: 100%; /* Ensure it takes full width of its container */
      max-width: 250px; /* Max width to keep it from stretching too much */
      height: auto;
      margin: 0 auto 15px auto;
      display: block;
      object-fit: contain;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px;
    }

    .page-ok365__reason-title {
      font-size: 1.4em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-ok365__reason-description {
      font-size: 1em;
      color: #666;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ok365__container {
        padding: 15px;
      }

      .page-ok365__hero-section {
        padding: 10px 15px 40px 15px; /* Adjusted padding-top for mobile fixed header */
        border-radius: 0;
      }

      .page-ok365__hero-heading {
        font-size: 2.2em;
      }

      .page-ok365__hero-description {
        font-size: 1.1em;
      }

      .page-ok365__title {
        font-size: 2em;
      }

      .page-ok365__subtitle {
        font-size: 1.5em;
      }

      .page-ok365__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-ok365__game-grid,
      .page-ok365__promo-grid,
      .page-ok365__reason-list {
        grid-template-columns: 1fr;
      }

      .page-ok365__game-card,
      .page-ok365__promo-card,
      .page-ok365__reason-card {
        margin-bottom: 20px;
      }

      .page-ok365__guide-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-ok365__guide-number {
        margin: 0 0 15px 0;
      }

      .page-ok365__guide-heading {
        font-size: 1.3em;
      }

      .page-ok365__guide-text {
        font-size: 0.95em;
      }

      .page-ok365__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-ok365__faq-answer {
        padding: 15px 15px !important; /* Important for responsive padding */
      }
    }

    /* Ensure all images are responsive and not small */
    .page-ok365 img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover; /* default for content images */
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px;
    }

    @media (max-width: 768px) {
      .page-ok365 img {
        max-width: 100% !important;
        height: auto !important;
        min-width: unset !important; /* Allow images to shrink if container is smaller, but still be content images */
        min-height: unset !important;
        width: 100% !important; /* Ensure images fill container on mobile */
      }
      .page-ok365__hero-image {
        min-width: unset !important;
        min-height: unset !important;
      }
      .page-ok365__game-image {
        min-width: unset !important;
        min-height: unset !important;
      }
      .page-ok365__promo-image {
        min-width: unset !important;
        min-height: unset !important;
      }
      .page-ok365__reason-icon {
        min-width: unset !important;
        min-height: unset !important;
      }
    }
  