/* AllRummys.Com - Premium CSS Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #E52E2A; /* Vibrant red */
  --primary-hover: #C8221E;
  --secondary-color: #FF7B31; /* Vibrant orange */
  --success-color: #14A44D; /* Green */
  --success-bg: rgba(20, 164, 77, 0.08);
  --warning-color: #FFC107;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --bg-light: #FAFBFC;
  --border-light: #E5E7EB;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-speed: 0.3s;
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --box-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #111827;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  font-family: inherit;
}

input {
  font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #F3F4F6;
}
::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn-red {
  background: linear-gradient(180deg, #FF4541 0%, var(--primary-color) 100%);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(229, 46, 42, 0.2);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-size: 0.95rem;
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 46, 42, 0.35);
  background: var(--primary-hover);
}
.btn-red:active {
  transform: translateY(0);
}

.btn-white {
  background: #FFFFFF;
  color: #374151;
  border: 1px solid #D1D5DB;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  font-size: 0.95rem;
}
.btn-white:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  background: #FAFBFD;
}
.btn-white:active {
  transform: translateY(0);
}

/* /* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, height 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border-bottom-color: rgba(241, 245, 249, 0.5);
}

[data-theme="dark"] .navbar {
  background: #0D1117;
  border-bottom-color: #1F2937;
}

[data-theme="dark"] .navbar.navbar-scrolled {
  background: rgba(13, 17, 23, 0.85);
  border-bottom-color: rgba(31, 41, 55, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF5252, #FF1744);
  border-radius: 10px;
  color: white;
  box-shadow: 0 3px 8px rgba(255, 23, 68, 0.3);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 850;
  background: linear-gradient(90deg, #1C75BC 0%, #00ABC5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-logo-text span {
  color: #4CAF50;
  -webkit-text-fill-color: #4CAF50;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  font-size: 15px;
  font-weight: 500;
  color: #4B5563;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-speed);
}

[data-theme="dark"] .nav-item {
  color: #9CA3AF;
}

.nav-item:hover, .nav-item.active {
  color: var(--primary-color);
}

[data-theme="dark"] .nav-item:hover, [data-theme="dark"] .nav-item.active {
  color: #FF5C5C;
}

/* Premium Hover Underline Animation */
.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.25s ease, left 0.25s ease;
}

[data-theme="dark"] .nav-item::after {
  background-color: #FF5C5C;
}

.nav-item:hover::after, .nav-item.active::after {
  width: 100%;
  left: 0;
}

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

/* Header Action Icon Buttons */
.action-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4B5563;
  transition: background-color 0.2s, color 0.2s;
  border: none;
  background: transparent;
}

[data-theme="dark"] .action-icon-btn {
  color: #9CA3AF;
}

.action-icon-btn:hover {
  background-color: #F1F5F9;
  color: #111827;
}

[data-theme="dark"] .action-icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

/* Red Gradient Download Button */
.btn-header-download {
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF5C5C 0%, var(--primary-color) 100%);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(229, 46, 42, 0.2);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.btn-header-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 46, 42, 0.35);
  background: linear-gradient(135deg, #FF7373 0%, var(--primary-hover) 100%);
}

.btn-header-download:active {
  transform: translateY(-1px);
}

