:root {
  --bg-primary: #07090e;
  --bg-secondary: #0d121d;
  --bg-card: rgba(16, 23, 38, 0.78);
  --bg-card-hover: rgba(22, 31, 51, 0.9);
  --bg-input: rgba(13, 18, 29, 0.85);
  --bg-pill: rgba(255, 255, 255, 0.05);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(56, 189, 248, 0.35);
  --border-focus: #38bdf8;
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --accent-cyan: #38bdf8;
  --accent-blue: #3b82f6;
  --accent-indigo: #818cf8;
  --accent-emerald: #34d399;
  --accent-amber: #fbbf24;
  --accent-purple: #c084fc;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.15);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  scroll-behavior: smooth;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  background-color: var(--bg-primary);
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  -webkit-filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.45) 0%, rgba(2, 132, 199, 0) 70%);
  top: -100px;
  left: -80px;
  animation: floatOrb1 20s infinite ease-in-out alternate;
}

.orb-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(99, 102, 241, 0) 70%);
  top: 25%;
  right: -120px;
  animation: floatOrb2 24s infinite ease-in-out alternate;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0) 70%);
  bottom: -60px;
  left: 15%;
  animation: floatOrb3 18s infinite ease-in-out alternate;
}

.orb-4 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0) 70%);
  top: 65%;
  right: 25%;
  animation: floatOrb4 22s infinite ease-in-out alternate;
}

@keyframes floatOrb1 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(140px, 90px, 0) scale(1.18); }
  100% { transform: translate3d(70px, 180px, 0) scale(0.92); }
}

@keyframes floatOrb2 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-160px, 110px, 0) scale(1.12); }
  100% { transform: translate3d(-90px, -70px, 0) scale(0.94); }
}

@keyframes floatOrb3 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(110px, -130px, 0) scale(1.2); }
  100% { transform: translate3d(-90px, -70px, 0) scale(0.88); }
}

@keyframes floatOrb4 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(180px, -90px, 0) scale(1.15); }
  100% { transform: translate3d(90px, 120px, 0) scale(0.9); }
}

.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 0;
  opacity: 0.5;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.header {
  padding: 24px 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 36px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  flex-shrink: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #0284c7, #6366f1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
  flex-shrink: 0;
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--accent-emerald);
  font-weight: 500;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero {
  text-align: center;
  margin-bottom: 36px;
  padding: 8px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--accent-cyan);
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 0.96875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.quick-hub {
  background: rgba(13, 18, 29, 0.85);
  border: 1px solid var(--border-subtle);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  max-width: 860px;
  margin: 0 auto 36px;
  box-shadow: var(--shadow-card);
}

.quick-hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.quick-hub-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hub-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.hub-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: var(--transition);
  min-width: 0;
}

.hub-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
}

.hub-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
}

.hub-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  white-space: nowrap;
}

.hub-url {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8125rem;
  color: var(--text-main);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.copy-btn {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--accent-cyan);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  flex-shrink: 0;
}

.copy-btn:hover {
  background: var(--accent-cyan);
  color: #090c10;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.copy-btn.copied {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: #090c10;
}

.controls-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.search-box {
  display: flex;
  align-items: center;
  width: 320px;
  max-width: 100%;
  height: 42px;
  min-height: 42px;
  max-height: 42px;
  flex: 0 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0 16px;
  transition: var(--transition);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.search-box:focus-within {
  border-color: var(--border-focus);
  background: var(--bg-card-hover);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
}

.search-icon {
  width: 16px;
  height: 16px;
  color: var(--text-dim);
  flex-shrink: 0;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-input {
  flex: 1;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-size: 0.875rem;
  font-family: inherit;
  padding: 0;
  margin: 0;
}

.search-input::placeholder {
  color: var(--text-dim);
  font-size: 0.84375rem;
}

.platform-filters {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(13, 18, 29, 0.85);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex: 0 0 auto;
  box-sizing: border-box;
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  user-select: none;
}

.filter-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.filter-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.filter-btn.active {
  background: var(--accent-cyan);
  color: #07090e;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(56, 189, 248, 0.4);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.section-title-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  flex: 1 1 auto;
}

.section-title-main svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.section-title-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  white-space: nowrap;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  width: 100%;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
  opacity: 0;
  transition: var(--transition);
}

.app-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6), var(--shadow-glow);
}

.app-card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  min-width: 0;
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.app-icon svg {
  width: 26px;
  height: 26px;
}

