        .movie-detail {
            max-width: 1000px;
            margin: 2rem auto;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }
        
        @media (min-width: 768px) {
            .movie-detail {
                flex-direction: row;
            }
        }
        
        .detail-poster {
            width: 100%;
            height: auto;
        }
        
        @media (min-width: 768px) {
            .detail-poster {
                width: 40%;
                height: auto;
            }
        }
        
        .detail-info {
            padding: 2rem;
            width: 100%;
        }
        
        @media (min-width: 768px) {
            .detail-info {
                width: 60%;
            }
        }
        
        .detail-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }
        
        .detail-director,
        .detail-cast,
        .detail-year,
        .detail-rating {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        
        .detail-description {
            margin-top: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        
        .back-button {
            display: inline-block;
            margin: 1.5rem 0;
            padding: 0.8rem 1.5rem;
            background: #ff9900;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
        }
        
        .back-button:hover {
            background: #ffaa33;
        }