/* --- Music Stores Container & Typography --- */
.music-stores-container {
    background-color: #fcfcfc;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    max-width: 650px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.music-stores-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* --- Audiomack Player Embed --- */
.audiomack-embed {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Buttons Container --- */
.music-store-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* --- Base Button Styles --- */
.store-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.store-icon { display: flex; align-items: center; margin-right: 10px; }
.store-text { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.listen-on { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.platform-name { font-size: 10px; font-weight: 700; }

/* --- Specific Brand Colors --- */
.btn-audiomack { background-color: #ffa200; color: #000000 !important; }
.btn-youtube { background-color: #ff0000; }
.btn-spotify { background-color: #1db954; }
.btn-apple { background-color: #000000; }

/* --- Embedded Genius Lyrics Section --- */
.genius-lyrics-wrapper {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
}

.genius-header {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* The actual genius embed usually comes with its own styling, 
   but we can constrain it so it looks clean */
.rg_embed {
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
}

.btn-genius {
    display: block;
    text-align: center;
    background-color: #ffff64; /* Classic Genius Yellow */
    color: #000000 !important;
    font-size: 12px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: transform 0.2s ease;
    max-width: 200px;
    margin: 0 auto;
}

.btn-genius:hover {
    transform: translateY(-2px);
}

.genius-sponsor {
    text-align: center;
    margin-top: 15px;
    font-size: 11px;
    color: #888888;
}

.genius-sponsor strong {
    color: #000000;
}