/* Mobile Hamburger Toggle Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 18px;
  justify-content: center;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: #374151;
  transition: all 0.3s;
}

[data-theme="dark"] .mobile-menu-btn span {
  background-color: #D1D5DB;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Slide-In Drawer */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1501;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .mobile-drawer {
  background: #0D1117;
  color: #FFFFFF;
  box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.open {
  left: 0;
}

.mobile-drawer-close {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #F3F4F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #4B5563;
  transition: background-color 0.2s;
}

[data-theme="dark"] .mobile-drawer-close {
  background: #1F2937;
  color: #D1D5DB;
}

.mobile-drawer-close:hover {
  background: #E5E7EB;
}

.mobile-drawer-content {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: auto;
}

.mobile-menu-item {
  font-size: 1.05rem;
  font-weight: 600;
  color: #374151;
  padding: 10px 16px;
  border-radius: 12px;
  transition: background-color 0.2s, color 0.2s;
}

[data-theme="dark"] .mobile-menu-item {
  color: #E5E7EB;
}

.mobile-menu-item:hover, .mobile-menu-item.active {
  background-color: rgba(229, 46, 42, 0.05);
  color: var(--primary-color);
}

[data-theme="dark"] .mobile-menu-item:hover, [data-theme="dark"] .mobile-menu-item.active {
  background-color: rgba(229, 46, 42, 0.1);
  color: #FF5C5C;
}

.mobile-drawer-actions {
  margin-top: 30px;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 85% 30%, rgba(229, 46, 42, 0.05) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 123, 49, 0.04) 0%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-tag {
  background: #F3F4F6;
  color: #4B5563;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid #E5E7EB;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.hero-check-text span {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: 5px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Spotlight Card in Hero */
.hero-spotlight {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spotlight-card {
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #F3F4F6;
  box-shadow: var(--box-shadow-lg);
  padding: 24px;
  width: 100%;
  max-width: 440px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-speed);
}
.spotlight-card:hover {
  transform: translateY(-5px);
}

.spotlight-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.spotlight-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.spotlight-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.spotlight-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.spotlight-info p span {
  color: var(--primary-color);
  font-weight: 700;
}

.spotlight-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.spotlight-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FAFBFD;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.spotlight-badge svg {
  width: 16px;
  height: 16px;
}

.badge-yellow { color: #D97706; background: rgba(217, 119, 6, 0.05); }
.badge-orange { color: #E52E2A; background: rgba(229, 46, 42, 0.05); }
.badge-blue { color: #00ABC5; background: rgba(0, 171, 197, 0.05); }
.badge-green { color: #14A44D; background: rgba(20, 164, 77, 0.05); }

/* Section Header Styling */
.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-title-wrap h2 {
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 4px;
}

.section-title-wrap .view-all {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 6px 16px;
  background: white;
}
.section-title-wrap .view-all:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Top Rummy Apps Carousel Section */
.top-apps-section {
  padding: 50px 0;
  position: relative;
}

.top-apps-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.top-apps-container {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}
.top-apps-container::-webkit-scrollbar {
  display: none;
}
.top-apps-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.top-app-card {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--box-shadow-md);
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
}
.top-app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-lg);
}

.rank-flag {
  position: absolute;
  top: 0;
  left: 16px;
  width: 24px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 0.85rem;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 10;
}
.rank-1 { background: #FF9F43; }
.rank-2 { background: #54A0FF; }
.rank-3 { background: #FF6B6B; }

.top-app-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  flex-shrink: 0;
}

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

.top-app-details {
  flex-grow: 1;
}

.top-app-details h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 10px;
}

.top-app-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: #D97706;
  margin-bottom: 8px;
}

.top-app-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.top-app-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-app-meta svg {
  width: 14px;
  height: 14px;
}

.top-app-card .btn-red {
  padding: 8px 20px;
  font-size: 0.85rem;
  width: 100%;
  justify-content: center;
}

/* Slider Controls */
.carousel-btn {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  box-shadow: var(--box-shadow-sm);
  cursor: pointer;
  transition: all var(--transition-speed);
}
.carousel-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
.btn-prev { left: -20px; }
.btn-next { right: -20px; }

/* Notice Banner */
.notice-section {
  padding: 20px 0;
}

.notice-banner {
  background-color: #EBFDF2;
  border: 1px solid #C6F6D5;
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #1C5230;
}

.notice-tag {
  background-color: var(--success-color);
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.notice-text {
  font-weight: 500;
  line-height: 1.4;
}

/* Popular Categories Section */
.categories-section {
  padding: 40px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.category-card {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: 16px 8px;
  text-align: center;
  box-shadow: var(--box-shadow-sm);
  cursor: pointer;
  transition: all var(--transition-speed);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.category-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
  box-shadow: var(--box-shadow-md);
}

.category-card.active {
  border-color: var(--primary-color);
  background: #FFF5F5;
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(229, 46, 42, 0.08);
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F9FAFB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4B5563;
  transition: all var(--transition-speed);
}
.category-card:hover .category-icon {
  background: var(--primary-color);
  color: white;
}
.category-card.active .category-icon {
  background: var(--primary-color);
  color: #FFFFFF;
}

.category-icon svg {
  width: 24px;
  height: 24px;
}

.category-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}
.category-card.active .category-name {
  color: var(--primary-color);
}

/* All Apps Section */
.all-apps-section {
  padding: 50px 0;
}

.all-apps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.all-apps-header h2 {
  font-size: 2rem;
  font-weight: 800;
}

/* Search bar */
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.search-input-box {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 25px;
  padding: 8px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input-box:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(229, 46, 42, 0.1);
}

.search-input-box input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  padding-left: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.search-input-box input::placeholder {
  color: var(--text-muted);
}

.search-input-box svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Apps Grid */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.app-card {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--box-shadow-sm);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-md);
  border-color: var(--primary-color);
}

.app-card-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}

.app-card-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-card-rating {
  font-size: 0.8rem;
  font-weight: 600;
  color: #D97706;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.app-card-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.app-card .btn-red {
  width: 100%;
  padding: 8px 12px;
  font-size: 0.85rem;
  justify-content: center;
}

.zero-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px;
  background: white;
  border: 1px dashed var(--border-light);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.zero-state svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
}
.zero-state button {
  margin-top: 10px;
}

