body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Main container */
.container {
    text-align: center;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
    animation: fadeIn 1.5s ease;
}

/* Cover image */
.cover {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Song title */
h1 {
    margin-bottom: 20px;
    font-size: 26px;
    color: #333333;
}

/* Streaming links container */
.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

/* Button styling */
.btn {
    display: inline-block;
    padding: 14px 20px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Different platform colors */
.spotify {
    background-color: #1DB954;
}

.apple {
    background-color: #000000;
}

.boomplay {
    background-color: #0033cc;
}

.audiomack {
    background-color: #ff8800;
}

/* Hover effects */
.btn:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}