
:root {
  --bg-page: #F6F8FD;
  --bg-panel: #FFFFFF;
  --bg-hero: #181335;
  --bg-subbar: #231B4B;
  --text-main: #1E202C;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;
  --accent-amber: #FF9F0A;
  --accent-amber-hover: #E08900;
  --accent-green: #10B981;
  --accent-purple: #7C3AED;
  --border-subtle: #E5E7EB;
  --border-light: #EEF2F6;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 6px rgba(24, 19, 53, 0.04);
  --shadow-md: 0 6px 16px rgba(24, 19, 53, 0.08);
  --shadow-lg: 0 14px 30px rgba(24, 19, 53, 0.12);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', -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-page);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-name, .btn-action-download, .btn-hero-primary {
  font-family: var(--font-heading);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.shell {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}

.navbar-wrapper {
  background-color: var(--bg-hero);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-crest {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.brand-headings {
  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--text-white);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.brand-slogan {
  color: #A5B4FC;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.desktop-menu {
  display: none;
  gap: 22px;
}

.menu-item {
  color: #CBD5E1;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.15s;
}

.menu-item:hover, .menu-item.active {
  color: var(--accent-amber);
}

.menu-item.flash {
  color: #FCD34D;
}

.navbar-audit-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-green);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.horizontal-tabs-scroller {
  background-color: var(--bg-subbar);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.horizontal-tabs-scroller::-webkit-scrollbar {
  display: none;
}

.tabs-inner {
  display: flex;
  gap: 10px;
  padding: 8px 16px;
}

.tab-chip {
  color: #C7D2FE;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.tab-chip.current, .tab-chip:hover {
  background: var(--accent-amber);
  color: #181335;
  font-weight: 700;
}

.home-hero-jumbotron {
  background: radial-gradient(circle at 80% 20%, #31256B, var(--bg-hero));
  color: var(--text-white);
  padding: 24px 0 36px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-tag-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  background-color: var(--accent-amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-amber);
}

.hero-main-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.hero-subtext {
  color: #C7D2FE;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.search-input-shell {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.search-ico {
  padding: 0 10px;
  font-size: 16px;
}

.search-input-shell input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-main);
}

.btn-search-trigger {
  background: var(--accent-amber);
  color: #181335;
  border: none;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.hero-featured-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.featured-ribbon {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-amber);
  margin-bottom: 12px;
}

.featured-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.featured-banner-logo {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  overflow: hidden;
  background: #2D235D;
}

.featured-app-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.featured-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
}

.gold-stars {
  color: var(--accent-amber);
}

.shield-clean-pill {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.featured-description {
  color: #C7D2FE;
  font-size: 13px;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-cta-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-hero-primary {
  background: var(--accent-amber);
  color: #181335;
  font-weight: 800;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.btn-hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}

.body-split-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 24px;
  padding-bottom: 40px;
}

.primary-stream {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.unit-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.unit-main-heading {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.unit-sub-heading {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 2px;
}

.unit-link-more {
  color: var(--accent-purple);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.app-card-stream {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-card-cell {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  gap: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.app-card-cell:active {
  transform: scale(0.99);
}

.cell-main-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.cell-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  overflow: hidden;
  background: #E5E7EB;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.logo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2D235D, #181335);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.cell-content {
  flex: 1;
  min-width: 0;
}

.cell-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cell-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  margin-bottom: 2px;
}

.cell-badge-verified {
  color: var(--accent-green);
  font-weight: 700;
}

.cell-rating {
  color: #D97706;
  font-weight: 700;
}

.cell-size {
  color: var(--text-muted);
}

.cell-desc {
  font-size: 12px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cell-actions {
  flex-shrink: 0;
}

.btn-cell-download {
  background: #FEF3C7;
  color: #B45309;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.guide-feature-box {
  background: linear-gradient(135deg, #231B4B, #130E2E);
  color: var(--text-white);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-feature-copy h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.guide-feature-copy p {
  color: #C7D2FE;
  font-size: 13px;
  margin-bottom: 12px;
}

.install-pills {
  display: flex;
  gap: 6px;
}

.ipill {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ipill strong {
  background: var(--accent-amber);
  color: #181335;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.btn-guide-action {
  background: var(--accent-amber);
  color: #181335;
  font-weight: 800;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.secondary-stream {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.side-panel-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.ranking-stream {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-rank-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}

.app-rank-row:hover {
  background: #F8FAFC;
}

.rank-num {
  font-size: 14px;
  font-weight: 800;
  color: #9CA3AF;
  min-width: 20px;
  text-align: center;
}

.rank-num.rank-1 { color: #F59E0B; }
.rank-num.rank-2 { color: #94A3B8; }
.rank-num.rank-3 { color: #D97706; }

.rank-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  background: #E5E7EB;
  flex-shrink: 0;
}

.rank-info {
  flex: 1;
  overflow: hidden;
}

.rank-title {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.rank-button {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-purple);
  background: #EDE9FE;
  padding: 4px 8px;
  border-radius: 6px;
}

.tags-flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trend-tag {
  background: #F1F5F9;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
  color: #475569;
}

.category-jumbo {
  background: var(--bg-hero);
  color: var(--text-white);
  padding: 24px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumb {
  font-size: 12px;
  color: #A5B4FC;
  margin-bottom: 8px;
}

.breadcrumb a {
  color: #E0E7FF;
}

.cat-headline {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.cat-subtext {
  font-size: 13px;
  color: #C7D2FE;
  margin-bottom: 12px;
}

.cat-notice-banner {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12px;
  color: #E0E7FF;
  display: flex;
  gap: 8px;
}

.category-menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-menu-link {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: #F8FAFC;
  font-size: 13px;
  font-weight: 600;
}

.cat-menu-link:hover {
  background: var(--accent-amber);
  color: #181335;
}

.pagination-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.p-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  font-weight: 700;
  font-size: 13px;
}

.p-btn.current {
  background: var(--accent-amber);
  border-color: var(--accent-amber);
  color: #181335;
}

.detail-hero-band {
  background: var(--bg-hero);
  color: var(--text-white);
  padding: 20px 0 28px;
}

.detail-card-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.detail-icon-frame {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  overflow: hidden;
  background: #2D235D;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.detail-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.detail-publisher {
  font-size: 13px;
  color: #A5B4FC;
  margin-bottom: 12px;
}

.badge-trust {
  color: #34D399;
  background: rgba(16, 185, 129, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
}

.detail-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 16px;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  color: #E0E7FF;
}

.detail-btn-row {
  display: flex;
  gap: 10px;
}

.btn-action-download {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-amber);
  color: #181335;
  font-weight: 800;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(255, 159, 10, 0.35);
}

.btn-action-guide {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.verified-integrity-card {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vic-icon {
  font-size: 26px;
}

.vic-copy strong {
  color: #065F46;
  font-size: 14px;
  display: block;
}

.vic-copy p {
  color: #047857;
  font-size: 12px;
  margin: 0;
}

.standard-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.panel-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.typography-body {
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
}

.typography-body p {
  margin-bottom: 12px;
}

.table-wrap {
  overflow-x: auto;
}

.specs-grid-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.specs-grid-table th, .specs-grid-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: left;
}

.specs-grid-table th {
  color: var(--text-muted);
  width: 35%;
  font-weight: 600;
}

.specs-grid-table td {
  font-weight: 600;
  color: #1F2937;
}

.walkthrough-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.walkthrough-card {
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  padding: 14px;
}

.wt-index {
  font-size: 18px;
  font-weight: 900;
  color: #D1D5DB;
  display: block;
}

.walkthrough-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.walkthrough-card p {
  font-size: 12px;
  color: var(--text-muted);
}

.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-accordion-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 10px 14px;
}

.faq-accordion-item summary {
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.faq-accordion-item p {
  font-size: 12px;
  color: #4B5563;
  margin-top: 8px;
  line-height: 1.5;
}

.simple-page-shell {
  padding-top: 24px;
  padding-bottom: 40px;
}

.simple-article h1 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.lead-summary {
  color: var(--text-muted);
  font-size: 14px;
}

.soft-divider {
  border: 0;
  height: 1px;
  background: var(--border-subtle);
  margin: 16px 0;
}

.simple-article h2 {
  font-size: 16px;
  margin: 16px 0 8px;
}

.simple-article p, .simple-article li {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.simple-article ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.contact-form-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.form-double-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-ctrl {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-subtle);
  font-family: inherit;
  font-size: 13px;
}

.form-ctrl.text-area {
  min-height: 110px;
  resize: vertical;
}

.btn-send-ticket {
  background: var(--accent-amber);
  color: #181335;
  border: none;
  font-weight: 800;
  padding: 12px;
  border-radius: var(--radius-xs);
  cursor: pointer;
}

.site-footer {
  background: #110D25;
  color: #9CA3AF;
  padding: 36px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 28px;
}

.summary-paragraph {
  font-size: 12px;
  line-height: 1.6;
  margin: 12px 0 14px;
}

.security-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sec-pill {
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  color: #D1D5DB;
}

.group-title {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.col-links-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.col-links-group a {
  font-size: 13px;
  color: #9CA3AF;
}

.col-links-group a:hover {
  color: var(--accent-amber);
}

.footer-legal-bar {
  background: #0B081A;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-bar-inner p {
  font-size: 11px;
  line-height: 1.5;
  color: #6B7280;
}

.copyright-tag {
  margin-top: 6px;
  color: #4B5563;
}

@media (min-width: 640px) {
  .form-double-row {
    flex-direction: row;
  }
}

@media (min-width: 900px) {
  .desktop-menu {
    display: flex;
  }
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }
  .hero-text-col {
    flex: 1.1;
  }
  .hero-featured-box {
    flex: 0.9;
  }
  .hero-main-title {
    font-size: 34px;
  }
  .featured-grid {
    flex-direction: row;
  }
  .featured-cta-container {
    flex-direction: row;
  }
  .body-split-layout {
    flex-direction: row;
    gap: 30px;
  }
  .primary-stream {
    flex: 1;
  }
  .secondary-stream {
    width: 320px;
    flex-shrink: 0;
  }
  .sticky-panel {
    position: sticky;
    top: 80px;
  }
  .app-card-stream {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .walkthrough-grid {
    flex-direction: row;
  }
  .walkthrough-card {
    flex: 1;
  }
  .detail-card-panel {
    flex-direction: row;
    align-items: center;
  }
  .detail-icon-frame {
    width: 104px;
    height: 104px;
  }
  .detail-title {
    font-size: 28px;
  }
  .detail-btn-row {
    max-width: 380px;
  }
  .footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 1120px) {
  .app-card-stream {
    grid-template-columns: repeat(2, 1fr);
  }
}
