.mv-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    flex: 1;
    width: 100%;
}

.video-panel {
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    outline: none;
}

.video-info {
    padding: 1rem 0.5rem;
}

.video-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-shadow: var(--text-shadow);
}

.video-info p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: var(--text-shadow);
}

.mv-list-panel {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 200px);
}

.list-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.list-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: var(--text-shadow);
}

.mv-list-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.mv-list-container::-webkit-scrollbar {
    width: 8px;
}

.mv-list-container::-webkit-scrollbar-thumb {
    background: rgba(150, 150, 150, 0.5);
    border-radius: 4px;
}

.mv-card {
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    background: var(--hover-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mv-card:hover {
    transform: translateY(-4px);
    background: rgba(150, 150, 150, 0.25);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.mv-card.active {
    border-left: 5px solid var(--primary);
    border-radius: 12px;
    background: rgba(150, 150, 150, 0.25);
}

.mv-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: var(--text-shadow);
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
    text-shadow: var(--text-shadow);
}

@media (max-width: 1000px) {
    .mv-content-grid {
        grid-template-columns: 1fr;
    }
    .mv-list-panel {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .video-info h2 {
        font-size: 1.3rem;
    }
    .mv-card {
        padding: 1rem;
    }
    .mv-card h4 {
        font-size: 1rem;
    }
}
