/* Social & Live Stream Section */
.social-live-section {
  padding: 6rem 2rem;
  background: radial-gradient(circle at 50% 50%, rgba(35, 22, 45, 0.4) 0%, rgba(12, 11, 15, 0.9) 70%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.social-container {
  max-width: 1440px;
  margin: 0 auto;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(235, 54, 120, 0.15);
  color: #ff528c;
  border: 1px solid rgba(235, 54, 120, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ff528c;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.9); opacity: 0.7; box-shadow: 0 0 0 0 rgba(255, 82, 140, 0.7); }
  70% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 0 8px rgba(255, 82, 140, 0); }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.social-reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.reel-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: all 0.4s var(--transition-smooth);
}

.reel-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  box-shadow: 0 16px 35px rgba(0,0,0,0.6);
}

.reel-media-wrap {
  position: relative;
  padding-top: 177.7%; /* 9:16 vertical ratio */
  background: #121018;
}

.reel-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.reel-card:hover .reel-cover {
  transform: scale(1.05);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 90%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
}

.reel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reel-platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: #fff;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(230, 200, 135, 0.85);
  color: #0c0b0f;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: all 0.3s ease;
  cursor: pointer;
}

.reel-card:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 1;
  background: var(--gold-light);
}

.reel-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.reel-caption {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.35;
}

.reel-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--gold-primary);
}

/* Responsive Rules (Social) */
@media (max-width: 1024px) {
  .social-reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .social-reels-grid {
    grid-template-columns: 1fr;
  }
}
