/* ========================================
   Demon Hunters Streaming Announcement
   ======================================== */

.demon-hunters-section {
  background: linear-gradient(160deg, #0d0d1a 0%, #1a1a2e 40%, #16213e 100%);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl) 0;
}

/* Ambient glow effects */
.demon-hunters-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(233, 69, 96, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.demon-hunters-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(15, 52, 96, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.demon-hunters-section .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.dh-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.dh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.15), rgba(233, 69, 96, 0.05));
  border: 1px solid rgba(233, 69, 96, 0.25);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-md);
  backdrop-filter: blur(10px);
}

.dh-badge svg {
  width: 10px;
  height: 10px;
  fill: var(--accent);
  animation: dhPulse 1.5s ease-in-out infinite;
}

@keyframes dhPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.dh-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto var(--spacing-sm);
}

.dh-title .dh-highlight {
  background: linear-gradient(135deg, var(--accent), #ff6b81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dh-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: var(--spacing-md) auto 0;
  border-radius: 2px;
}

/* Main Content Layout */
.dh-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-lg);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Poster Card */
.dh-poster-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(233, 69, 96, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.dh-poster-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(233, 69, 96, 0.12);
}

.dh-poster-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.dh-poster-card:hover img {
  transform: scale(1.03);
}

/* Poster glow ring */
.dh-poster-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.3), transparent 50%, rgba(15, 52, 96, 0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.dh-poster-card:hover .dh-poster-glow {
  opacity: 1;
}

/* Info Panel */
.dh-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.dh-text-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
}

.dh-text-content p:last-child {
  margin-bottom: 0;
}

.dh-text-content strong {
  color: var(--text-white);
  font-weight: 600;
}

/* Platform Tags */
.dh-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--spacing-sm);
}

.dh-platform-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: var(--transition-normal);
}

.dh-platform-tag:hover {
  background: rgba(233, 69, 96, 0.12);
  border-color: rgba(233, 69, 96, 0.3);
  color: var(--text-white);
  transform: translateY(-2px);
}

.dh-platform-tag svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Premiere Date Chip */
.dh-premiere-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(233, 69, 96, 0.08));
  border: 1px solid rgba(233, 69, 96, 0.3);
  color: var(--text-white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.dh-premiere-date svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ========== Responsive Design ========== */

@media (max-width: 1024px) {
  .dh-content-wrapper {
    gap: var(--spacing-md);
  }
}

@media (max-width: 868px) {
  .dh-content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 600px;
  }

  .dh-poster-card {
    max-width: 480px;
    margin: 0 auto;
  }

  .dh-info-panel {
    text-align: center;
  }

  .dh-text-content p {
    text-align: left;
  }

  .dh-platforms {
    justify-content: center;
  }

  .dh-premiere-date {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .demon-hunters-section {
    padding: var(--spacing-lg) 0;
  }

  .dh-title {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
  }

  .dh-text-content p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .dh-platform-tag {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .dh-premiere-date {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .dh-poster-card {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .dh-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
    letter-spacing: 1.5px;
  }

  .dh-platforms {
    flex-direction: column;
    align-items: stretch;
  }

  .dh-platform-tag {
    justify-content: center;
  }
}