/* Skeleton Loading Grid Items */
.skeleton-card {
  background: white;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: 16px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: skeleton-pulse 1.5s infinite ease-in-out;
}

.skeleton-icon {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: #E5E7EB;
  margin: 0 auto;
}

.skeleton-text {
  height: 12px;
  background: #E5E7EB;
  border-radius: 4px;
  margin: 10px auto 0;
  width: 70%;
}

.skeleton-meta {
  height: 10px;
  background: #E5E7EB;
  border-radius: 4px;
  margin: 8px auto 0;
  width: 50%;
}

.skeleton-btn {
  height: 32px;
  background: #E5E7EB;
  border-radius: 30px;
  width: 100%;
}

@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Trust Banner */
.trust-banner-section {
  padding: 30px 0;
}

.trust-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--box-shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-green { background: #EBFDF2; color: #14A44D; }
.trust-blue { background: #EBF8FF; color: #00ABC5; }
.trust-cyan { background: #EBFDFE; color: #00B4D8; }
.trust-indigo { background: #EEF2FF; color: #4F46E5; }

.trust-icon-box svg {
  width: 22px;
  height: 22px;
}

.trust-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-details p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Blog & FAQ Split Column */
.blog-faq-section {
  padding: 50px 0;
}

.blog-faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

/* Popular Blog styles */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-item {
  display: flex;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--box-shadow-sm);
  transition: transform var(--transition-speed);
}
.blog-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.blog-thumb {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-details h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}
.blog-details h3:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* FAQ accordion styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
  text-align: left;
  background: white;
}

.faq-trigger span {
  padding-right: 16px;
}

.faq-icon-plus {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-trigger[aria-expanded="true"] .faq-icon-plus {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #FAFBFC;
}

.faq-content-inner {
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid #F3F4F6;
}

/* Footer styles */
.footer {
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #4B5563;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed);
}
.social-circle:hover {
  background: var(--primary-color);
  color: #FFFFFF;
}
.social-circle svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 4px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.adult-tag {
  background: #FFF5F5;
  border: 1px solid #FEB2B2;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
}

.adult-badge {
  background: var(--primary-color);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.adult-details h5 {
  font-size: 0.88rem;
  color: #9B1C1C;
  font-weight: 700;
  margin-bottom: 2px;
}

.adult-details p {
  font-size: 0.76rem;
  color: #C53030;
  line-height: 1.4;
}

.security-badge {
  background: #EBFDF2;
  border: 1px solid #C6F6D5;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1C5230;
}

.security-badge svg {
  width: 24px;
  height: 24px;
  color: var(--success-color);
  flex-shrink: 0;
}

.security-badge h5 {
  font-size: 0.88rem;
  color: #1C5230;
  font-weight: 700;
}

.security-badge p {
  font-size: 0.78rem;
  color: #2F855A;
}

.footer-bottom {
  border-top: 1px solid #E5E7EB;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Detail Drawer (Slide-in) & Modals */
.detail-drawer-overlay, .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed);
}
.detail-drawer-overlay.open, .modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.detail-drawer {
  position: fixed;
  top: 0;
  right: -550px;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  z-index: 2001;
  transition: right var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.detail-drawer.open {
  right: 0;
}

.drawer-close-btn, .modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: #F3F4F6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4B5563;
  z-index: 10;
  transition: background-color 0.2s;
}
.drawer-close-btn:hover, .modal-close-btn:hover {
  background: #E5E7EB;
  color: #111827;
}

.drawer-scroll-container {
  padding: 30px;
  overflow-y: auto;
  flex-grow: 1;
}

.drawer-header {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: center;
}

.drawer-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #F3F4F6;
  overflow: hidden;
  box-shadow: var(--box-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.drawer-icon-wrapper svg {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
}
.drawer-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-title-meta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.drawer-sub-badges {
  display: flex;
  gap: 8px;
}

.drawer-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.drawer-badge.category { background: #EEF2FF; color: #4F46E5; }
.drawer-badge.verified { background: #EBFDF2; color: #14A44D; display: flex; align-items: center; gap: 4px; }
.drawer-badge.verified svg { width: 12px; height: 12px; }

.drawer-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.metric-box {
  background: #FAFBFD;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
}

.metric-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.metric-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.drawer-download-cta-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: 30px;
  margin-bottom: 24px;
}

.drawer-section {
  margin-bottom: 24px;
}

.drawer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  border-bottom: 2px solid #F3F4F6;
  padding-bottom: 6px;
}

.drawer-section p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.drawer-tabs-nav {
  display: flex;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 16px;
}

.drawer-tab {
  flex-grow: 1;
  padding: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  border-bottom: 2px solid transparent;
}
.drawer-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.drawer-tab-pane {
  display: none;
}
.drawer-tab-pane.active {
  display: block;
}

.drawer-features, .drawer-install-steps, .drawer-changelog {
  list-style-type: decimal;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-features {
  list-style-type: disc;
}

.screenshot-gallery-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.phone-mockup-wrapper {
  width: 180px;
  height: 320px;
  background: #111827;
  border-radius: 24px;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: var(--box-shadow-md);
}

.phone-screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1C75BC, #FF5252);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.mockup-inner-gradient {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mockup-body-sim svg {
  width: 32px;
  height: 32px;
  color: white;
}

.mockup-text-primary {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-top: 10px;
  display: block;
}

.mockup-text-secondary {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  display: block;
  line-height: 1.3;
  margin-top: 4px;
}

.mockup-screen-view {
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px;
  margin-top: 15px;
}

.mockup-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.mockup-list-item:last-child { margin-bottom: 0; }

.mockup-dot-lead {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.mockup-line-filler {
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  flex-grow: 1;
  width: 60px;
}

.mockup-btn-simulate {
  background: white;
  border-radius: 20px;
  color: #111827;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Download Simulation Modal */
.download-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 460px;
  z-index: 2002;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
}

.download-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.modal-body {
  text-align: center;
}

.modal-title-wrap h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.modal-title-wrap p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.download-sim-app-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FAFBFD;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.sim-badge-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sim-badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.sim-badge-meta h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.sim-badge-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.security-checklist {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.check-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.check-spinner {
  display: none;
  width: 12px;
  height: 12px;
  border: 2px solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinner-rotate 0.8s infinite linear;
}

.check-done-icon {
  display: none;
  width: 12px;
  height: 12px;
  color: var(--success-color);
}

.check-item.pending {
  color: #111827;
  font-weight: 500;
}

.check-item.pending .check-indicator {
  border-color: var(--primary-color);
}

.check-item.pending .check-spinner {
  display: block;
}

.check-item.completed {
  color: var(--success-color);
  font-weight: 500;
}

.check-item.completed .check-indicator {
  border-color: var(--success-color);
  background: var(--success-bg);
}

.check-item.completed .check-done-icon {
  display: block;
}

@keyframes spinner-rotate {
  to { transform: rotate(360deg); }
}

.simulation-progress-wrapper {
  margin-bottom: 24px;
}

.progress-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.sim-progress-bar-track {
  height: 6px;
  background: #F3F4F6;
  border-radius: 10px;
  overflow: hidden;
}

.sim-progress-bar-fill {
  height: 100%;
  background: var(--primary-color);
  width: 0%;
  border-radius: 10px;
  transition: width 0.1s;
}

.sim-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.secure-cert-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--success-color);
}

.secure-cert-label svg {
  width: 16px;
  height: 16px;
}

/* Floating communication Widgets (Bottom Left/Right) */
.floating-channels {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.channel-widget {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.2s;
}
.channel-widget:hover {
  transform: scale(1.1);
}

.channel-widget.telegram {
  background: #2D87EF;
}

.channel-widget.whatsapp {
  background: #25D366;
}

.channel-widget svg {
  width: 24px;
  height: 24px;
}

.widget-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #111827;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: var(--box-shadow-md);
}
.channel-widget:hover .widget-tooltip {
  opacity: 1;
}

/* Back to Top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--box-shadow-md);
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all var(--transition-speed);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .btn-header-download {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .top-app-card {
    flex: 0 0 calc(50% - 12px);
  }
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-right {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  .btn-header-download {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-checks {
    align-items: center;
  }
  
  .top-app-card {
    flex: 0 0 100%;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .all-apps-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .search-wrapper {
    max-width: 100%;
  }
  
  .trust-banner-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apps-grid {
    grid-template-columns: 1fr;
  }
  .trust-banner-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn-red, .hero-buttons .btn-white {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================================
   NIGHT MODE (DARK MODE) STYLES
   ========================================================================= */

[data-theme="dark"] {
  --bg-light: #0d1117;       /* Deep slate background */
  --text-dark: #f0f6fc;      /* Off-white for high readability */
  --text-muted: #8b949e;     /* Cool grey for subtext */
  --border-light: #21262d;   /* Subtle dark borders */
  
  --box-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --box-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --box-shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
}

/* Global Headings in Dark Mode */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #f0f6fc !important;
}

/* Hero Section overrides */
[data-theme="dark"] .hero-tag {
  background: #21262d;
  color: #c9d1d9;
  border-color: #30363d;
}

[data-theme="dark"] .spotlight-card {
  background: #161b22;
  border-color: #30363d;
}

[data-theme="dark"] .spotlight-badge {
  background: #21262d;
  border-color: #30363d;
  color: #c9d1d9;
}

[data-theme="dark"] .spotlight-badge.badge-yellow { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }
[data-theme="dark"] .spotlight-badge.badge-orange { color: #ff5c5c; background: rgba(255, 92, 92, 0.1); }
[data-theme="dark"] .spotlight-badge.badge-blue { color: #00b4d8; background: rgba(0, 180, 216, 0.1); }
[data-theme="dark"] .spotlight-badge.badge-green { color: #4ade80; background: rgba(74, 222, 128, 0.1); }

[data-theme="dark"] .btn-white {
  background: #21262d;
  color: #c9d1d9;
  border-color: #30363d;
}
[data-theme="dark"] .btn-white:hover {
  background: #30363d;
  border-color: var(--primary-color);
}

/* Section Title View All Button */
[data-theme="dark"] .section-title-wrap .view-all {
  background: #161b22;
  border-color: #30363d;
  color: var(--primary-color);
}
[data-theme="dark"] .section-title-wrap .view-all:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Trending Carousel Overrides */
[data-theme="dark"] .top-app-card {
  background: #161b22;
  border-color: #30363d;
}

[data-theme="dark"] .carousel-btn {
  background: #21262d;
  border-color: #30363d;
  color: #c9d1d9;
}
[data-theme="dark"] .carousel-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Notice Banner */
[data-theme="dark"] .notice-banner {
  background-color: rgba(20, 164, 77, 0.1);
  border-color: rgba(20, 164, 77, 0.2);
  color: #85e89d;
}

/* Popular Categories */
[data-theme="dark"] .category-card {
  background: #161b22;
  border-color: #30363d;
}
[data-theme="dark"] .category-card:hover {
  border-color: var(--primary-color);
}
[data-theme="dark"] .category-card.active {
  background: rgba(229, 46, 42, 0.1);
  border-color: var(--primary-color);
  color: #ff5c5c;
}
[data-theme="dark"] .category-icon {
  background: #21262d;
  color: #8b949e;
}
[data-theme="dark"] .category-card:hover .category-icon {
  background: var(--primary-color);
  color: white;
}
[data-theme="dark"] .category-card.active .category-icon {
  background: var(--primary-color);
  color: #ffffff;
}
[data-theme="dark"] .category-name {
  color: #c9d1d9;
}
[data-theme="dark"] .category-card.active .category-name {
  color: #ff5c5c;
}

/* Search Box */
[data-theme="dark"] .search-input-box {
  background: #161b22;
  border-color: #30363d;
}

/* Apps Grid */
[data-theme="dark"] .app-card {
  background: #161b22;
  border-color: #30363d;
}
[data-theme="dark"] .app-card:hover {
  border-color: var(--primary-color);
}
[data-theme="dark"] .app-card-name {
  color: #f0f6fc;
}

/* Zero State & Skeletons */
[data-theme="dark"] .zero-state {
  background: #161b22;
  border-color: #30363d;
}
[data-theme="dark"] .skeleton-card {
  background: #161b22;
  border-color: #30363d;
}
[data-theme="dark"] .skeleton-icon,
[data-theme="dark"] .skeleton-text,
[data-theme="dark"] .skeleton-meta,
[data-theme="dark"] .skeleton-btn {
  background: #21262d;
}

/* Trust Banner */
[data-theme="dark"] .trust-banner-grid {
  background: #161b22;
  border-color: #30363d;
}
[data-theme="dark"] .trust-green { background: rgba(20, 164, 77, 0.1); color: #4ade80; }
[data-theme="dark"] .trust-blue { background: rgba(0, 171, 197, 0.1); color: #00abc5; }
[data-theme="dark"] .trust-cyan { background: rgba(0, 180, 216, 0.1); color: #00b4d8; }
[data-theme="dark"] .trust-indigo { background: rgba(79, 70, 229, 0.1); color: #818cf8; }

/* Blog & FAQ Overrides */
[data-theme="dark"] .blog-item {
  background: #161b22;
  border-color: #30363d;
}
[data-theme="dark"] .blog-item:hover {
  border-color: var(--primary-color);
}

[data-theme="dark"] .faq-item {
  background: #161b22;
  border-color: #30363d;
}
[data-theme="dark"] .faq-trigger {
  background: #161b22;
  color: #f0f6fc;
}
[data-theme="dark"] .faq-content {
  background: #0d1117;
}
[data-theme="dark"] .faq-content-inner {
  border-top-color: #21262d;
}

/* Footer Section */
[data-theme="dark"] .footer {
  background: #0d1117;
  border-top-color: #21262d;
}
[data-theme="dark"] .social-circle {
  background: #21262d;
  color: #8b949e;
}
[data-theme="dark"] .social-circle:hover {
  background: var(--primary-color);
  color: white;
}
[data-theme="dark"] .footer-links a {
  color: #8b949e;
}
[data-theme="dark"] .footer-links a:hover {
  color: var(--primary-color);
}
[data-theme="dark"] .adult-tag {
  background: rgba(155, 28, 28, 0.1);
  border-color: rgba(155, 28, 28, 0.2);
}
[data-theme="dark"] .adult-details h5 {
  color: #ffa3a3;
}
[data-theme="dark"] .adult-details p {
  color: #ff8a8a;
}
[data-theme="dark"] .security-badge {
  background: rgba(20, 164, 77, 0.1);
  border-color: rgba(20, 164, 77, 0.2);
  color: #85e89d;
}
[data-theme="dark"] .security-badge h5 {
  color: #85e89d;
}
[data-theme="dark"] .security-badge p {
  color: #a1e3b8;
}
[data-theme="dark"] .footer-bottom {
  border-top-color: #21262d;
}

/* Detail Drawer Overrides */
[data-theme="dark"] .detail-drawer {
  background: #0d1117;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}
[data-theme="dark"] .drawer-close-btn {
  background: #21262d;
  color: #8b949e;
}
[data-theme="dark"] .drawer-close-btn:hover {
  background: #30363d;
  color: #f0f6fc;
}
[data-theme="dark"] .drawer-icon-wrapper {
  background: #21262d;
}
[data-theme="dark"] .drawer-badge.category {
  background: rgba(79, 70, 229, 0.15);
  color: #a5b4fc;
}
[data-theme="dark"] .drawer-badge.verified {
  background: rgba(20, 164, 77, 0.15);
  color: #85e89d;
}
[data-theme="dark"] .metric-box {
  background: #161b22;
  border-color: #21262d;
}
[data-theme="dark"] .metric-val {
  color: #f0f6fc;
}
[data-theme="dark"] .drawer-section h3 {
  border-bottom-color: #21262d;
}
[data-theme="dark"] .drawer-tabs-nav {
  border-bottom-color: #21262d;
}
[data-theme="dark"] .drawer-tab {
  color: #8b949e;
}
[data-theme="dark"] .drawer-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}
[data-theme="dark"] .drawer-tab-pane h4 {
  color: #f0f6fc !important;
}

/* Download Simulator Modal */
[data-theme="dark"] .download-modal {
  background: #0d1117;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .modal-close-btn {
  background: #21262d;
  color: #8b949e;
}
[data-theme="dark"] .modal-close-btn:hover {
  background: #30363d;
  color: #f0f6fc;
}
[data-theme="dark"] .download-sim-app-badge {
  background: #161b22;
  border-color: #21262d;
}
[data-theme="dark"] .sim-badge-icon {
  background: #21262d;
}
[data-theme="dark"] .check-indicator {
  border-color: #30363d;
}
[data-theme="dark"] .check-item.pending {
  color: #f0f6fc;
}
[data-theme="dark"] .sim-progress-bar-track {
  background: #21262d;
}

/* Floating widgets & Back to top overrides */
[data-theme="dark"] .back-to-top {
  background: #21262d;
  border-color: #30363d;
  color: #c9d1d9;
}
[data-theme="dark"] .back-to-top:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}
[data-theme="dark"] .widget-tooltip {
  background: #161b22;
  border: 1px solid #30363d;
  color: #f0f6fc;
}

