.videohub-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
}

.videohub-container {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.ratio-16-9 { padding-bottom: 56.25%; }
.ratio-9-16 { padding-bottom: 177.77%; }
.ratio-1-1 { padding-bottom: 100%; }
.ratio-4-3 { padding-bottom: 75%; }

.videohub-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.videohub-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    color: white;
    font-size: 40px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.videohub-play-btn:hover { background: #ff0000; transform: scale(1.1); }

.videohub-title {
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
}

.videohub-playlist-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.videohub-main-player { flex: 3; min-width: 250px; }
.videohub-playlist-sidebar { flex: 1; min-width: 200px; background: #f5f5f5; border-radius: 12px; padding: 15px; }

.playlist-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    cursor: pointer;
}

.playlist-item.active { background: #2271b1; color: white; }
.playlist-thumb { width: 80px; height: 45px; background-size: cover; border-radius: 4px; }
.playlist-title { font-size: 13px; font-weight: 500; }

.videohub-ad-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.videohub-ad-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: #ff0000;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
}