.mfwa-player-root {
    display: flex;
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border-radius: 12px;
    overflow: hidden;
    max-width: 1000px;
    height: 480px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 20px 0;
}

.mfwa-main-card {
    flex: 1.8;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mfwa-main-content {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    box-sizing: border-box;
}

.mfwa-badge {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

.mfwa-play-btn {
    width: 80px;
    height: 80px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.mfwa-play-btn:hover { transform: scale(1.1); }
.mfwa-play-icon { font-size: 32px; margin-left: 5px; }

.mfwa-watch-bar {
    font-size: 14px;
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 30px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.2);
}

.mfwa-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
}

.mfwa-sidebar-header {
    background: #e31e24; /* Accurate red from the screenshot */
    padding: 18px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mfwa-episode-list {
    overflow-y: auto;
    flex-grow: 1;
}

/* Custom scrollbar for the sidebar */
.mfwa-episode-list::-webkit-scrollbar { width: 6px; }
.mfwa-episode-list::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

.mfwa-list-item {
    display: flex;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #1a1a1a;
    align-items: center;
    transition: background 0.3s;
}

.mfwa-list-item:hover { background: #1a1a1a; }

.mfwa-list-item img {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0;
}

.mfwa-list-info h3 {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    color: #eee;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mfwa-player-root { flex-direction: column; height: auto; }
    .mfwa-main-card { height: 300px; }
}