/* ============================================
   MP4 Page — YouTube Red Accent Override
   Loaded AFTER index.css. Only overrides accent colors.
   ============================================ */

.page-mp4 {
  --accent-blue: #FF1744;
  --accent-blue-hover: #ff4569;
  --accent-blue-glow: rgba(255, 23, 68, 0.3);
  --accent-blue-subtle: rgba(255, 23, 68, 0.1);
}

/* Hero gradient overlay — red tint */
.page-mp4 .hero::before {
  background: radial-gradient(ellipse at center top, rgba(255, 23, 68, 0.06) 0%, transparent 60%);
}

/* Badge dot — red */
.page-mp4 .hero__badge-dot {
  background: #FF1744;
  box-shadow: 0 0 8px rgba(255, 23, 68, 0.6);
}

/* Title accent gradient — red spectrum */
.page-mp4 .hero__title-accent {
  background: linear-gradient(135deg, #FF1744, #ff6b81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Input border glow — red */
.page-mp4 .hero__input-group {
  border-color: rgba(255, 23, 68, 0.15);
}

.page-mp4 .hero__input-group:focus-within {
  border-color: rgba(255, 23, 68, 0.35);
  box-shadow: 0 0 0 4px rgba(255, 23, 68, 0.08), var(--shadow-card);
}

/* Download button — red */
.page-mp4 .hero__input-btn {
  background: #FF1744;
  color: #ffffff;
}

.page-mp4 .hero__input-btn:hover {
  background: #ff4569;
  box-shadow: 0 0 24px rgba(255, 23, 68, 0.3);
}

/* Format card selected state — red */
.page-mp4 .format-card.is-selected {
  border-color: #FF1744;
  box-shadow: 0 0 0 1px #FF1744, 0 0 20px rgba(255, 23, 68, 0.1);
}

.page-mp4 .format-card__label {
  color: #ff6b81;
}

.page-mp4 .format-card.is-selected .format-card__label {
  color: #FF1744;
}

.page-mp4 .format-card__badge {
  background: #FF1744;
  color: #ffffff;
}

/* CTA button — red */
.page-mp4 .format-panel__cta {
  background: #FF1744;
  color: #ffffff;
  font-weight: var(--fw-semibold);
}

.page-mp4 .format-panel__cta:hover {
  background: #ff4569;
  box-shadow: 0 0 24px rgba(255, 23, 68, 0.3);
}

/* Progress bar — red */
.page-mp4 .progress-bar__fill {
  background: linear-gradient(90deg, #FF1744, #ff6b81);
}

/* Section labels — red */
.page-mp4 .section-label {
  color: #FF1744;
}

/* Step numbers — red */
.page-mp4 .step__number {
  border-color: rgba(255, 23, 68, 0.3);
  color: #FF1744;
}

/* Feature card hover — red */
.page-mp4 .feature-card:hover {
  border-color: rgba(255, 23, 68, 0.2);
  box-shadow: 0 0 30px rgba(255, 23, 68, 0.05);
}

/* FAQ chevron — red */
.page-mp4 .faq__item.is-open .faq__chevron {
  color: #FF1744;
}

/* Focus ring — red */
.page-mp4 *:focus-visible {
  outline-color: rgba(255, 23, 68, 0.5);
}

/* Nav logo accent — red */
.page-mp4 .nav__logo-icon {
  background: linear-gradient(135deg, #FF1744, #cc1236);
}

.page-mp4 .nav__logo-text span {
  color: #FF1744;
}

/* MP4 quality cards grid */
.mp4-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .mp4-cards {
    gap: 8px;
  }
}
