/* ===== Home critical CSS (moved from home-index inline) ===== */
:root {
  --bg-color: #fafafa;
  --header-color: linear-gradient(135deg, #0b1a7c, #4781f5);
}

body.dark-mode {
  --bg-color: #0f172a;
  --header-color: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.6));
  background-color: #0f172a;
  color: #fff;
}

body.light-mode {
  background-color: #fff;
  color: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

header {
  background: var(--header-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 14px;
  height: 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo_main_menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text_main_menu {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.nav-links_main_menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.right-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.ratio-banner-section {
  margin: 0;
  aspect-ratio: 4 / 1;
}

.ratio-banner-container {
  padding: 0;
  display: flex;
  align-items: center;
}

.ratio-banner-content {
  width: 100%;
  display: flex;
  justify-content: center;
}

.promotion-slider-container {
  position: relative;
  width: 100%;
  margin: 5px 10px 15px;
  padding: 0;
}

.promotion-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 4 / 1;
  box-sizing: border-box;
}

.promotion-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.promotion-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.promotion-slide a,
.promotion-slide-image {
  width: 100%;
  height: 100%;
  display: block;
}

.promotion-slide-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1254 / 304;
  object-fit: cover;
  border-radius: 14px;
}

.tab-card4 {
  margin: 8px 10px 0;
}

.tab-header4 {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.app-list_test {
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 120px;
}

.app-itemt-test {
  display: flex;
  align-items: center;
  margin: 7px 4px;
  padding: 5px;
  border-radius: 15px;
  min-height: 84px;
}

.app-icon_never-copyy-container {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
}

.app-icon_never-copyy {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .nav-links_main_menu {
    display: none !important;
  }

  .menu-toggle_main_menu {
    display: flex !important;
  }

  header {
    padding: 8px 16px;
  }

  .logo-text_main_menu {
    font-size: 20px;
    font-weight: 800;
  }

  .app-icon_never-copyy-container {
    width: 65px;
    height: 65px;
  }
}
/* ===== End home critical CSS ===== */

.search-section {
    margin-bottom: 6px;
    padding: 10px 24px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #f8fafc;
    color: #0f172a;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* ✅ Mobile responsive fix */
  @media (max-width: 768px) {
    .search-section {
      padding-inline: 16px;  /* Left & right padding */
      padding-block: 10px;   /* Top & bottom padding same as above */
    }

    /* Ensure menu toggle is visible on mobile */
    .menu-toggle_main_menu {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
      position: relative !important;
      z-index: 1000 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    /* Hide desktop navigation on mobile */
    .nav-links_main_menu {
      display: none !important;
    }

    /* Mobile header adjustments */
    header {
      padding: 8px 16px;
    }

    .logo-text_main_menu {
      font-size: 20px;
      font-weight: 800;
    }

    .logo-icon_main_menu {
      width: 36px;
      height: 36px;
    }

    .logo-icon_main_menu i {
      font-size: 16px;
    }

    /* Ensure right controls are properly spaced */
    .right-controls {
      display: flex !important;
      align-items: center !important;
      gap: 4px !important;
      margin-left: auto !important;
    }
  }
  
  /* Search Toggle Button */
  .search-toggle-btn {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.15), rgba(142, 84, 233, 0.15));
    border: 1px solid rgba(71, 118, 230, 0.25);
    border-radius: 10px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    margin-right: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .search-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .search-toggle-btn:hover::before {
    left: 100%;
  }

  .search-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.25), rgba(142, 84, 233, 0.25));
    border-color: rgba(71, 118, 230, 0.4);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(71, 118, 230, 0.3);
  }

  .search-toggle-btn i {
    font-size: 14px;
    position: relative;
    z-index: 1;
  }

  /* Dark Mode Search Toggle */
  body.dark-mode .search-toggle-btn {
    background: linear-gradient(135deg, rgba(120, 197, 255, 0.15), rgba(168, 230, 255, 0.15));
    border: 1px solid rgba(120, 197, 255, 0.25);
  }

  body.dark-mode .search-toggle-btn:hover {
    background: linear-gradient(135deg, rgba(120, 197, 255, 0.25), rgba(168, 230, 255, 0.25));
    border-color: rgba(120, 197, 255, 0.4);
    box-shadow: 0 4px 15px rgba(120, 197, 255, 0.3);
  }

  /* Menu Toggle Button Styles */
  .menu-toggle_main_menu {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.15), rgba(142, 84, 233, 0.15));
    border: 1px solid rgba(71, 118, 230, 0.25);
    border-radius: 10px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 100;
    margin-right: 0;
  }

  .menu-toggle_main_menu:hover {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.25), rgba(142, 84, 233, 0.25));
    border-color: rgba(71, 118, 230, 0.4);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(71, 118, 230, 0.3);
  }

  .menu-toggle_main_menu i {
    font-size: 14px;
    position: relative;
    z-index: 1;
  }

  /* Dark Mode Menu Toggle */
  body.dark-mode .menu-toggle_main_menu {
    background: linear-gradient(135deg, rgba(120, 197, 255, 0.15), rgba(168, 230, 255, 0.15));
    border: 1px solid rgba(120, 197, 255, 0.25);
  }

  body.dark-mode .menu-toggle_main_menu:hover {
    background: linear-gradient(135deg, rgba(120, 197, 255, 0.25), rgba(168, 230, 255, 0.25));
    border-color: rgba(120, 197, 255, 0.4);
    box-shadow: 0 4px 15px rgba(120, 197, 255, 0.3);
  }

  /* Dark Mode Toggle Spacing */
  .toggle.celestial-toggle {
    margin-right: 4px;
  }

  /* Mobile Menu Styles */
  .mobile-menu-container_main_menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 80% !important;
    max-width: 350px !important;
    height: 100vh !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95)) !important;
    backdrop-filter: blur(25px) !important;
    border-left: 2px solid rgba(71, 118, 230, 0.3) !important;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.7), inset 0 0 50px rgba(71, 118, 230, 0.1) !important;
    z-index: 2000 !important;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow-y: auto !important;
  }

  .mobile-menu-container_main_menu.active {
    right: 0 !important;
  }

  /* Mobile Menu Header */
  .mobile-menu-container_main_menu > div:first-child {
    flex: 1 !important;
  }

  .mobile-menu-container_main_menu .logo-text_main_menu {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
  }

  /* Close Button */
  .close-menu_main_menu {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.15), rgba(142, 84, 233, 0.15)) !important;
    border: 1px solid rgba(71, 118, 230, 0.25) !important;
    border-radius: 10px !important;
    padding: 8px 10px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(15px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .close-menu_main_menu:hover {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.25), rgba(142, 84, 233, 0.25)) !important;
    border-color: rgba(71, 118, 230, 0.4) !important;
    color: rgba(255, 255, 255, 1) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(71, 118, 230, 0.3) !important;
  }

  .close-menu_main_menu i {
    font-size: 14px !important;
  }

  /* Logo Section */
  .mobile-menu-container_main_menu .logo_main_menu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 12px !important;
    margin: 10px 0 !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .mobile-menu-container_main_menu .logo-icon_main_menu {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    border-radius: 12px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
  }

  .mobile-menu-container_main_menu .logo-icon_main_menu i {
    color: white !important;
    font-size: 20px !important;
  }

  .mobile-menu-container_main_menu .logo-text_main_menu {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: left !important;
  }

  /* Mobile Search Section */
  .mobile-search-section {
    margin: 15px 0 !important;
  }

  .mobile-search-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 15px !important;
    backdrop-filter: blur(10px) !important;
  }

  .mobile-search-bar {
    display: flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease !important;
  }

  .mobile-search-bar:hover {
    border-color: rgba(71, 118, 230, 0.3) !important;
    box-shadow: 0 0 15px rgba(71, 118, 230, 0.2) !important;
  }

  .mobile-search-bar:focus-within {
    border-color: rgba(71, 118, 230, 0.5) !important;
    box-shadow: 0 0 20px rgba(71, 118, 230, 0.3) !important;
  }

  .mobile-search-icon {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px !important;
    margin-right: 10px !important;
  }

  .mobile-search-input {
    flex: 1 !important;
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    outline: none !important;
  }

  .mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
  }

  .mobile-search-btn {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    cursor: pointer !important;
    padding: 4px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
  }

  .mobile-search-btn:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .mobile-search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }

  .mobile-suggestion-tag {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.2), rgba(142, 84, 233, 0.2));
    border: 1px solid rgba(71, 118, 230, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .mobile-suggestion-tag:hover {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.3), rgba(142, 84, 233, 0.3));
    border-color: rgba(71, 118, 230, 0.5);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 118, 230, 0.3);
  }

  .mobile-search-results {
    margin-top: 15px !important;
    max-height: 120px !important;
    overflow-y: auto !important;
  }

  .mobile-results-table {
    background: transparent !important;
    border-radius: 12px !important;
    overflow: visible !important;
    border: none !important;
    padding: 0 !important;
  }

  /* Mobile Search Results Styling */
  .mobile-results-table .app-result-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    background: transparent !important;
  }

  .mobile-results-table .app-result-item:last-child {
    border-bottom: none !important;
  }

  .mobile-results-table .app-result-item:hover {
    background: rgba(71, 118, 230, 0.1) !important;
    transform: translateX(5px) !important;
  }

  .mobile-results-table .app-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
  }

  .mobile-results-table .app-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .mobile-results-table .app-info {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .mobile-results-table .app-name {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    margin-bottom: 4px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .mobile-results-table .app-category {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 12px !important;
    margin-bottom: 2px !important;
  }

  .mobile-results-table .app-description {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .mobile-results-table .app-stats {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 4px !important;
  }

  .mobile-results-table .app-rating {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 11px !important;
  }

  .mobile-results-table .app-rating i {
    color: #ffd700 !important;
    font-size: 10px !important;
  }

  .mobile-results-table .app-downloads {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 11px !important;
  }

  /* Compact Mobile App Result */
  .mobile-app-result {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.1)) !important;
    border: 1px solid rgba(71, 118, 230, 0.2) !important;
    border-radius: 12px !important;
    margin: 8px 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
  }

  .mobile-app-result:hover {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.2), rgba(142, 84, 233, 0.2)) !important;
    border-color: rgba(71, 118, 230, 0.4) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(71, 118, 230, 0.3) !important;
  }

  .mobile-app-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .mobile-app-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .mobile-app-info {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .mobile-app-name {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    margin-bottom: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .mobile-app-category {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .mobile-app-arrow {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 12px !important;
    transition: all 0.3s ease !important;
  }

  .mobile-app-result:hover .mobile-app-arrow {
    color: rgba(255, 255, 255, 0.8) !important;
    transform: translateX(2px) !important;
  }

  /* Search Box */
  .search-box_main_menu {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .search-box_main_menu::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .search-box_main_menu:focus {
    outline: none;
    border-color: rgba(71, 118, 230, 0.5);
    box-shadow: 0 0 0 3px rgba(71, 118, 230, 0.1);
  }

  /* Navigation Links */
  .mobile-nav_main_menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 20px 0 !important;
  }

  .mobile-nav_main_menu a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.1)) !important;
    border: 1px solid rgba(71, 118, 230, 0.2) !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
  }

  .mobile-nav_main_menu a:hover {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.2), rgba(142, 84, 233, 0.2)) !important;
    border-color: rgba(71, 118, 230, 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(71, 118, 230, 0.3) !important;
  }

  .icon-container_main_menu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)) !important;
    border-radius: 10px !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(10px) !important;
  }

  .icon-container_main_menu i {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px !important;
  }

  /* Telegram Button */
  .telegram-btn_main_menu {
    background: linear-gradient(135deg, #0088cc, #00a8ff, #0099e6) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    padding: 12px 12px !important;
    color: white !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    margin-top: auto !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 50px !important;
  }

  .telegram-btn_main_menu::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.6s ease !important;
  }

  .telegram-btn_main_menu:hover::before {
    left: 100% !important;
  }

  .telegram-btn_main_menu:hover {
    background: linear-gradient(135deg, #0077b3, #0099e6, #0088cc) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 12px 30px rgba(0, 136, 204, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }

  .telegram-icon-wrapper {
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
  }

  .telegram-btn_main_menu:hover .telegram-icon-wrapper {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1) rotate(5deg) !important;
  }

  .telegram-btn_main_menu i {
    font-size: 18px !important;
    transition: all 0.3s ease !important;
  }

  .telegram-btn_main_menu:hover i {
    transform: scale(1.1) !important;
  }

  .telegram-text {
    text-align: center !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    padding: 0 3px !important;
  }

  .telegram-arrow {
    font-size: 18px !important;
    font-weight: bold !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
  }

  .telegram-btn_main_menu:hover .telegram-arrow {
    opacity: 1 !important;
    transform: translateX(3px) !important;
  }

  /* Overlay */
  .overlay_main_menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 1999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }

  .overlay_main_menu.active {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Desktop Navigation Styles */
  .nav-links_main_menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 40px;
  }

  .nav-links_main_menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700 !important;
    padding: 12px 20px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-links_main_menu a i {
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
  }

  .nav-links_main_menu a:hover {
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.1));
    border-color: rgba(71, 118, 230, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(71, 118, 230, 0.2);
    font-weight: 700 !important;
    padding: 12px 20px !important;
  }

  .nav-links_main_menu a:hover i {
    opacity: 1;
    transform: scale(1.1);
  }

  .nav-links_main_menu a::before {
    display: none;
  }

  .nav-links_main_menu a:hover::before {
    display: none;
  }

  .nav-links_main_menu a.active {
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.15), rgba(142, 84, 233, 0.15));
    border-color: rgba(71, 118, 230, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 700 !important;
    padding: 12px 20px !important;
  }

  .nav-links_main_menu a.active i {
    opacity: 1;
    transform: scale(1.05);
  }

  .nav-links_main_menu a.active::before {
    display: none;
  }

  .nav-more_main_menu {
    position: relative;
    display: flex;
    align-items: center;
  }

  .nav-more-toggle_main_menu {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 700 !important;
    padding: 12px 20px !important;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .nav-more-toggle_main_menu:hover,
  .nav-more_main_menu.is-open .nav-more-toggle_main_menu {
    color: rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.1));
    border-color: rgba(71, 118, 230, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(71, 118, 230, 0.2);
  }

  .nav-more-chevron_main_menu {
    font-size: 12px;
    transition: transform 0.25s ease;
  }

  .nav-more_main_menu.is-open .nav-more-chevron_main_menu,
  .nav-more_main_menu:hover .nav-more-chevron_main_menu {
    transform: rotate(180deg);
  }

  .nav-more-dropdown_main_menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    padding: 8px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(12, 17, 28, 0.98), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(71, 118, 230, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 1200;
  }

  .nav-more_main_menu:hover .nav-more-dropdown_main_menu,
  .nav-more_main_menu.is-open .nav-more-dropdown_main_menu,
  .nav-more_main_menu:focus-within .nav-more-dropdown_main_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-more-dropdown_main_menu a {
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    border: 1px solid transparent !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .nav-more-dropdown_main_menu a:hover {
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.2), rgba(142, 84, 233, 0.15)) !important;
    border-color: rgba(71, 118, 230, 0.3) !important;
    transform: translateX(2px) !important;
  }

  /* Header Container Styles */
  header {
    background: linear-gradient(135deg, rgba(12, 17, 28, 0.95), rgba(15, 23, 42, 0.95));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo Styles */
  .logo_main_menu {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo-icon_main_menu {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
  }

  .logo-icon_main_menu:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  }

  .logo-icon_main_menu i {
    color: white;
    font-size: 18px;
  }

  .logo-text_main_menu {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
  }

  /* Right Controls Container */
  .right-controls {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  /* Search Section Animation — light mode default */
  .search-section {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .search-section.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }

  /* Search Results Styling — light mode */
  .search-results {
    margin-top: 15px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  }

  .results-table {
    display: grid;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
  }

  .app-result-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 8px;
  }

  .app-result-item:hover {
    background: #f8fafc;
    border-color: #4776e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(71, 118, 230, 0.15);
  }

  .app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-right: 16px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .app-info {
    flex: 1;
  }

  .app-name {
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .app-category {
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
  }

  .app-description {
    color: #64748b;
    font-size: 12px;
    line-height: 1.3;
  }

  .app-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 16px;
  }

  .app-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
  }

  .app-rating i {
    color: #eab308;
    font-size: 14px;
  }

  .app-downloads {
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
  }

  /* Mobile menu lazy-search results */
  .search-results_mobile_menu {
    background: #ffffff;
    border: 1px solid #e2e8f0;
  }

  body.dark-mode .search-results_mobile_menu {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
  }

  body.dark-mode .search-results_mobile_menu .app-name {
    color: #f1f5f9;
  }

  body.dark-mode .search-results_mobile_menu .app-category,
  body.dark-mode .search-results_mobile_menu .app-downloads {
    color: #94a3b8;
  }

  body.dark-mode .search-results_mobile_menu .app-rating {
    color: #cbd5e1;
  }

  body.dark-mode .search-results_mobile_menu .app-result-item {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
  }

  body.dark-mode .search-results_mobile_menu .app-result-item:hover {
    background: rgba(51, 65, 85, 0.75);
    border-color: rgba(120, 197, 255, 0.35);
  }

  /* Dark Mode Search Results */
  body.dark-mode .search-results {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  }

  body.dark-mode .app-result-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.75));
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.dark-mode .app-result-item:hover {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.85), rgba(30, 41, 59, 0.8));
    border-color: rgba(120, 197, 255, 0.35);
    box-shadow: 0 8px 25px rgba(120, 197, 255, 0.12);
  }

  body.dark-mode .app-name {
    color: #f8fafc;
  }

  body.dark-mode .app-category,
  body.dark-mode .app-description {
    color: #94a3b8;
  }

  body.dark-mode .app-rating {
    color: #e2e8f0;
  }

  body.dark-mode .app-downloads {
    color: #94a3b8;
  }
    
    
        /* Futuristic AI Assistant - iOS 26 Liquid Glass Aesthetic */
        .liquid-glass {
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.12);
            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            --glass-blur: blur(20px);
            --liquid-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            --depth-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            --floating-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            --text-primary: rgba(255, 255, 255, 0.95);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --accent-glow: rgba(100, 200, 255, 0.3);
            --border-radius: 24px;
            --border-radius-small: 16px;
        }

        body.dark-mode .liquid-glass {
            --glass-bg: rgba(0, 0, 0, 0.15);
            --glass-border: rgba(255, 255, 255, 0.08);
            --liquid-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            --text-primary: rgba(255, 255, 255, 0.95);
            --text-secondary: rgba(255, 255, 255, 0.6);
            --accent-glow: rgba(120, 180, 255, 0.4);
        }

        /* Dark Mode Styles */
        body.dark-mode .jiohotstar-description {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #e0e0e0;
        }

        body.dark-mode .jiohotstar-description h2 {
            background: linear-gradient(135deg, #78c5ff, #a8e6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .jiohotstar-description p,
        body.dark-mode .jiohotstar-description li {
            color: #cbd5e1;
        }

        body.dark-mode .jiohotstar-description li:hover {
            color: #f1f5f9;
        }

        /* Dark mode for Read More */
        body.dark-mode .about-content::after {
            background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
        }

        body.dark-mode .read-more-btn {
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            box-shadow: 0 4px 16px rgba(96, 165, 250, 0.3);
        }

        body.dark-mode .read-more-btn:hover {
            box-shadow: 0 2px 6px rgba(96, 165, 250, 0.08);
        }

        body.dark-mode .read-more-btn.expanded {
            background: linear-gradient(135deg, #a78bfa, #60a5fa);
        }

        body.dark-mode .playstore-info-section {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .playstore-info-section h2 {
            background: linear-gradient(135deg, #78c5ff, #a8e6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .playstore-info-section .app-name {
            color: #f1f5f9;
        }

        /* Dark mode for enhanced app info */
        body.dark-mode .app-header-info {
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.15), rgba(142, 84, 233, 0.15));
            border: 1px solid rgba(71, 118, 230, 0.3);
        }

        body.dark-mode .app-logo-container {
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            box-shadow: 0 8px 24px rgba(71, 118, 230, 0.4);
        }

        body.dark-mode .app-name {
            color: #f1f5f9;
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .app-category {
            color: #cbd5e1;
        }

        body.dark-mode .app-updated {
            color: #94a3b8;
        }

        body.dark-mode .playstore-info-section .app-details,
        body.dark-mode .playstore-info-section .app-meta {
            color: #94a3b8;
        }

        body.dark-mode .playstore-info-section .description,
        body.dark-mode .playstore-info-section .whats-new {
            color: #cbd5e1;
        }

        body.dark-mode .playstore-info-section .app-specs {
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .playstore-info-section .app-specs div {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .playstore-info-section .app-specs strong {
            color: #f1f5f9;
        }

        body.dark-mode .playstore-info-section .app-specs span {
            color: #94a3b8;
        }

        body.dark-mode .playstore-info-section .description,
        body.dark-mode .playstore-info-section .whats-new {
            background: rgba(30, 41, 59, 0.6);
            border-left: 4px solid #60a5fa;
        }

        body.dark-mode .playstore-info-section .whats-new {
            border-left: 4px solid #818cf8;
        }

        body.dark-mode .playstore-info-section .whats-new strong {
            color: #f1f5f9;
        }

        body.dark-mode .playstore-info-section .whats-new li {
            color: #cbd5e1;
        }

        body.dark-mode .playstore-info-section .whats-new li::before {
            color: #60a5fa;
        }

        /* Dark mode for standalone description and whats-new */
        body.dark-mode .description {
            color: #cbd5e1;
            background: transparent;
            border-left: 4px solid #60a5fa;
        }

        body.dark-mode .whats-new {
            color: #cbd5e1;
            background: transparent;
            border-left: 4px solid #818cf8;
        }

        body.dark-mode .whats-new strong {
            color: #f1f5f9;
        }

        body.dark-mode .whats-new li {
            color: #cbd5e1;
        }

        body.dark-mode .whats-new li {
            color: #cbd5e1;
        }

        body.dark-mode .whats-new li::before {
            color: #60a5fa;
        }

        body.dark-mode .whats-new-title {
            background: linear-gradient(135deg, #78c5ff, #a8e6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* What's New Section in About */
        .whats-new-section {
            margin-top: 32px;
            padding: 24px;
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.08), rgba(142, 84, 233, 0.08));
            border: 1px solid rgba(71, 118, 230, 0.15);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(71, 118, 230, 0.1);
        }

        .whats-new-list {
            list-style: none;
            padding: 0;
            margin: 16px 0 0 0;
        }

        .whats-new-list li {
            position: relative;
            padding: 12px 0 12px 24px;
            margin: 8px 0;
            font-size: 0.85rem;
            line-height: 1.5;
            color: #374151;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            transition: all 0.2s ease;
        }

        .whats-new-list li:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(71, 118, 230, 0.04);
            background: #f8fafc;
        }

        .whats-new-list li::before {
            content: '★';
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: #4776E6;
            background: none;
            border-radius: 0;
        }

        body.dark-mode .whats-new-section {
            background: linear-gradient(135deg, rgba(120, 197, 255, 0.08), rgba(168, 230, 255, 0.08));
            border: 1px solid rgba(120, 197, 255, 0.15);
            box-shadow: 0 8px 32px rgba(120, 197, 255, 0.1);
        }

        body.dark-mode .whats-new-list li {
            color: #cbd5e1;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .whats-new-list li::before {
            color: #78c5ff;
        }

        body.dark-mode .whats-new-list li:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(120, 197, 255, 0.04);
            background: rgba(0, 0, 0, 0.35);
        }



        /* Search Section — light mode default */
        .search-section {
            padding: 10px;
            background: #f1f5f9;
            border-bottom: 1px solid #e2e8f0;
        }

          .search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  }

        .search-bar {
            display: flex;
            align-items: center;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 12px 18px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }

        .search-bar:hover {
            border-color: #4776E6;
            box-shadow: 0 16px 50px rgba(71, 118, 230, 0.15);
        }

        .search-bar:focus-within {
            border-color: #4776E6;
            box-shadow: 0 20px 60px rgba(71, 118, 230, 0.2);
            transform: translateY(-2px);
        }

        .search-icon {
            color: #6b7280;
            margin-right: 12px;
            font-size: 16px;
        }

        .search-input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: #000000;
            font-size: 16px;
            font-weight: 400;
        }

        .search-input::placeholder {
            color: #6b7280;
        }

        .search-btn {
            background: #4776E6;
            border: none;
            border-radius: 12px;
            padding: 8px 12px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 10px;
        }

        .search-btn:hover {
            background: #3b5bdb;
            transform: scale(1.05);
        }

        .search-suggestions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .suggestion-tag {
            padding: 8px 16px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            color: #000000;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .suggestion-tag:hover {
            background: #f8fafc;
            border-color: #4776E6;
            color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(71, 118, 230, 0.2);
        }

        /* Dark Mode Search Section — no outer “white line” border */
        body.dark-mode .search-section {
            background: linear-gradient(180deg, #0b1120 0%, #0f172a 100%);
            border: none;
            border-bottom: none;
            outline: none;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
        }

        body.dark-mode .search-container {
            background: linear-gradient(135deg, #1e3a8a, #3730a3);
            border: none;
            outline: none;
            box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
        }

        body.dark-mode .search-bar {
            background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        body.dark-mode .search-input {
            color: #ffffff;
        }

        body.dark-mode .search-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        body.dark-mode .search-icon {
            color: rgba(255, 255, 255, 0.7);
        }

        body.dark-mode .search-bar:hover {
            border-color: #78c5ff;
            box-shadow: 0 16px 50px rgba(120, 197, 255, 0.15);
        }

        body.dark-mode .search-bar:focus-within {
            border-color: #78c5ff;
            box-shadow: 0 20px 60px rgba(120, 197, 255, 0.2);
        }

        body.dark-mode .search-btn {
            background: #78c5ff;
        }

        body.dark-mode .search-btn:hover {
            background: #60a5fa;
        }

        body.dark-mode .suggestion-tag {
            background: linear-gradient(135deg, #1e3a8a, #3730a3);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #ffffff;
        }

        body.dark-mode .suggestion-tag:hover {
            background: linear-gradient(135deg, #1e40af, #4338ca);
            border-color: rgba(255, 255, 255, 0.5);
            color: #ffffff;
            box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
        }

        /* About Section Styling */
        .about-section {
            margin-top: 32px;
            padding: 24px;
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(71, 118, 230, 0.1);
        }

        .about-title {
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.3rem;
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        body.dark-mode .about-section {
            background: #1f2937;
            border: 1px solid #374151;
            box-shadow: 0 8px 32px rgba(120, 197, 255, 0.1);
        }

        body.dark-mode .about-title {
            background: linear-gradient(135deg, #78c5ff, #a8e6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Standalone whats-new list styles */
        .whats-new ul {
            margin: 12px 0 0 0;
            padding-left: 0;
        }

        .whats-new li {
            margin-bottom: 12px;
            color: #374151;
            padding-left: 24px;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .whats-new li:last-child {
            margin-bottom: 0;
        }

        .whats-new li::before {
            content: '';
            position: absolute;
            left: 0;
            font-size: 0.9rem;
        }

        /* Dark mode for enhanced categories and tags */
        body.dark-mode .related-categories-section {
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.04), rgba(142, 84, 233, 0.04));
            border: 1px solid rgba(71, 118, 230, 0.12);
        }

        body.dark-mode .categories-title {
            background: linear-gradient(135deg, #78c5ff, #a8e6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .category-tag {
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.06), rgba(142, 84, 233, 0.06));
            border: 1px solid rgba(71, 118, 230, 0.15);
            color: #78c5ff;
        }

        body.dark-mode .category-tag:hover {
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.12), rgba(142, 84, 233, 0.12));
            border-color: rgba(71, 118, 230, 0.25);
            box-shadow: 0 4px 16px rgba(71, 118, 230, 0.15);
        }

        body.dark-mode .related-tags-section {
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.04), rgba(142, 84, 233, 0.04));
            border: 1px solid rgba(71, 118, 230, 0.12);
        }

        body.dark-mode .tags-title {
            background: linear-gradient(135deg, #78c5ff, #a8e6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.dark-mode .tag-link {
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.06), rgba(142, 84, 233, 0.06));
            border: 1px solid rgba(71, 118, 230, 0.15);
            color: #78c5ff;
        }

        body.dark-mode .tag-link:hover {
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.12), rgba(142, 84, 233, 0.12));
            border-color: rgba(71, 118, 230, 0.25);
            box-shadow: 0 4px 16px rgba(71, 118, 230, 0.15);
        }

        .jiohotstar-description {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.15);
            padding: 32px 28px 24px 28px;
            margin: 40px auto 24px auto;
            max-width: 700px;
            font-size: 1.08rem;
            color: #1b1b1b;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .jiohotstar-description::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 24px;
            opacity: 0.6;
            z-index: -1;
        }

        .jiohotstar-description:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.15);
            border-color: rgba(100, 200, 255, 0.3);
        }

        .jiohotstar-description h2 {
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .jiohotstar-description p {
            margin-bottom: 16px;
            line-height: 1.8;
            color: #374151;
        }

        .jiohotstar-description ul {
            padding-left: 24px;
            margin: 0;
        }

        .jiohotstar-description li {
            margin-bottom: 12px;
            color: #374151;
            font-size: 1.05rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .jiohotstar-description li:hover {
            color: #1b1b1b;
        }

        .jiohotstar-description li::before {
            content: '✦';
            color: #4776E6;
            font-weight: bold;
            display: inline-block;
            width: 1.2em;
            margin-left: -1.2em;
            text-shadow: 0 0 8px rgba(71, 118, 230, 0.5);
        }

        @media (max-width: 600px) {
            .jiohotstar-description {
                padding: 20px 20px 16px 20px;
                font-size: 1rem;
                margin: 24px 16px 16px 16px;
            }

            .jiohotstar-description h2 {
                font-size: 1.4rem;
            }
        }

        .playstore-info-section {
            max-width: 700px;
            margin: 16px auto 32px auto;
            padding: 32px 40px;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (max-width: 768px) {
            .playstore-info-section {
                margin: 24px 16px 16px 16px;
                padding: 24px 20px;
            }
            
            .main-screenshot {
                margin: 0px 16px 0px 16px !important;
                padding: 0px !important;
            }
        }
/* 💻 Laptop screens (between 769px and 1366px) */
@media (min-width: 769px) and (max-width: 2366px) {
  

  .main-screenshot {
    margin: 0px 202px !important;
    padding: 0px 202px !important;
  }
}
        .playstore-info-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 24px;
            opacity: 0.4;
            z-index: -1;
        }

        .playstore-info-section:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.15);
            border-color: rgba(100, 200, 255, 0.3);
        }

        .playstore-info-section h2 {
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.5rem;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        /* Enhanced App Information Header */
        .app-info-title {
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.5rem;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-align: center;
        }

        .app-header-info {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.1), rgba(142, 84, 233, 0.1));
            border-radius: 16px;
            border: 1px solid rgba(71, 118, 230, 0.2);
        }

        .app-logo-container {
            position: relative;
            padding: 8px;
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(71, 118, 230, 0.3);
        }

        .app-info-logo {
            width: 72px;
            height: 72px;
            border-radius: 12px;
            background: #ffffff;
            object-fit: contain;
            padding: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .app-details {
            flex: 1;
        }

        .app-name {
            font-weight: 700;
            font-size: 1.4rem;
            color: #1b1b1b;
            margin-bottom: 4px;
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .app-category {
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 4px;
            font-weight: 500;
        }

        .app-updated {
            font-size: 0.9rem;
            color: #9ca3af;
            font-weight: 400;
        }

        .playstore-info-section img {
            width: 72px;
            height: 72px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.1);
            object-fit: contain;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .playstore-info-section .app-name {
            font-weight: 700;
            font-size: 1.4rem;
            color: #1b1b1b;
            margin-bottom: 4px;
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .playstore-info-section .app-details {
            font-size: 1rem;
            color: #555;
            margin-bottom: 2px;
            font-weight: 500;
        }

        .playstore-info-section .app-meta {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 20px;
        }

        .playstore-info-section .app-specs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px 32px;
            margin-bottom: 24px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .playstore-info-section .app-specs div {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .playstore-info-section .app-specs div:last-child {
            border-bottom: none;
        }

        .playstore-info-section .app-specs strong {
            font-weight: 600;
            color: #1b1b1b;
            font-size: 0.95rem;
        }

        .playstore-info-section .app-specs span {
            color: #555;
            font-size: 0.9rem;
            text-align: right;
        }

        .playstore-info-section .description {
            font-size: 1.02rem;
            color: #374151;
            line-height: 1.8;
            margin-bottom: 16px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            border-left: 4px solid #4776E6;
        }

        .playstore-info-section .whats-new {
            font-size: 1rem;
            color: #374151;
            line-height: 1.7;
            margin-bottom: 0;
            padding: 20px 24px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            border-left: 4px solid #8E54E9;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        /* Remove background from description and whats-new when outside playstore-info-section */
        .description {
            font-size: 1.02rem;
            color: #374151;
            line-height: 1.8;
            margin-bottom: 16px;
            padding: 16px;
            background: transparent;
            border-radius: 12px;
            border-left: 4px solid #4776E6;
        }

        .whats-new {
            font-size: 1rem;
            color: #374151;
            line-height: 1.7;
            margin-bottom: 0;
            padding: 20px 24px;
            background: transparent;
            border-radius: 16px;
            border-left: 4px solid #8E54E9;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .playstore-info-section .whats-new ul {
            margin: 12px 0 0 0;
            padding-left: 0;
        }

        .playstore-info-section .whats-new li {
            margin-bottom: 12px;
            color: #374151;
            padding-left: 24px;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .playstore-info-section .whats-new li:last-child {
            margin-bottom: 0;
        }

        .playstore-info-section .whats-new li::before {
            content: '';
            position: absolute;
            left: 0;
            font-size: 0.9rem;
        }

        .whats-new-title {
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.1rem;
            margin-bottom: 16px;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        /* Enhanced Related Categories Section */
        .related-categories-section {
            margin-top: 32px;
            padding: 24px;
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.04), rgba(142, 84, 233, 0.04));
            border-radius: 20px;
            border: 1px solid rgba(71, 118, 230, 0.1);
        }

        .categories-title {
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.2rem;
            margin-bottom: 16px;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .categories-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .category-tag {
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.08), rgba(142, 84, 233, 0.08));
            border: 1px solid rgba(71, 118, 230, 0.18);
            color: #4776E6;
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 3px 12px rgba(71, 118, 230, 0.12);
            position: relative;
            overflow: hidden;
        }

        .category-tag::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .category-tag:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(71, 118, 230, 0.18);
            border-color: rgba(71, 118, 230, 0.3);
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.12), rgba(142, 84, 233, 0.12));
        }

        .category-tag:hover::before {
            left: 100%;
        }

        /* Enhanced Related Tags Section */
        .related-tags-section {
            max-width: 700px;
            margin: 40px auto 32px auto;
            padding: 24px 40px;
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.04), rgba(142, 84, 233, 0.04));
            border-radius: 20px;
            border: 1px solid rgba(71, 118, 230, 0.1);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .tags-title {
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.3rem;
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: -0.01em;
            text-align: center;
        }

        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .tag-link {
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.08), rgba(142, 84, 233, 0.08));
            border: 1px solid rgba(71, 118, 230, 0.18);
            color: #4776E6;
            padding: 10px 18px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 3px 12px rgba(71, 118, 230, 0.12);
            position: relative;
            overflow: hidden;
        }

        .tag-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .tag-link:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 20px rgba(71, 118, 230, 0.18);
            border-color: rgba(71, 118, 230, 0.3);
            background: linear-gradient(135deg, rgba(71, 118, 230, 0.12), rgba(142, 84, 233, 0.12));
        }

        .tag-link:hover::before {
            left: 100%;
        }

        /* Responsive padding for Related Tags */
        @media (max-width: 768px) {
            .related-tags-section {
                margin: 24px 16px 16px 16px;
                padding: 20px 24px;
            }
        }

        /* Read More Functionality */
        .about-content {
            max-height: 120px;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
            position: relative;
        }

        .about-content.expanded {
            max-height: none;
            overflow: visible;
        }

        .about-content::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .about-content.expanded::after {
            opacity: 0;
        }

        .read-more-btn {
            background: linear-gradient(135deg, #4776E6, #8E54E9);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            margin-top: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(71, 118, 230, 0.3);
        }

        .read-more-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(71, 118, 230, 0.08);
        }

        .read-more-btn.expanded {
            background: linear-gradient(135deg, #8E54E9, #4776E6);
        }

        /* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #4776E6, #8E54E9);
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 24px;
    margin: 20px;
    box-shadow: 0 8px 32px rgba(71, 118, 230, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 16px;
        margin: 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
}

/* Hero Banner Slider Styles */
.hero-banner-slider {
    margin: 20px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #4776E6, #8E54E9);
}

.slider-container_main_slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
}

