body {
    margin: 0;
    background: #111;
    font-family: Arial, sans-serif;
}

#videos-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.video-container {
    width: 65%;
    max-width: 650px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.load-more {
    background: #222;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.load-more:hover {
    background: #333;
}

@media (max-width: 768px) {
    .video-container {
        width: 95%;
    }
}
