.youtube-shorts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.youtube-shorts-container .short {
    width: 300px; /* Adjust width as needed */
    text-align: center;
    transition: transform 0.3s, opacity 0.3s;
}

.youtube-player {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-player .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    outline: none;
}

.youtube-player .play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}