.about-yt-playlists {
    margin: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.btn-click-eft {
    color: #fff;
    background: rgb(224, 56, 56);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 7px 8px 7px rgba(0, 0, 0, 0.19);
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 1100px;
    margin-top: 20px;
}

.btn-click-eft:hover {
    background: rgb(255, 0, 0);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}

.btn-click-eft:active {
    transform: scale(0.9);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}

.yt-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.yt-btn {
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.one {
    background-color: #4CAF50; /* Green */
}

.two {
    background-color: #2196F3; /* Blue */
}

.three {
    background-color: #FF9800; /* Orange */
}

.four {
    background-color: #9C27B0; /* Purple */
}