/**
 * Movie Show Page - Tokyo Futuristic Style
 * Movies use: Cyan (#00f2ea) as primary color
 */

/* Hero Section */
.movie-hero {
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 3rem 0;
    margin-bottom: 3rem;
    position: relative;
}

.movie-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tiktok-cyan), var(--tiktok-pink));
}

/* Poster */
.movie-poster {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 242, 234, 0.3);
    border: 2px solid rgba(0, 242, 234, 0.3);
    width: 100%;
    max-width: 300px;
}

/* Info Cards */
.info-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(0, 242, 234, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-card h3 {
    color: var(--tiktok-cyan);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Category Badge */
.category-badge {
    background: rgba(0, 242, 234, 0.15);
    border: 1px solid rgba(0, 242, 234, 0.35);
    color: var(--tiktok-cyan);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.category-badge:hover {
    background: rgba(0, 242, 234, 0.25);
    border-color: var(--tiktok-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 242, 234, 0.3);
}

/* Actor Cards */
.actor-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(254, 44, 85, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.actor-card:hover {
    border-color: var(--tiktok-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(254, 44, 85, 0.3);
}

.actor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tiktok-pink), var(--tiktok-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    border: 2px solid rgba(254, 44, 85, 0.3);
    color: #000;
    font-weight: 800;
}

.actor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 2px solid rgba(254, 44, 85, 0.3);
    display: block;
}

/* Buttons */
.link-button {
    background: linear-gradient(135deg, var(--tiktok-cyan), var(--tiktok-blue));
    color: black;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border: none;
    line-height: 1;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.4);
    color: black;
}

.link-button.secondary {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(0, 242, 234, 0.3);
    color: var(--tiktok-cyan);
    font-weight: 700;
}

.link-button.secondary:hover {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-color: var(--tiktok-cyan);
    color: var(--tiktok-cyan);
}

.back-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    font-weight: 700;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--tiktok-cyan);
    color: var(--tiktok-cyan);
}

@media (max-width: 576px) {
    .back-button {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Meta */
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(8px);
}

.meta-pill:hover {
    border-color: rgba(0, 242, 234, 0.5);
    color: var(--tiktok-cyan);
    transform: translateY(-2px);
}

/* Hero Navigation Buttons */
.back-corner-hero {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.back-btn-hero {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-btn-hero:hover {
    background: rgba(0, 242, 234, 0.3);
    border-color: var(--tiktok-cyan);
    color: var(--tiktok-cyan);
    transform: translateX(-3px);
}

/* Favorite Button */
.favorite-corner-hero {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.favorite-btn-hero {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
}

.favorite-btn-hero:hover {
    background: rgba(0, 242, 234, 0.3);
    border-color: var(--tiktok-cyan);
    color: var(--tiktok-cyan);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 242, 234, 0.4);
}

.favorite-btn-hero.favorited {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.9), rgba(0, 168, 168, 0.9));
    border-color: var(--tiktok-cyan);
    color: white;
}

.favorite-btn-hero.favorited:hover {
    background: linear-gradient(135deg, rgba(0, 242, 234, 1), rgba(0, 168, 168, 1));
    box-shadow: 0 5px 20px rgba(0, 242, 234, 0.6);
    transform: scale(1.1);
}

.favorite-btn-hero:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Embed Wrapper */
.embed-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 234, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* YouTube Play Overlay */
.yt-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: background 0.2s ease;
}

.yt-play-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.yt-play-overlay i {
    font-size: 4rem;
    color: #ff0000;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease;
}

.yt-play-overlay:hover i {
    transform: scale(1.1);
}

/* Recommended Cards */
.recommended-card {
    background: linear-gradient(145deg, #111, #070707);
    border: 1px solid rgba(0, 242, 234, 0.18);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all .25s ease;
    text-decoration: none;
    display: block;
}

.recommended-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 234, 0.45);
    box-shadow: 0 10px 28px rgba(0, 242, 234, 0.15);
}

.recommended-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #0b0b0b;
}

.recommended-img-wrapper {
    position: relative;
    overflow: hidden;
}

.recommended-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.recommended-body {
    padding: 0.9rem 1rem 1rem;
}

.recommended-title {
    color: #fff;
    font-weight: 800;
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    line-height: 1.25;
}

.recommended-sub {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
}
