.detail-container {
    padding: 20px 0;
}

.detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.detail-breadcrumb a:hover {
    color: #ff4d4d;
}

.breadcrumb-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.breadcrumb-current {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

.detail-hero {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-poster {
    width: 320px;
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 2 / 3;
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-poster:hover .poster-overlay {
    opacity: 1;
}

.play-button-large {
    width: 70px;
    height: 70px;
    background: rgba(229, 9, 20, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.play-button-large:hover {
    background: #ff4d4d;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.6);
}

.play-icon-large {
    font-size: 28px;
    color: #ffffff;
    margin-left: 6px;
}

.hero-info {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.detail-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
    border: none;
    cursor: pointer;
}

.action-btn.primary {
    background: linear-gradient(135deg, #e50914 0%, #ff4d4d 100%);
    color: #ffffff;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card,
.share-card {
    background: #252525;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 100px;
    flex-shrink: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.info-value {
    font-size: 13px;
    color: #ffffff;
}

.info-value a {
    color: #ff4d4d;
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}

.share-content {
    margin-top: 8px;
}

.share-input-wrap {
    display: flex;
    gap: 10px;
}

.share-input-wrap input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    outline: none;
    transition: all 0.2s ease;
}

.share-input-wrap input:focus {
    border-color: #e50914;
}

.copy-btn {
    padding: 10px 20px;
    background: rgba(229, 9, 20, 0.9);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #ff4d4d;
}

.not-found {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.not-found-icon {
    font-size: 72px;
    opacity: 0.5;
}

.not-found h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.not-found p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 768px) {
    .detail-container {
        padding: 14px 0;
    }

    .detail-hero {
        flex-direction: column;
        gap: 0;
    }

    .hero-poster {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .hero-info {
        padding: 16px;
    }

    .detail-title {
        font-size: 20px;
    }

    .detail-actions {
        flex-direction: column;
    }

    .action-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .info-card,
    .share-card {
        padding: 14px;
    }

    .share-input-wrap {
        flex-direction: column;
    }

    .copy-btn {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .detail-title {
        font-size: 18px;
    }

    .hero-info {
        padding: 12px;
    }

    .info-label {
        width: 80px;
        font-size: 12px;
    }

    .info-value {
        font-size: 12px;
    }

    .card-title {
        font-size: 14px;
    }
}
