.recommendations-section {
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 30px;
}

.reco-text {
  text-align: center;
  max-width: 900px;
    margin: 0 auto;
}

.reco-text h3 {
  margin-bottom: 12px;
}


.reco-videos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.reco-video-card {
  width: 450px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--neon-color);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 12px var(--neon-color);
}

.reco-video-card iframe {
  width: 100%;
  aspect-ratio: 9 / 16; 
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}


.reco-video-card h4 {
  margin-bottom: 10px;
  color: var(--neon-color);
}

.reco-video-card h4 a {
  color: var(--neon-color);
  text-decoration: none;
  text-shadow: 0 0 6px var(--neon-color);
}

.reco-video-card h4 a:hover {
  text-shadow: 0 0 12px var(--neon-color);
}


.reco-links {
  margin-top: 8px;
  text-align: center;
  opacity: 0.85;
  font-size: 0.95rem;
}

.reco-links span {
  margin-right: 6px;
  color: var(--neon-color);
}

.creator-link {
  color: var(--neon-color);
  text-shadow: 0 0 5px var(--neon-color);
  text-decoration: none;
  transition: 0.2s;
}

.creator-link:hover {
  text-shadow: 0 0 12px var(--neon-color);
}


.reco-video-card h4 a {
  font-weight: bold;
  color: #00ffff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.reco-video-card h4 a:hover {
  border-bottom: 1px solid #00ffff;
}

.section-title h1 {
  word-wrap: break-word;
  hyphens: auto;
  text-align: center;
}

.creator-youtube {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.yt-icon {
  width: 16px;
  height: 16px;
  fill: #ff0000; 
  filter: drop-shadow(0 0 4px #ff000088);
  transform: translateY(1px);
}
.reco-video-card h4 a {
  font-weight: bold;
  color: #00ffff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.reco-video-card h4 a:hover {
  border-bottom: 1px solid #00ffff;
}

.reco-video {
  width: 100%;
  aspect-ratio: 9 / 16; 
  border-radius: 12px;
  background: black;
  box-shadow: 0 0 20px #00ffff44;
  display: block;
  object-fit: cover;
}