.app-icon.immich { background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853); }
.app-icon.nextcloud { background: linear-gradient(135deg, #0082c9, #005a8c); }
.app-icon.v2rayng { background: linear-gradient(135deg, #5b5ea6, #9b59b6); }
.app-icon.hiddify { background: linear-gradient(135deg, #10b981, #059669); }
.app-icon.nekobox { background: linear-gradient(135deg, #f59e0b, #d97706); }
.app-icon.v2rayn { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.app-icon.wireguard { background: linear-gradient(135deg, #881414, #b91c1c); }
.app-icon.ios-vpn { background: linear-gradient(135deg, #6366f1, #4f46e5); }

.card-title-group {
  flex: 1;
  min-width: 0;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.live-badge {
  font-size: 0.6875rem;
  font-family: ui-monospace, monospace;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--accent-emerald);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-emerald);
}

.app-platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.os-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  border: 1px solid var(--border-subtle);
}

.card-desc {
  font-size: 0.84375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.download-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7, #2563eb);
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.84375rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.25);
  width: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #38bdf8, #3b82f6);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.35);
  transform: translateY(-1px);
}

.btn-secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  width: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78125rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: var(--accent-cyan);
}

.guide-toggle {
  background: transparent;
  border: 1px dashed var(--border-subtle);
  color: var(--text-muted);
  padding: 9px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  width: 100%;
}

.guide-toggle:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.04);
}

.guide-toggle svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.guide-toggle.open svg {
  transform: rotate(180deg);
}

.guide-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: rgba(9, 12, 19, 0.6);
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.guide-content.open {
  max-height: 1000px;
  border: 1px solid var(--border-subtle);
  padding: 14px;
  transition: max-height 0.4s ease-in-out;
}

.guide-step {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.guide-step:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 20px;
  height: 20px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text strong {
  color: var(--text-main);
}

.code-badge {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  color: var(--accent-cyan);
  border: 1px solid rgba(255, 255, 255, 0.08);
  word-break: break-all;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(16, 24, 39, 0.95);
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(56, 189, 248, 0.3);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  z-index: 1000;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}

.toast-container.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--accent-emerald);
  display: flex;
  flex-shrink: 0;
}

.footer {
  margin-top: 50px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-dim);
  font-size: 0.8125rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent-cyan);
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px 0 12px;
    margin-bottom: 20px;
  }

  .brand {
    justify-content: center;
  }

  .header-status {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .hero {
    margin-bottom: 20px;
    padding: 0;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 1.5625rem;
    line-height: 1.22;
    margin-bottom: 8px;
  }

  .hero-desc {
    font-size: 0.84375rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  
  .quick-hub {
    padding: 14px 14px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
  }

  .quick-hub-header {
    margin-bottom: 10px;
  }

  .quick-hub-title {
    font-size: 0.75rem;
  }

  .hub-items {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hub-card {
    padding: 10px 12px;
  }

  .hub-url {
    font-size: 0.78125rem;
  }

  
  .controls-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
  }

  .search-box {
    width: 100% !important;
    max-width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    flex: 0 0 40px !important;
    padding: 0 14px;
  }

  .search-icon {
    width: 15px;
    height: 15px;
    margin-right: 8px;
  }

  .search-input {
    font-size: 0.8125rem;
    height: 100%;
  }

  .search-input::placeholder {
    font-size: 0.8125rem;
  }

  
  .platform-filters {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 3px;
    gap: 3px;
    border-radius: var(--radius-full);
    justify-content: flex-start;
    flex: 0 0 auto !important;
  }

  .platform-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .filter-btn svg {
    width: 12px;
    height: 12px;
  }

  .section-title {
    margin: 22px 0 12px;
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .section-title-main {
    font-size: 1.0625rem;
    gap: 8px;
    display: inline-flex;
    align-items: center;
  }

  .section-title-main svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .section-title-badge {
    font-size: 0.6875rem;
    padding: 2px 8px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .app-card {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .app-icon {
    width: 42px;
    height: 42px;
  }

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

  .card-title {
    font-size: 1.05rem;
  }

  .btn-secondary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    margin-top: 32px;
    padding: 20px 0;
  }

  
  .bg-orb {
    filter: blur(95px);
    -webkit-filter: blur(95px);
    opacity: 0.42;
  }

  .orb-1 { width: 400px; height: 400px; top: -60px; left: -60px; }
  .orb-2 { width: 440px; height: 440px; top: 25%; right: -80px; }
  .orb-3 { width: 380px; height: 380px; bottom: 0; left: 10%; }
  .orb-4 { width: 360px; height: 360px; top: 60%; right: 10%; }
}
