body.movie-detail-page {
    background: linear-gradient(180deg, rgb(31, 29, 43) 0%, rgb(20, 19, 30) 100%) !important;
}

.movie-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 0.3;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 29, 43, 0.6) 0%, rgba(31, 29, 43, 0.95) 70%, rgb(31, 29, 43) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 60px;
    gap: 32px;
}

.movie-posters-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    width: 300px;
}

.movie-poster-landscape,
.movie-poster-vertical {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(78, 205, 196, 0.3);
    object-fit: cover;
}

.movie-poster-landscape { aspect-ratio: 16 / 9; }
.movie-poster-vertical { aspect-ratio: 2 / 3; }

.movie-info-hero { flex: 1; min-width: 0; }

.movie-title-hero {
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.movie-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(85, 98, 231, 0.2));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.meta-badge i { color: #4ecdc4; }

.rating-badge-large {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 193, 7, 0.25));
    border-color: rgba(255, 215, 0, 0.4);
}

.rating-badge-large i { color: #ffd700; }

.movie-description-short {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #4ecdc4, #5562e7);
    color: #fff;
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.language-variants {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 12px 16px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 12px;
    font-size: 14px;
}

.language-variants-label { color: rgba(255, 255, 255, 0.65); font-weight: 600; }
.language-variant-link { color: #4ecdc4; text-decoration: none; }
.language-variant-current { color: #fff; font-weight: 700; }

.info-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.5), rgba(60, 60, 80, 0.3));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(78, 205, 196, 0.15);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i { color: #4ecdc4; font-size: 28px; }

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.detail-label {
    font-size: 13px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-top: 8px;
}

.watch-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.watch-option-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(78, 205, 196, 0.35);
    color: #fff;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.18), rgba(85, 98, 231, 0.18));
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.capability-chip,
.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.tag-chip { color: #4ecdc4; border-color: rgba(78, 205, 196, 0.35); }

.trailer-embed-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.trailer-poster-btn {
    position: absolute;
    inset: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trailer-poster-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.trailer-play-icon {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(78, 205, 196, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stills-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
}

.still-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
}

.still-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

.cast-card {
    text-align: center;
}

.cast-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
}

.cast-name { color: #fff; font-weight: 600; font-size: 14px; margin: 0; }
.cast-role { color: #888; font-size: 12px; margin: 4px 0 0; }

.why-list {
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.similar-movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.similar-movie-card {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(42, 42, 42, 0.4);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.similar-movie-card:hover { transform: translateY(-6px); }

.similar-movie-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.similar-movie-info { padding: 12px; }
.similar-movie-title { font-size: 14px; font-weight: 600; color: #fff; margin: 0; }

@media (max-width: 768px) {
    .movie-hero { height: auto; min-height: 0; }
    .hero-content { flex-direction: column; align-items: center; text-align: center; padding: 40px 20px; }
    .movie-posters-row { width: 200px; }
    .movie-title-hero { font-size: 28px; }
    .movie-meta { justify-content: center; }
    .hero-actions { justify-content: center; width: 100%; }
    .info-card { padding: 24px 20px; }
}
