 body {
background-color: #7700ff88;
color: white;
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
    padding: 20px;
    }
        h1 {
            color: #000000;
            margin-bottom: 20px;
        }
        .destaques iframe {
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(255,255,255,0.2);
            margin-bottom: 20px;
        }
        .playlist {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .playlist a {
            text-decoration: none;
            color: white;
            transition: transform 0.2s;
        }
        .playlist a:hover {
            transform: scale(1.05);
            color: #ff8888;
        }
        .playlist img {
            width: 200px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(255,255,255,0.2);
        }