body {
    background-color: #000000;
    color: #fff;
    font-family: 'Ubuntu Mono', monospace;
    margin: 0;
    padding: 0;
    user-select: none; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}
.enter-message {
    font-size: 24px;
    cursor: pointer;
    display: none; 
}
.container {
    display: none; 
}
.prompt-background {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.prompt-box {
    background-color: #FFFFFF; 
    border-radius: 10px;
    padding: 20px; 
    max-width: 400px; 
    width: 200px;
    text-align: center;
}
.user-profile {
    margin-bottom: 20px;
}
.user-profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.user-bio {
    color: #000000;
    margin-bottom: 20px;
}
.user-name {
    color: #000000;
    margin-bottom: 20px;
    font-size: 28px;
}
.prompt-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.prompt-button {
    background-color: #000000; 
    border: none;
    color: white;
    padding: 10px 20px; 
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px; 
    margin: 4px 2px;
    cursor: pointer;
    width: calc(80% - 8px); 
    outline: none; 
}
.song-prompt {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    animation: fadeOut 5s ease forwards; 
    opacity: 0;
    z-index: 9999;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.people-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.people-list li {
    margin: 0 20px;
}
.people-list li a {
    color: #fff; /* Same color */
    text-decoration: none;
    transition: none; /* Remove transition */
    font-weight: bold;
}
.sparkle {
    position: absolute;
    background: radial-gradient(circle, #fff, rgba(255, 255, 255, 0));
    border-radius: 50%;
    width: 6px;
    height: 6px;
    animation: sparkle 1s linear infinite;
}
@keyframes sparkle {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
.mobile-warning {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    display: none;
}
