.ytpro-container {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.ytpro-main-player {
    flex: 2;
    position: relative;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.ytpro-thumbnail {
    position: relative;
    cursor: pointer;
}

.ytpro-thumbnail img {
    width: 100%;
}

.ytpro-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 50px;
    background: red;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.ytpro-iframe-container iframe {
    width: 100%;
    height: 500px;
}

.ytpro-logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 80px;
}

.ytpro-playlist {
    flex: 1;
    max-height: 500px;
    overflow-y: auto;
}

.ytpro-item {
    display: flex;
    cursor: pointer;
    margin-bottom: 10px;
}

.ytpro-item img {
    width: 120px;
    margin-right: 10px;
}

.ytpro-item:hover {
    background: #f5f5f5;
}