
    /* Reset & Base Styles */
    .page-0k365-com {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6; /* Light background for contrast */
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-0k365-com__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-0k365-com__section {
      background-color: #ffffff;
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .page-0k365-com__section--dark {
      background-color: #2c3e50; /* Darker background for contrast */
      color: #ecf0f1;
    }

    .page-0k365-com__section-title {
      text-align: center;
      color: #2980b9; /* Stronger blue for titles */
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-0k365-com__section--dark .page-0k365-com__section-title {
      color: #f1c40f; /* Yellow for titles on dark background */
    }

    .page-0k365-com__text-center {
      text-align: center;
    }

    /* Hero Section */
    .page-0k365-com__hero-section {
      position: relative;
      background-color: #0d47a1; /* Deep blue for hero */
      color: #ffffff;
      padding: 80px 20px;
      text-align: center;
      overflow: hidden;
      border-radius: 0 0 20px 20px;
      padding-top: 10px; /* Small decorative top padding as body handles main offset */
    }

    .page-0k365-com__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-0k365-com__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-0k365-com__hero-title {
      font-size: 3.8em;
      margin-bottom: 15px;
      color: #f1c40f; /* Yellow for main title */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-0k365-com__hero-subtitle {
      font-size: 1.8em;
      margin-bottom: 25px;
      font-weight: normal;
    }

    .page-0k365-com__promotion-text {
      font-size: 1.3em;
      font-weight: bold;
      color: #2ecc71; /* Green for promotion text */
      background-color: rgba(0, 0, 0, 0.4);
      padding: 10px 20px;
      border-radius: 8px;
      display: inline-block;
      margin-top: 20px;
    }

    /* Floating Buttons */
    .page-0k365-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-0k365-com__floating-button {
      background-color: #e74c3c; /* Red for action */
      color: #ffffff;
      border: none;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 120px; /* Ensure button width */
      box-sizing: border-box;
    }

    .page-0k365-com__floating-button:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

    .page-0k365-com__floating-button--login {
      background-color: #28a745; /* Green for login */
    }

    .page-0k365-com__floating-button--login:hover {
      background-color: #218838;
    }

    /* Product Display / Game Categories */
    .page-0k365-com__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center; /* Center items in grid */
      padding: 0; /* Ensure no extra padding for grid container */
      list-style: none; /* Remove list style */
    }

    .page-0k365-com__game-item {
      background-color: #fefefe;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* Ensure full width in grid item */
    }

    .page-0k365-com__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-0k365-com__game-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-0k365-com__game-title {
      font-size: 1.4em;
      color: #2c3e50;
      padding: 15px 10px;
      margin: 0;
      font-weight: bold;
    }

    /* Features Section */
    .page-0k365-com__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
    }

    .page-0k365-com__feature-item {
      background-color: #ecf0f1;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-0k365-com__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%; /* Responsive image */
      object-fit: contain;
    }

    .page-0k365-com__feature-title {
      font-size: 1.5em;
      color: #2980b9;
      margin-bottom: 10px;
    }

    .page-0k365-com__feature-description {
      color: #555;
    }

    /* Payment Methods & Game Providers */
    .page-0k365-com__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
      list-style: none;
      padding: 0;
    }

    .page-0k365-com__logo-item {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      box-sizing: border-box;
      width: 100%; /* Ensure full width in grid item */
    }

    .page-0k365-com__logo-image {
      max-width: 120px;
      height: auto;
      object-fit: contain;
      max-height: 60px; /* Limit height for uniform display */
      display: block;
      margin: 0 auto;
    }

    /* FAQ Section */
    .page-0k365-com__faq-list {
      list-style: none;
      padding: 0;
    }

    .page-0k365-com__faq-item {
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-0k365-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.25em;
      font-weight: bold;
      color: #34495e;
      cursor: pointer;
      user-select: none;
      background-color: #f9f9f9;
      transition: background-color 0.3s ease;
    }

    .page-0k365-com__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-0k365-com__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-0k365-com__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: #2980b9;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
      transition: transform 0.3s ease;
    }

    .page-0k365-com__faq-item.active .page-0k365-com__faq-toggle {
      transform: rotate(45deg); /* Rotate for 'x' effect, or just change text */
    }

    .page-0k365-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      background-color: #ffffff;
    }

    .page-0k365-com__faq-item.active .page-0k365-com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to cover all content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-0k365-com__faq-answer p {
      margin-top: 0;
      margin-bottom: 1em;
    }

    /* General text styles */
    .page-0k365-com p {
      margin-bottom: 1em;
      color: #444;
    }
    .page-0k365-com strong {
        color: #e74c3c; /* Red for emphasis */
    }

    .page-0k365-com__social-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }

    .page-0k365-com__social-list li {
        background-color: #f1c40f;
        color: #2c3e50;
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: bold;
        box-sizing: border-box;
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-0k365-com__hero-title {
        font-size: 3em;
      }
      .page-0k365-com__hero-subtitle {
        font-size: 1.5em;
      }
      .page-0k365-com__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-0k365-com__container {
        padding: 15px;
      }
      .page-0k365-com__section {
        padding: 20px;
      }
      .page-0k365-com__hero-section {
        padding: 60px 15px;
      }
      .page-0k365-com__hero-title {
        font-size: 2.5em;
      }
      .page-0k365-com__hero-subtitle {
        font-size: 1.2em;
      }
      .page-0k365-com__promotion-text {
        font-size: 1.1em;
        padding: 8px 15px;
      }

      /* Floating buttons for mobile */
      .page-0k365-com__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: space-around;
        gap: 10px;
      }

      .page-0k365-com__floating-button {
        flex: 1;
        padding: 12px 15px;
        font-size: 1.1em;
      }

      /* Game Grid for mobile */
      .page-0k365-com__game-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }
      .page-0k365-com__game-item {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-0k365-com__game-title {
        font-size: 1.2em;
      }

      /* Feature List for mobile */
      .page-0k365-com__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-0k365-com__feature-item {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-0k365-com__feature-title {
        font-size: 1.3em;
      }
      .page-0k365-com__feature-icon {
        width: 80px;
        height: 80px;
      }

      /* Logo Grid for mobile */
      .page-0k365-com__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }
      .page-0k365-com__logo-item {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-0k365-com__logo-image {
        max-width: 100px;
        max-height: 50px;
      }

      /* FAQ for mobile */
      .page-0k365-com__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-0k365-com__faq-answer {
        padding: 0 20px;
      }
      .page-0k365-com__faq-item.active .page-0k365-com__faq-answer {
        padding: 15px 20px !important;
      }
      .page-0k365-com__faq-toggle {
        font-size: 1.5em;
      }

      /* General list item responsive rules */
      .page-0k365-com ul, .page-0k365-com ol {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }
      .page-0k365-com ul li, .page-0k365-com ol li {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 10px !important; /* Adjust padding as needed */
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
      .page-0k365-com img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-0k365-com div[class*="image-container"] { /* Generic container for images */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-0k365-com__hero-title {
        font-size: 2em;
      }
      .page-0k365-com__hero-subtitle {
        font-size: 1em;
      }
      .page-0k365-com__floating-button {
        font-size: 1em;
        padding: 10px 12px;
      }
    }
  