.featured-camgirl {
  box-sizing: border-box;
  margin-bottom: 2.5rem;
  width: 100%;
}

.featured-camgirl__header {
  margin-bottom: 1rem;
}

.featured-camgirl__eyebrow {
  align-items: center;
  color: var(--home-pink, #ff6584);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 0.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.featured-camgirl__live-dot {
  animation: featuredLivePulse 1.8s infinite;
  background: #22d986;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 217, 134, 0.8);
  display: inline-block;
  height: 8px;
  width: 8px;
}

@keyframes featuredLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 217, 134, 0.7);
    transform: scale(0.95);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(34, 217, 134, 0);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 217, 134, 0);
    transform: scale(0.95);
  }
}

.featured-camgirl__heading {
  border-left: 4px solid var(--home-pink, #ff6584);
  color: #ffffff;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  padding-left: 12px;
}

.featured-camgirl__card {
  background: linear-gradient(145deg, #1b161f 0%, #120e15 100%);
  border: 1px solid rgba(255, 101, 132, 0.28);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 101, 132, 0.12);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-top: 1rem;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.featured-camgirl__card:hover {
  border-color: rgba(255, 101, 132, 0.48);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.65), 0 0 32px rgba(255, 101, 132, 0.2);
}

.featured-camgirl__media {
  aspect-ratio: 16 / 9;
  background: #08060a;
  border-radius: 16px;
  flex: 1 1 52%;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.featured-camgirl__iframe {
  border: none;
  height: 100%;
  width: 100%;
}

.featured-camgirl__media-overlay {
  inset: 0;
  position: absolute;
  z-index: 2;
}

.featured-camgirl__badge {
  align-items: center;
  background: rgba(12, 10, 15, 0.85);
  border: 1px solid rgba(34, 217, 134, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  font-size: 0.68rem;
  font-weight: 800;
  gap: 0.4rem;
  left: 0.85rem;
  padding: 0.3rem 0.75rem;
  pointer-events: none;
  position: absolute;
  top: 0.85rem;
  z-index: 3;
}

.featured-camgirl__badge i {
  animation: featuredLivePulse 1.8s infinite;
  background: #22d986;
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

/* COLONNA DI DESTRA INFORMAZIONI (IDENTICA AL PROFILO) */
.featured-camgirl__info {
  display: flex;
  flex: 1 1 48%;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.featured-camgirl__breadcrumb {
  color: #a39ca8;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.featured-camgirl__breadcrumb a {
  color: #a39ca8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-camgirl__breadcrumb a:hover {
  color: #ffffff;
}

.featured-camgirl__breadcrumb span {
  margin: 0 0.35rem;
}

.featured-camgirl__live-status {
  align-items: center;
  color: #22d986;
  display: flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 0.45rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.featured-camgirl__live-status i {
  animation: featuredLivePulse 1.8s infinite;
  background: #22d986;
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  width: 6px;
}

.featured-camgirl__name {
  color: #ffffff;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  white-space: nowrap;
}

.featured-camgirl__lead {
  color: #d5ced7;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.featured-camgirl__facts {
  display: flex;
  gap: 2rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.featured-camgirl__fact-item {
  display: flex;
  flex-direction: column;
}

.featured-camgirl__fact-item dt {
  color: #a39ca8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-camgirl__fact-item dd {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0.2rem 0 0;
}

.featured-camgirl__signals {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.featured-camgirl__signal-card {
  display: flex;
  flex-direction: column;
}

.featured-camgirl__signal-card strong {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.featured-camgirl__signal-card small {
  color: #a39ca8;
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.featured-camgirl__cta-btn {
  align-items: center;
  background: linear-gradient(135deg, #ff2a6d 0%, #d8004e 55%, #a30036 100%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(255, 42, 109, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  font-size: 1rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 52px;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
}

.featured-camgirl__cta-btn:hover {
  background: linear-gradient(135deg, #ff4785 0%, #ef0a5b 55%, #b8003f 100%);
  box-shadow: 0 12px 30px rgba(255, 42, 109, 0.55);
  color: #ffffff;
  transform: translateY(-2px);
}

.featured-camgirl__cta-disclaimer {
  color: #8c8290;
  font-size: 0.75rem;
  margin: 0.5rem 0 0;
  text-align: center;
}

@media (max-width: 900px) {
  .featured-camgirl__card {
    flex-direction: column;
    padding: 1.25rem;
  }

  .featured-camgirl__media {
    flex: 1 1 auto;
    min-height: 220px;

    width: 100%;
  }

  .featured-camgirl__info {
    flex: 1 1 auto;
    width: 100%;
  }
}
