/*  générale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* fond général */
body {
    font-family: 'Press Start 2P', cursive;
    background-color: #000000; 
    color: white;
    text-align: center;
    overflow: hidden;
}

/* image fond */
.background-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* lecteur audio */
.audio-player-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* soft txt  */
.hidden-track-message {
    color: #7F1212; /* just falu red u lkey knw */
    font-size: 0.8rem; 
    margin-top: 20px;
    text-shadow: 1px 1px 5px #004488; 
    transition: text-shadow 0.5s ease, transform 0.5s ease; 
}

.hidden-track-message:hover {
    text-shadow: 2px 2px 10px #3366cc; 
    transform: scale(1.05); 
}

/* footer */
footer {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: #FF5722; 
    background-color: rgba(0, 0, 0, 0.8); 
    width: 100%;
}

footer a {
    color: #FF5722;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

/* shiness crédits */
.footer-info {
    font-size: 1.5rem;
    color: #FF5722; 
    margin-top: 10px;
    letter-spacing: 1px;
}

footer hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #FF5722; 
}

/* styl contact */
.contact-link {
    color: #FF5722;
    text-decoration: none;
}

.contact-link:hover {
    color: white;
}
