.featured-section {
  position: relative;
  margin-top: -95px;
  padding-bottom: 72px;
  z-index: 20;
  overflow-x: clip;
}

.featured-swiper {
  overflow: hidden;
  padding-top: 6px;
}

.featured-swiper .swiper-slide {
  height: auto;
}

.featured-card {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(219, 229, 240, 0.95);
  border-radius: 28px;
  box-shadow: none;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.featured-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
  border-color: #cfe0ff;
}

.featured-card-top {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.featured-card-bg {
  position: absolute;
  inset: 0;
  background: transparent;
}

.featured-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04);
  padding: 0;
  box-sizing: border-box;
  display: block;
}

.featured-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(37, 99, 235, 0.26)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.05));
}

.featured-card-bg-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(56, 189, 248, 0.92));
}

.featured-card-body {
  position: relative;
  padding: 0 22px 22px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
}

.featured-card-logo-wrap {
  position: relative;
  margin-top: -48px;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.featured-card-logo {
  width: 98px;
  height: 98px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.featured-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  display: block;
}

.featured-card-logo span {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
}

.featured-card-content {
  text-align: center;
}

.featured-card-content h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.featured-card-meta-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.featured-meta-dot {
  color: #94a3b8;
  font-weight: 700;
}

.featured-card-controls-bar {
  margin-top: auto;
  margin-left: -22px;
  margin-right: -22px;
  margin-bottom: -22px;
  background: linear-gradient(135deg, #5dd67b 0%, #42c86a 100%);
  padding: 12px 18px;
}

.featured-card-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.featured-icon-btn,
.featured-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    opacity var(--transition);
}

.featured-icon-btn svg,
.featured-play-btn svg {
  display: block;
  flex-shrink: 0;
}

.featured-icon-btn svg {
  width: 24px;
  height: 24px;
  transition: transform var(--transition), opacity var(--transition);
}

.featured-play-btn svg {
  width: 36px;
  height: 36px;
  margin-left: 3px;
}

.featured-icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 3px solid rgba(255, 255, 255, 0.92);
  color: #ffffff;
  box-shadow: none;
}

.featured-icon-btn:hover {
  transform: translateY(-1px) scale(1.04);
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.featured-icon-btn:hover svg {
  transform: scale(1.08);
}

.featured-play-btn {
  width: 92px;
  height: 92px;
  margin-top: -28px;
  margin-bottom: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #63df82 0%, #37c964 100%);
  color: #ffffff;
  border: 4px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 32px rgba(34, 197, 94, 0.22);
}

.featured-play-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 18px 36px rgba(239, 68, 68, 0.28);
}

.featured-favorite-form {
  margin: 0;
  display: inline-flex;
}

button.featured-icon-btn.featured-favorite-btn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.96);
  background: linear-gradient(135deg, #63df82 0%, #37c964 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.22);
}

button.featured-icon-btn.featured-favorite-btn:hover {
  background: linear-gradient(135deg, #55d876 0%, #2fbb5b 100%);
  border-color: #ffffff;
  color: #ffffff;
}

button.featured-icon-btn.featured-favorite-btn.is-active {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border: 3px solid rgba(255, 255, 255, 0.96);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(239, 68, 68, 0.24);
}

button.featured-icon-btn.featured-favorite-btn.is-active:hover {
  background: linear-gradient(135deg, #f05252 0%, #c81e1e 100%);
  border-color: #ffffff;
  color: #ffffff;
}

.featured-icon-btn:hover svg,
.featured-play-btn:hover svg {
  opacity: 0.98;
}

.featured-report-btn {
  cursor: pointer;
}

.featured-report-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  color: #ffffff;
}

.featured-report-btn svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 991px) {
  .featured-section {
    margin-top: -70px;
    padding-bottom: 60px;
  }

  .featured-swiper {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .featured-section {
    margin-top: 12px;
    padding-bottom: 48px;
  }

  .featured-swiper {
    padding-right: 0;
  }

  .featured-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .featured-card-top {
    height: 156px;
  }

  .featured-card-body {
    min-height: 232px;
    padding: 0 18px 18px;
  }

  .featured-card-logo-wrap {
    margin-top: -42px;
  }

  .featured-card-logo {
    width: 86px;
    height: 86px;
    border-radius: 22px;
  }

  .featured-card-content h3 {
    font-size: 1.16rem;
  }

  .featured-card-meta-line {
    font-size: 0.9rem;
    gap: 6px;
  }

  .featured-card-controls-bar {
    margin-left: -18px;
    margin-right: -18px;
    margin-bottom: -18px;
    padding: 10px 14px;
  }

  .featured-card-controls {
    gap: 14px;
  }

  .featured-play-btn {
    width: 82px;
    height: 82px;
    margin-top: -24px;
    margin-bottom: -6px;
  }

  .featured-play-btn svg {
    width: 30px;
    height: 30px;
  }

  .featured-icon-btn {
    width: 42px;
    height: 42px;
  }

  .featured-icon-btn svg {
    width: 21px;
    height: 21px;
  }
}