/* ===================== */
/* 🔥 TRENDING GRID */
/* ===================== */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* CARD */
.trending-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;

  background: rgba(255,255,255,0.03);
  transition: 0.3s ease;
}

/* IMAGE */
.trending-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 🔥 INFO OVERLAY */
.trending-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 8px;

  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.trending-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.trending-genre {
  font-size: 10px;
  opacity: 0.7;
  color: #00f0ff;
}

/* ▶ PLAY */
.trending-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 18px;
  color: white;

  background: transparent;
  border: none;

  opacity: 0;
  transition: 0.2s ease;
  cursor: pointer;
}

.trending-card:hover .trending-play {
  opacity: 1;
}

/* 🔥 HOVER GLOW */
.trending-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,240,255,0.2),
              0 0 10px rgba(255,0,80,0.15);
}

/* 🔁 SMOOTH SWAP */
.fade-out {
  opacity: 0;
  transform: scale(0.9);
}

.fade-in {
  opacity: 1;
  transform: scale(1);
}
/* ===============================
📱 TRENDING PLAY - MOBILE BIG + VISIBLE
=============================== */
.trending-card {
  position: relative;
}

.trending-play {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(6px) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  opacity: 1 !important; /* 🔥 ALWAYS VISIBLE */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
}

.trending-play svg {
  width: 28px !important; /* 🔥 BIG ICON */
  height: 28px !important;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.8)) !important;
}

/* Active state */
.trending-card.active .trending-play {
  background: rgba(97, 60, 68, 0.9) !important; /* Dopetone red when playing */
  transform: translate(-50%, -50%) scale(1.05) !important;
}

/* Mobile specific - even bigger tap target */
@media (max-width: 768px) {
  .trending-play {
    width: 52px !important;
    height: 52px !important;
  }
  
  .trending-play svg {
    width: 30px !important;
    height: 30px !important;
  }
}
