.showreel {
  background:
    linear-gradient(180deg, #050505 0%, #0a0810 50%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.showreel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 35px 35px;
  pointer-events: none;
}


.showreel__intro {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.showreel__video-wrap {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.showreel__video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.showreel__video-container video,
.showreel__video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* Placeholder */
.showreel__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
}

.showreel__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all var(--transition-base);
  animation: playPulse 2.5s ease-in-out infinite;
}

.showreel__play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.showreel__play-btn:hover {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.1);
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 20px transparent; }
}

.showreel__placeholder-text {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-subtle);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.showreel__cta {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
}

.showreel__cta-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  max-width: 420px;
  width: 100%;
}

.showreel__cta-link:hover {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.1);
}

.showreel__cta-yt {
  width: 32px;
  height: 32px;
  color: #ff0000;
  flex-shrink: 0;
}

.showreel__cta-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.showreel__cta-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
}

.showreel__cta-sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.showreel__cta-arrow {
  color: var(--text-subtle);
  flex-shrink: 0;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.showreel__cta-link:hover .showreel__cta-arrow {
  transform: translateX(4px);
  color: #ff0000;
}

@media (max-width: 768px) {
  .showreel__intro {
    font-size: var(--text-sm);
  }

  .showreel__video-container {
    border-radius: var(--radius-sm);
  }
}
