/* Enhanced Featured Apps Section */
.featured-apps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.featured-app-card {
  background: linear-gradient(145deg, #1e2a4a 0%, #0d1526 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

.app-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  transition: transform 0.5s ease;
  padding: 10px;
}

.featured-app-card:hover .app-image img {
  transform: scale(1.05);
}

.app-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.app-title {
  color: white;
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.app-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.app-store-link, .app-website-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.app-store-link {
  background: linear-gradient(90deg, #3498db, #2980b9);
  color: white;
}

.app-website-link {
  background: linear-gradient(90deg, #9b59b6, #8e44ad);
  color: white;
}

.app-store-link:hover, .app-website-link:hover {
  transform: translateY(-2px);
  color: white;
  filter: brightness(1.1);
}

.app-store-link i, .app-website-link i {
  margin-right: 5px;
}

/* Store icons styling */
.store-icon {
  width: auto;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .featured-apps-container {
    grid-template-columns: 1fr;
  }
  
  .app-image {
    height: 180px;
  }
}
