body {
    /* Fondo oscuro con un degradado sutil y efecto de rejilla ciberpunk */
    background: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
    background-color: #050505;
    color: #00fff2; /* Cian Neón */
    font-family: 'Courier New', Courier, monospace; /* Fuente tipo terminal */
    text-align: center;
    text-transform: uppercase;
    overflow-x: hidden;
}

.logo {
    width: 260px;
    margin: 20px auto;
    display: block;
    filter: drop-shadow(0 0 10px #ff0055); /* Resplandor rosa neón */
}

.lema {
    color: #ff0055; /* Rosa neón */
    font-weight: bold;
    text-shadow: 2px 2px 0px #00fff2;
    letter-spacing: 4px;
}

.player-box {
    margin-top: 40px;
    border: 2px solid #00fff2;
    display: inline-block;
    padding: 30px;
    background: rgba(0, 255, 242, 0.05);
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0% 30%); /* Corte angular futurista */
}

.play-btn {
    font-size: 40px;
    background: #000;
    color: #00fff2;
    border: 2px solid #ff0055;
    padding: 20px 40px;
    border-radius: 0px; /* Cuadrado puro */
    cursor: pointer;
    position: relative;
    box-shadow: 4px 4px 0px #ff0055;
    transition: all 0.2s;
}

.play-btn:hover {
    background: #ff0055;
    color: #000;
    box-shadow: -4px -4px 0px #00fff2;
}

.play-btn:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

.song-title {
    color: #00fff2;
    margin-top: 20px;
    text-shadow: 0 0 5px #00fff2;
}

.song-genre {
    color: #fff;
    background: #ff0055;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
}