.slider_main_slider {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide_main_slider {
    width: 25%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #4776E6, #8E54E9);
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 60px;
    position: relative;
}

.slide-text {
    flex: 1;
    color: white;
    z-index: 2;
    max-width: 500px;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.slide-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.slide-image img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.dots_main_slider {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot_main_slider {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.dot_main_slider.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive Banner Slider */
@media (max-width: 768px) {
    .hero-banner-slider {
        margin: 16px;
    }
    
    .slider-container_main_slider {
        height: 300px;
    }
    
    .slide-content {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .slide-text {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-image img {
        max-width: 200px;
        max-height: 200px;
    }
    
    .dots_main_slider {
        bottom: 10px;
    }
    
    .dot_main_slider {
        width: 10px;
        height: 10px;
    }
}

/* Animation for slide content */
.slide_main_slider {
    animation: slideFadeIn 0.5s ease-in-out;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 4:1 Ratio Banner Section */
.ratio-banner-section {
    margin: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: none;
    position: relative;
    aspect-ratio: 4 / 1;
    min-height: auto;
    height: auto;
}



.ratio-banner-container {
    position: relative;
    z-index: 1;
    padding: 0;
    height: auto;
    display: flex;
    align-items: center;
}

.ratio-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0;
    height: auto;
}

.promotion-slider-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 0;
    margin: 5px 10px 15px 10px;
}

.promotion-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4 / 1;
    box-sizing: border-box;
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 0 15px rgba(102, 126, 234, 0.2),
        0 0 30px rgba(118, 75, 162, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.03));
    backdrop-filter: blur(10px);
    padding: 0;
}

.promotion-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* hidden slides click capture na karein */
}

.promotion-slide.active {
    opacity: 1;
    pointer-events: auto; /* sirf active slide clickable */
}

.promotion-slide a,
.promotion-slide-image {
    width: 100%;
    height: 100%;
    display: block;
}

.promotion-slide-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1254 / 304;
    object-fit: cover;
    border-radius: 14px;
    object-position: center center;
    border: none;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    cursor: pointer;
}

.promotion-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none; /* container click na roke, sirf buttons clickable */
}

