/* THE PAGE BASE */
body {
    background-color: #000;
    color: #ff00ff;
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 0;
}
 #music-hub-wrapper {
    width: 100%;
    margin: 0 auto;    /* Centers the entire wrapper */
    text-align: center; /* Centers the text inside the wrapper */
    padding-top: 40px;
}

.neon-pink-title {
    display: inline-block;
    margin: 0 auto;
    font-family: "Comic Sans MS", cursive;
    font-weight: 900;
    font-size: 55px; /* Big and loud */
    
    /* THE NEON PINK COLOR */
    color: #ff00ff; 
    
    /* THE GLOW (Old-school neon style) */
    text-shadow: 2px 2px 0px #000, 
                 4px 4px 0px #800080,
                 0 0 10px #ff00ff;
    
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* THE GRID */
.music-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* THE CLICKABLE CARDS (Retro Button Look) */
.music-card {
    background-color: #000;
    border: 5px outset #800080; /* Makes it look like a 3D physical button */
    padding: 20px;
    width: 300px;
    text-decoration: none;
    display: block;
}

.music-card:hover {
    border: 5px inset #ff00ff; /* Flips the 3D effect when you hover */
    background-color: #1a001a;
}

.card-title {
    font-family: "Comic Sans MS", cursive;
    font-size: 20px;
    font-weight: bold;
    color: #00ffff; /* Neon blue text */
    margin-bottom: 5px;
}

.card-desc {
    color: #ff69b4;
    font-size: 13px;
    font-weight: bold;
}

/* NAVIGATION BACK */
.back-home {
    margin-top: 40px;
}

.back-home a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    border: 2px dashed #ff00ff;
    padding: 5px;
}

.back-home a:hover {
    background-color: #ff00ff;
    color: #000;
}