.snack-mp3-container {
    background: #121212; /* Dark background */
    color: #ffffff; /* White text */
    padding: 40px;
    border-radius: 15px;
    max-width: 700px;
    margin: 30px auto;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,255,255,0.3);
}

.snack-mp3-container h2 {
    color: #ffffff !important;
    font-size: 28px;
    margin-bottom: 25px;
    text-shadow: 0 0 5px #00E5FF;
}

.snack-mp3-container input {
    width: 85%;
    padding: 14px;
    background: #1a1a1a;
    border: 1px solid #00E5FF;
    color: #ffffff;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 16px;
}

.snack-mp3-container button {
    background: #00E5FF;
    color: #000;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.snack-mp3-container button:hover {
    background: #0088FF;
    color: #fff;
    transform: translateY(-2px);
}

#snack-result {
    margin-top: 25px;
    font-size: 16px;
    color: #00ffea;
}

.download-link {
    display: inline-block;
    margin-top: 15px;
    color: #00ff00;
    text-decoration: none;
    border: 1px solid #00ff00;
    padding: 10px 18px;
    border-radius: 6px;
}