.promotion-slider-btn {
    pointer-events: auto;
}

.promotion-slider-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promotion-slider-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.promotion-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.promotion-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

.promotion-dot.active {
    background: white;
    transform: scale(1.2);
}

.banner-slider-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Slider Styles */
.image-slider-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 140px;
    overflow: hidden;
    border-radius: 16px;
}

.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slider-item {
    min-width: 100px;
    height: 100%;
    margin-right: 16px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.slider-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Desktop Styles (769px and above) */
@media (min-width: 769px) {
    .promotion-slider {
        aspect-ratio: 4 / 1;
        border: 3px solid rgba(102, 126, 234, 0.4);
        box-shadow: 
            0 0 20px rgba(102, 126, 234, 0.3),
            0 0 40px rgba(118, 75, 162, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.05));
        backdrop-filter: blur(15px);
        padding: 0;
        margin: 8px 15px 20px 15px;
    }
    
    .promotion-dots {
        bottom: 35px;
        margin: 0 60px;
    }
    
    .promotion-slide-image {
        object-fit: cover;
        object-position: center center;
        border: none;
        box-shadow: none;
        border-radius: 18px;
        backdrop-filter: none;
    }
    
    .promotion-slider-controls {
        padding: 0 30px;
    }
    
    .promotion-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .promotion-slider-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .promotion-dots {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        gap: 15px;
    }
    
    .promotion-dot {
        width: 12px;
        height: 12px;
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .promotion-dot.active {
        background: white;
        transform: scale(1.3);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .ratio-banner-section {
        aspect-ratio: auto;
        min-height: auto;
        height: auto;
        margin: 0;
    }
    
    .ratio-banner-container {
        padding: 0;
    }
    
    .ratio-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    
    .promotion-slider-container {
        padding: 0;
        margin: 0;
        background: none;
    }
    
    .promotion-slider {
        aspect-ratio: 4 / 1;
        min-height: auto;
        height: auto;
        border: 2px solid rgba(102, 126, 234, 0.3);
        box-shadow: 
            0 0 12px rgba(102, 126, 234, 0.2),
            0 0 24px rgba(118, 75, 162, 0.1);
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.04));
        backdrop-filter: blur(12px);
        padding: 0;
        margin: 3px 8px 12px 8px;
    }
    
    .promotion-dots {
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .promotion-slide-image {
        object-fit: cover;
        object-position: center center;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        height: 100%;
    }
    
    .promotion-slider-controls {
        padding: 0 8px;
    }
    
    .promotion-slider-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .promotion-slider-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.02);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .promotion-dots {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
    }
    
    .promotion-dot {
        width: 6px;
        height: 6px;
        border: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .promotion-dot.active {
        background: white;
        transform: scale(1.2);
        box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
    }
}

/* Animation for ratio banner */
.ratio-banner-section {
    animation: bannerSlideIn 0.8s ease-out;
}

@keyframes bannerSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-item {
    animation: appItemFloat 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

@keyframes appItemFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* App Icon Container - Modern Design */
.app-icon_never-copyy-container {
  flex-shrink: 0 !important;
  width: 80px !important;
  height: 80px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(102, 126, 234, 0.2) !important;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(142, 84, 233, 0.1)) !important;
  backdrop-filter: blur(5px) !important;
  position: relative !important;
}

.app-icon_never-copyy {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: cover !important;
  border-radius: 16px !important;
  display: block !important;
}

/* Attractive Download Button - Modern Design */
a.pushable {
  text-decoration: none !important;
  box-sizing: border-box !important;
}

.pushable:disabled {
  opacity: 0.55 !important;
  cursor: not-allowed !important;
  filter: grayscale(0.25) !important;
}

.pushable {
  background: linear-gradient(135deg, #00cc66, #00aa55) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 6px 8px !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(5px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  min-width: 60px !important;
  justify-content: center !important;
  align-self: center !important;
  margin: 0 !important;
  letter-spacing: 0.3px !important;
}

/* Dark Mode Button */
body.dark-mode .pushable {
  background: linear-gradient(135deg, #00cc66, #00aa55) !important;
  color: white !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Light Mode Button */
body:not(.dark-mode) .pushable {
  background: linear-gradient(135deg, #00aa55, #008844) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(0, 170, 85, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  border: 1px solid #00aa55 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.pushable::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  transition: left 0.5s ease !important;
}

.pushable:hover::before {
  left: 100% !important;
}

.pushable:hover {
  background: linear-gradient(135deg, #00cc66, #00aa55) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 170, 85, 0.5), 0 3px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  border-color: #00cc66 !important;
}

.pushable:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 170, 85, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  background: linear-gradient(135deg, #008844, #006633) !important;
  border-color: #008844 !important;
}

.pushable i {
  font-size: 10px !important;
  transition: transform 0.3s ease !important;
  color: white !important;
  font-weight: bold !important;
}

.pushable:hover i {
  transform: translateY(-1px) !important;
}

.pushable:active i {
  transform: translateY(0) !important;
}

/* Click Animation */
.pushable:active {
  animation: buttonClick 0.2s ease !important;
}

@keyframes buttonClick {
  0% {
    transform: scale(1) !important;
  }
  50% {
    transform: scale(0.95) !important;
  }
  100% {
    transform: scale(1) !important;
  }
}

/* Bonus/subtitle icon gradient — light: red+purple, dark: white+purple. */
.text-style-1 i.bonus-icon,
.text-style-1 i.bonus-icon::before {
  background: linear-gradient(90deg, #ff0303 0, #5825e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
body.dark-mode .text-style-1 i.bonus-icon,
body.dark-mode .text-style-1 i.bonus-icon::before {
  background: linear-gradient(90deg, #ffffff 0, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* =========================================================================
   LAPTOP / DESKTOP ONLY (min-width:1024px). Mobile & colors untouched.
   Banner original hi rahega — sirf tab layout change:
   3 tab contents (Best/New/Old) laptop par ek saath 3 columns side-by-side.
   ========================================================================= */

/* Column title default hidden — mobile par tab BUTTON use hota hai */
.tab-col-title {
  display: none;
}

/* Tabs ke niche, footer se upar: chhoti green-gradient teaser line */
.coming-soon-note {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 18px auto 22px auto;
  padding: 0 16px;
  background: linear-gradient(90deg, #00cc66 0, #00aa55 50%, #20c997 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (min-width: 1024px) {
  /* Buttons row laptop par chhupa do — teeno tab ek saath open dikhenge */
  .tab-card4 {
    display: none !important;
  }

  /* 3 tab-content ek row me, centered — poori width use karo (roomy cards) */
  .tab-content-group {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1500px;
    margin: 6px auto 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
  }

  /* Har column: barabar width, apna card look */
  .tab-content-group .tab-content {
    display: block !important;
    flex: 1 1 0;
    min-width: 0;
    margin: 0 !important;
    padding: 10px !important;
  }

  /* Column title = mobile ke tab BUTTON (.tab-btn4.active) jaisa pill look */
  .tab-col-title {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 12px;
    margin: 2px 4px 14px 4px;
    border-radius: 12px;
    background: var(--tab-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  /* Cards ko column me thoda breathing room (mobile jaisa clean) */
  .tab-content-group .app-itemt-test {
    margin: 10px 2px !important;
    padding: 8px !important;
  }

  /* ---- Banner: mobile jaisa frame (border + rounded), gap kam ---- */
  .promotion-slider {
    border: 2px solid rgba(102, 126, 234, 0.3) !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.04)) !important;
    box-shadow:
      0 0 12px rgba(102, 126, 234, 0.2),
      0 0 24px rgba(118, 75, 162, 0.1) !important;
    margin: 6px 5px 6px 5px !important;
  }
  .promotion-slide-image {
    border-radius: 14px !important;
  }
}


