
:root {
  --bg-body: #F4F6FB;
  --bg-card: #FFFFFF;
  --bg-hero: #0B132B;
  --bg-subnav: #121D3F;
  --text-main: #1C2536;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;
  --accent-green: #00C076;
  --accent-green-hover: #00A664;
  --accent-gold: #FFAB00;
  --accent-blue: #2563EB;
  --border-light: #E2E8F0;
  --border-card: #EEF2F6;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 4px rgba(11, 19, 43, 0.04);
  --shadow-md: 0 6px 16px rgba(11, 19, 43, 0.06);
  --shadow-hover: 0 12px 28px rgba(11, 19, 43, 0.1);
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-wrap {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}

.app-header {
  background-color: var(--bg-hero);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-green), #00E58F);
  color: #0B132B;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 192, 118, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  color: var(--text-inverse);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.3px;
}

.brand-motto {
  color: #94A3B8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.main-nav {
  display: none;
  gap: 20px;
}

.nav-link {
  color: #CBD5E1;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.highlight {
  color: var(--accent-green);
}

.btn-security-check {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 192, 118, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(0, 192, 118, 0.35);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}

.subnav-scroll {
  background-color: var(--bg-subnav);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav-scroll::-webkit-scrollbar {
  display: none;
}

.subnav-inner {
  display: flex;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.subnav-item {
  color: #94A3B8;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.subnav-item.active, .subnav-item:hover {
  background: var(--accent-green);
  color: #0B132B;
}

.hero-section {
  background: radial-gradient(circle at top right, #172554, var(--bg-hero));
  color: var(--text-inverse);
  padding: 30px 0 40px;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-security-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.green-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
}

.hero-headline {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.hero-subhead {
  color: #94A3B8;
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 650px;
}

.search-input-box {
  display: flex;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  align-items: center;
}

.search-icon {
  padding: 0 12px;
  font-size: 16px;
}

.search-input-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-main);
}

.search-btn {
  background: var(--accent-green);
  color: #0B132B;
  border: none;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

.hero-featured-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.featured-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.featured-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: #1E293B;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.featured-text h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.featured-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.stars-gold {
  color: var(--accent-gold);
}

.verified-tag {
  background: rgba(0, 192, 118, 0.2);
  color: var(--accent-green);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.featured-text p {
  color: #94A3B8;
  font-size: 13px;
  margin-bottom: 14px;
}

.featured-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-hero-download {
  background: var(--accent-green);
  color: #0B132B;
  font-weight: 800;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}

.btn-hero-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFF;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.main-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 24px;
  padding-bottom: 40px;
}

.content-primary {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.section-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
}

.view-all-link {
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 13px;
}

.app-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.modern-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.modern-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.card-app-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  background: #E2E8F0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

.card-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  color: #FFF;
  font-weight: 800;
  font-size: 18px;
}

.card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.card-badge-secure {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(0, 192, 118, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.card-badge-rating {
  font-size: 11px;
  font-weight: 700;
  color: #D97706;
}

.card-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-info-chips {
  display: flex;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-snippet {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.btn-card-install {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #F1F5F9;
  color: #0F172A;
  font-weight: 700;
  font-size: 12px;
  padding: 8px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.2s ease;
}

.modern-card:hover .btn-card-install {
  background: var(--accent-green);
  color: #0B132B;
}

.guide-banner {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  color: #FFF;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-banner h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.guide-banner p {
  color: #94A3B8;
  font-size: 13px;
  margin-bottom: 14px;
}

.guide-steps-quick {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.q-step {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.q-step span {
  background: var(--accent-green);
  color: #000;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.btn-guide-link {
  background: var(--accent-green);
  color: #0B132B;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
}

.sidebar-secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.sidebar-heading {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--border-card);
  padding-bottom: 8px;
}

.ranking-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compact-row-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.compact-row-item:hover {
  background: #F8FAFC;
}

.rank-index {
  font-size: 14px;
  font-weight: 800;
  color: #94A3B8;
  min-width: 18px;
  text-align: center;
}

.row-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: #CBD5E1;
  flex-shrink: 0;
}

.row-details {
  flex: 1;
  overflow: hidden;
}

.row-title {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.row-action {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(0, 192, 118, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cloud-tag {
  background: #F1F5F9;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  color: #334155;
  transition: background 0.2s;
}

.cloud-tag:hover {
  background: var(--accent-green);
  color: #0B132B;
}

.category-hero {
  background: var(--bg-hero);
  color: #FFF;
  padding: 24px 0 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.breadcrumb {
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #CBD5E1;
}

.cat-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.cat-subtitle {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 14px;
}

.cat-alert-bar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #E2E8F0;
  display: flex;
  gap: 8px;
}

.pagination-bar {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.page-link {
  background: #FFF;
  border: 1px solid var(--border-light);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
}

.page-link.active {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #0B132B;
}

.cat-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-nav-item {
  padding: 8px 12px;
  border-radius: 8px;
  background: #F8FAFC;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}

.cat-nav-item:hover {
  background: var(--accent-green);
  color: #0B132B;
}

.detail-header-section {
  background: var(--bg-hero);
  color: #FFF;
  padding: 20px 0 30px;
}

.detail-hero-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.detail-main-icon {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  background: #1E293B;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.detail-app-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.detail-author-tag {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 12px;
}

.badge-safe {
  color: var(--accent-green);
  background: rgba(0, 192, 118, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
}

.detail-metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #CBD5E1;
  margin-bottom: 16px;
}

.metric-block {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
}

.detail-cta-row {
  display: flex;
  gap: 10px;
}

.btn-main-download {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-green);
  color: #0B132B;
  font-weight: 800;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(0, 192, 118, 0.4);
}

.btn-guide-anchor {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
}

.safety-audit-strip {
  background: #E8FBF4;
  border: 1px solid #B8F2DC;
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.audit-icon {
  font-size: 26px;
}

.audit-info strong {
  color: #065F46;
  font-size: 14px;
  display: block;
}

.audit-info p {
  color: #047857;
  font-size: 12px;
  margin: 0;
}

.content-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.panel-heading {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--border-card);
  padding-bottom: 8px;
}

.formatted-article {
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
}

.formatted-article p {
  margin-bottom: 12px;
}

.table-responsive {
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.specs-table th, .specs-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.specs-table th {
  color: var(--text-muted);
  width: 35%;
  font-weight: 600;
}

.specs-table td {
  font-weight: 600;
  color: #0F172A;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-card {
  background: #F8FAFC;
  border-radius: 10px;
  padding: 14px;
  position: relative;
}

.step-number {
  font-size: 20px;
  font-weight: 900;
  color: #CBD5E1;
  margin-bottom: 4px;
  display: block;
}

.step-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-card p {
  font-size: 12px;
  color: var(--text-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 14px;
}

.faq-quest {
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.faq-ans {
  font-size: 12px;
  color: #475569;
  margin-top: 8px;
  line-height: 1.5;
}

.text-page-container {
  padding-top: 30px;
  padding-bottom: 50px;
}

.text-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.text-card h1 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.lead-p {
  color: var(--text-muted);
  font-size: 14px;
}

.divider {
  border: 0;
  height: 1px;
  background: var(--border-light);
  margin: 18px 0;
}

.text-card h2 {
  font-size: 16px;
  margin: 16px 0 8px;
}

.text-card p, .text-card li {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

.text-card ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-field {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-family: inherit;
  font-size: 13px;
}

.input-field.area {
  min-height: 110px;
  resize: vertical;
}

.btn-submit {
  background: var(--accent-green);
  color: #0B132B;
  border: none;
  font-weight: 800;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.app-footer {
  background: #070D1E;
  color: #94A3B8;
  padding: 40px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-bottom: 30px;
}

.footer-desc {
  font-size: 12px;
  line-height: 1.6;
  margin: 12px 0 16px;
}

.trust-pill-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  color: #E2E8F0;
}

.footer-heading {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: #94A3B8;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  background: #040813;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.disclaimer-text {
  font-size: 11px;
  line-height: 1.5;
  color: #64748B;
  margin-bottom: 10px;
}

.copyright-line {
  font-size: 11px;
  color: #475569;
}

@media (min-width: 640px) {
  .app-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .form-grid {
    flex-direction: row;
  }
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }
  .hero-container {
    flex-direction: row;
    align-items: center;
  }
  .hero-intro {
    flex: 1.1;
  }
  .hero-featured-card {
    flex: 0.9;
  }
  .hero-headline {
    font-size: 34px;
  }
  .featured-content {
    flex-direction: row;
  }
  .featured-btn-group {
    flex-direction: row;
  }
  .main-layout {
    flex-direction: row;
    gap: 30px;
  }
  .content-primary {
    flex: 1;
  }
  .sidebar-secondary {
    width: 320px;
    flex-shrink: 0;
  }
  .sticky-box {
    position: sticky;
    top: 80px;
  }
  .app-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .steps-grid {
    flex-direction: row;
  }
  .step-card {
    flex: 1;
  }
  .detail-hero-box {
    flex-direction: row;
    align-items: center;
  }
  .detail-main-icon {
    width: 108px;
    height: 108px;
  }
  .detail-app-name {
    font-size: 28px;
  }
  .detail-cta-row {
    max-width: 380px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 1100px) {
  .app-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 639px) {
  .section-header {
    margin-bottom: 12px;
    align-items: center;
  }

  .section-title {
    font-size: 17px;
    font-weight: 800;
  }

  .section-subtitle {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .view-all-link {
    font-size: 12px;
    white-space: nowrap;
    background: #EEF2F6;
    padding: 4px 10px;
    border-radius: 20px;
  }

  .app-card-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .modern-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px;
    gap: 12px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1px solid #EEF2F6;
    box-shadow: 0 2px 6px rgba(11, 19, 43, 0.04);
  }

  .modern-card:active {
    background: #F8FAFC;
    transform: scale(0.99);
  }

  .card-link-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
  }

  .card-head {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .card-app-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  }

  .card-meta {
    display: none;
  }

  .card-body {
    flex: 1;
    min-width: 0;
  }

  .card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card-info-chips {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #64748B;
    margin-bottom: 2px;
  }

  .card-info-chips::after {
    content: "⭐ 4.8";
    color: #D97706;
    font-weight: 700;
  }

  .card-snippet {
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
  }

  .card-footer {
    flex-shrink: 0;
    width: auto;
  }

  .btn-card-install {
    width: auto;
    background: #E8FBF4;
    color: #008751;
    font-weight: 800;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 192, 118, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .btn-card-install svg {
    display: none;
  }
}
