

/* Card Container */
.custom-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Tag / Badge */
.badge-featured {
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;

      background-color: #edf4fc;
    color: black!important;
    font-weight: 800!important;
    font-size: 12px!important;

}

/* Text adjustments */
.card-title {
  color: black!important;
}

.text-muted-custom {
  font-size: 0.95rem;
  line-height: 1.6;
  color: black;
}
.feature-desc {color: black!important;}
/* Try Now Button */
.btn-custom {
  background-color: #7d52a8!important;
  color: white!important;
  border-radius: 12px;
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
}

.btn-custom:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Subtle image styling */
.image-glow {
  border: 1px solid rgba(255, 255, 255, 0.05);
}



/* Feature Card Wrapper */
.feature-card {
  background-color: #161920;
  border: 1px solid #222733;
  border-radius: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover:not(.locked-card) {
  transform: translateY(-2px);
}

/* Text Hierarchy */
.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}



/* Icon Containers */
.icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Unique Icon Colors & Variations */
.icon-green { background-color: #2ecc711c; color: #2ecc71; }
.icon-blue { background-color: #5294e229; color: #5294e2; }
.icon-purple { background-color: #bb86fc29; color: #bb86fc; }
.icon-orange { background-color: #ff9f4329; color: #ff9f43; }
.icon-muted { background-color: #222733; color: #525f7a; }

/* Status Badges */
.status-badge {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
}

.badge-available { background-color: #7d52a8; color: white; }
.badge-blue { background-color: #edf4fc; color: black; }
.badge-purple { background-color: #241931; color: #a370f7; }

/* Locked & Coming Soon states */
.locked-card {
  opacity: 0.5;
}

.status-text-muted {
  font-size: 0.85rem;
  color: #525f7a;
  font-weight: 500;
}

/* Interaction Link */
.open-link {
  color: #5294e2;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: color 0.15s ease;
}

.open-link:hover {
  color: #72a8ff;
}