body {
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.app-wrapper {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.category-pill {
  transition: all 0.2s ease;
}

.category-pill:hover {
  transform: scale(1.05);
}

.category-pill.active {
  background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

.featured-card {
  background: linear-gradient(145deg, rgba(0, 122, 255, 0.15) 0%, rgba(88, 86, 214, 0.15) 100%);
  border: 1px solid rgba(0, 122, 255, 0.3);
}

.get-button {
  background: rgba(0, 122, 255, 0.2);
  color: #007AFF;
  transition: all 0.2s ease;
}

.get-button:hover {
  background: #007AFF;
  color: white;
}

.search-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 122, 255, 0.5);
  outline: none;
}

.rating-star {
  color: #FFD60A;
}

.scroll-container::-webkit-scrollbar {
  height: 6px;
}

.scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

.modal-overlay {
  animation: fadeIn 0.3s ease;
}

.modal-content {
  animation: slideUp 0.3s ease;
}

.app-screenshot {
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 9/16;
}

.review-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-item:last-child {
  border-bottom: none;
}

.app-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rating-btn {
  opacity: 0.4;
  transition: opacity 0.2s;
}

.rating-btn.selected {
  opacity: 1;
}

.heart-icon {
  transition: all 0.2s;
}

.heart-icon.wishlisted {
  fill: currentColor;
  color: #ff6b6b;
}

@view-transition { navigation: auto; }
