body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    width: 80%;
    max-width: 900px;
    margin: 100px auto 20px;
}

video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.video-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #d8bffd;
    z-index: 10;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.video-list button {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background-color: rgba(138, 43, 226, 0.8);
    white-space: nowrap;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.video-list button:hover {
    background-color: rgba(138, 43, 226, 1);
    transform: scale(1.05);
}

.divider {
    width: 80%;
    max-width: 900px;
    margin: 15px auto 20px;
    border: 1px solid #d8bffd;
}

.divider2 {
    width: 80%;
    max-width: 900px;
    margin: 15px auto 20px;
    border: 1px solid #000;
}

.posts-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
}

.post-section {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.post-section .twitter-tweet {
    margin: 0 auto;
    max-width: 100%;
}