.apps-header {
  text-align: center;
  padding: 24px 8px 24px 8px
}

.apps-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.search-bar {
  max-width: 300px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 4px 8px;
  border: 2px solid #e1e5e9;
  border-radius: 16px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  border-color: #42b883;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.app-card {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 1rem;
  max-width: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-icon-container {
  position: relative;
  flex-shrink: 0;
}

.leaf-background {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, #a8e6cf, #88d8a3); */
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon {
  font-size: 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.listening-icon {
  color: #ff6b35;
}

.reading-icon {
  color: #e74c3c;
}

.speaking-icon {
  color: #3498db;
}

.vocabulary-icon {
  color: #9b59b6;
}

.app-info {
  flex: 1;
}

.app-info h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
}

.platform-icons {
  display: flex;
  gap: 0.5rem;
}

.platform-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #f8f9fa;
  padding: 4px;
  border: 1px solid #e9ecef;
}

@media (max-width: 768px) {
  .apps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .apps-header h2 {
    font-size: 1.25rem;
  }
}

.platform-link {
  text-decoration: none;
  transition: transform 0.2s ease;
}

.platform-link:hover {
  transform: scale(1.1);
}

.app-image {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.no-results {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin: 2rem 0;
}
