
    .page-3king-apk {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light gray text for contrast */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-3king-apk__section-title,
    .page-3king-apk__main-title {
      text-align: center;
      color: #ffcc00; /* Gold/yellow accent */
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-3king-apk__main-title {
      font-size: 2.5em;
      margin-top: 20px;
    }

    .page-3king-apk__section-title {
      font-size: 2em;
      padding-top: 40px;
    }

    .page-3king-apk__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px 20px 60px; /* 10px top padding as per instruction */
      background: linear-gradient(135deg, #2a003a, #0d0d0d);
      position: relative;
      overflow: hidden;
    }

    .page-3king-apk__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-3king-apk__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-3king-apk__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-bottom: 40px;
    }

    .page-3king-apk__download-button,
    .page-3king-apk__learn-more-button,
    .page-3king-apk__guide-link {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-3king-apk__download-button,
    .page-3king-apk__guide-link {
      background-color: #ffcc00; /* Gold/yellow */
      color: #1a1a1a; /* Dark text for contrast */
    }

    .page-3king-apk__download-button:hover,
    .page-3king-apk__guide-link:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-3king-apk__learn-more-button {
      background-color: transparent;
      color: #ffcc00;
      border: 2px solid #ffcc00;
    }

    .page-3king-apk__learn-more-button:hover {
      background-color: #ffcc00;
      color: #1a1a1a;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-3king-apk__hero-image-wrapper {
      width: 100%;
      max-width: 600px;
      margin-top: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-3king-apk__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-3king-apk__features-section,
    .page-3king-apk__download-guide-section,
    .page-3king-apk__game-showcase-section,
    .page-3king-apk__promotions-section,
    .page-3king-apk__faq-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .page-3king-apk__feature-item {
      background-color: #2c2c2c;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-3king-apk__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-3king-apk__feature-icon {
      width: 200px; /* Minimum 200x200 */
      height: 200px;
      object-fit: contain;
      margin-bottom: 20px;
      background-color: #3a3a3a; /* Ensure background for icon if it's transparent */
      border-radius: 10px;
      padding: 10px;
    }

    .page-3king-apk__feature-title {
      color: #ffcc00;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-3king-apk__feature-description {
      color: #cccccc;
    }

    .page-3king-apk__guide-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-3king-apk__guide-item {
      background-color: #2c2c2c;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      position: relative;
      box-sizing: border-box;
    }

    .page-3king-apk__step-number {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffcc00;
      color: #1a1a1a;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      border: 3px solid #1a1a1a;
    }

    .page-3king-apk__step-title {
      color: #ffcc00;
      font-size: 1.3em;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .page-3king-apk__step-description {
      color: #cccccc;
      margin-bottom: 20px;
    }

    .page-3king-apk__guide-image-wrapper {
      width: 100%;
      max-width: 800px;
      margin: 40px auto 0;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-3king-apk__guide-image {
      max-width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-3king-apk__game-intro {
      text-align: center;
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 40px;
    }

    .page-3king-apk__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-3king-apk__game-category-item {
      background-color: #2c2c2c;
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-3king-apk__game-category-item:hover {
      transform: translateY(-5px);
      background-color: #3a3a3a;
    }

    .page-3king-apk__game-category-image {
      width: 100%;
      max-width: 400px; /* Ensure images are not too small */
      height: auto;
      border-radius: 10px;
      margin-bottom: 15px;
      object-fit: cover;
      min-height: 200px; /* Enforce min height for images */
    }

    .page-3king-apk__game-category-title {
      color: #ffcc00;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-3king-apk__game-category-description {
      color: #cccccc;
    }

    .page-3king-apk__promo-intro {
      text-align: center;
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 40px;
    }

    .page-3king-apk__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-3king-apk__promo-item {
      background-color: #2c2c2c;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      border-left: 5px solid #ffcc00;
      box-sizing: border-box;
    }

    .page-3king-apk__promo-title {
      color: #ffcc00;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-3king-apk__promo-description {
      color: #cccccc;
    }

    .page-3king-apk__faq-container {
      margin-top: 40px;
    }

    .page-3king-apk__faq-item {
      background-color: #2c2c2c;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

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

    .page-3king-apk__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-3king-apk__faq-question-text {
      margin: 0;
      color: #ffcc00;
      font-size: 1em; /* Adjust to fit parent */
      pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-3king-apk__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      color: #ffcc00;
      pointer-events: none; /* Prevent icon from blocking click event */
    }

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

    .page-3king-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #e0e0e0;
      background-color: #2c2c2c;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-3king-apk__faq-answer p {
      margin: 0;
    }

    /* Floating Buttons */
    .page-3king-apk__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-3king-apk__floating-button {
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1em;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .page-3king-apk__register-button {
      background-color: #ffcc00;
      color: #1a1a1a;
    }

    .page-3king-apk__register-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-3king-apk__login-button {
      background-color: #555555;
      color: #f0f0f0;
    }

    .page-3king-apk__login-button:hover {
      background-color: #666666;
      transform: translateY(-2px);
    }


    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-3king-apk__main-title {
        font-size: 2em;
      }
      .page-3king-apk__section-title {
        font-size: 1.8em;
      }
      .page-3king-apk__hero-description {
        font-size: 1em;
      }
    }

    @media (max-width: 768px) {
      .page-3king-apk {
        padding-top: var(--header-offset, 122px) !important; /* Ensure header offset for mobile */
      }

      .page-3king-apk__main-title {
        font-size: 1.8em;
      }
      .page-3king-apk__section-title {
        font-size: 1.6em;
      }
      .page-3king-apk__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-3king-apk__download-button,
      .page-3king-apk__learn-more-button {
        width: 100%;
        max-width: 300px;
      }

      .page-3king-apk__features-grid,
      .page-3king-apk__guide-steps,
      .page-3king-apk__game-categories,
      .page-3king-apk__promo-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List item responsive requirements */
      .page-3king-apk__feature-item,
      .page-3king-apk__guide-item,
      .page-3king-apk__game-category-item,
      .page-3king-apk__promo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }
      .page-3king-apk__feature-description,
      .page-3king-apk__step-description,
      .page-3king-apk__game-category-description,
      .page-3king-apk__promo-description,
      .page-3king-apk__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-3king-apk__hero-image-wrapper,
      .page-3king-apk__guide-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Add some padding to prevent image from touching edges */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-3king-apk__hero-image,
      .page-3king-apk__guide-image,
      .page-3king-apk__feature-icon,
      .page-3king-apk__game-category-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-3king-apk__feature-icon {
        width: 200px !important; /* Maintain minimum size */
        height: 200px !important;
      }
      .page-3king-apk__game-category-image {
        min-height: 150px !important; /* Adjust min height for mobile */
      }

      .page-3king-apk__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
      }
      .page-3king-apk__floating-button {
        flex: 1;
        max-width: 48%;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-3king-apk__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-3king-apk__faq-answer {
        padding: 0 20px;
      }
      .page-3king-apk__faq-item.active .page-3king-apk__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-3king-apk__main-title {
        font-size: 1.5em;
      }
      .page-3king-apk__section-title {
        font-size: 1.4em;
      }
      .page-3king-apk__hero-description {
        font-size: 0.95em;
      }
      .page-3king-apk__floating-button {
        font-size: 0.85em;
        padding: 10px 10px;
      }
    }
  