.app-launcher-container {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.app-launcher-header {
  text-align: center;
  margin-bottom: 50px;
}

.app-launcher-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-launcher-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin: 0;
}

.app-launcher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.app-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--card-color);
}

.app-card:hover::before {
  transform: scaleX(1);
}

.app-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.app-card:hover .app-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.app-icon-emoji {
  font-size: 32px;
  line-height: 1;
}

.app-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.app-card-description {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.app-card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--card-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.app-card:hover .app-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .app-launcher-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  
  .app-launcher-title {
    font-size: 2rem;
  }
  
  .app-card {
    padding: 20px;
    min-height: 180px;
  }
  
  .app-card-icon {
    width: 56px;
    height: 56px;
  }
  
  .app-icon-emoji {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .app-launcher-grid {
    grid-template-columns: 1fr;
  }
  
  .app-launcher-container {
    padding: 20px 15px;
  }
}

