/* Prevent scrolling on mobile */
html, body {
    overflow: hidden;
    height: 100vh;
    touch-action: manipulation;
}
/* Mobile support */
@media (max-width: 600px) {
    .menu-container {
        max-width: 98vw;
        padding: 16px 4vw 16px 4vw;
        border-radius: 10px;
    }
    .game-title {
        font-size: 1.2em;
        margin-bottom: 16px;
    }
    .about-section {
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .avatar {
        width: 64px;
        height: 64px;
        margin-bottom: 10px;
    }
    .about-text {
        font-size: 0.8em;
        line-height: 1.3;
    }
    .pixelstory-btn {
        padding: 10px 12px;
        font-size: 0.8em;
    }
    #now-playing {
        font-size: 0.7em;
    }
    .now-playing-note {
        font-size: 0.6em;
    }
    .music-controls button {
        font-size: 0.8em;
        padding: 10px 0;
    }
}
/* Remove underline and border from PixelStory Beta button link */
a:has(.pixelstory-btn) {
    text-decoration: none !important;
    border: none !important;
    background: none !important;
}
/* Remove underline from PixelStory Beta button text */
a .pixelstory-btn, .pixelstory-btn {
    text-decoration: none !important;
}
/* PixelStory Beta button */
.pixelstory-btn {
    text-decoration: none;
    display: block;
    margin: 24px auto 0 auto;
    padding: 16px 32px;
    font-size: 1.1em;
    font-family: 'Press Start 2P', monospace;
    color: #fff;
    background: linear-gradient(90deg, #ffb347 0%, #5c5cff 100%);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 16px #0006, 0 0 8px #ffb347;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-shadow: 0 2px 8px #232526;
    letter-spacing: 1px;
}
.pixelstory-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 32px #5c5cff, 0 0 16px #ffb347;
    background: linear-gradient(90deg, #5c5cff 0%, #ffb347 100%);
}
/* Note under Now Playing */
.now-playing-note {
    font-size: 0.7em;
    color: #fff;
    text-align: center;
    margin-top: 4px;
    font-family: 'Press Start 2P', monospace;
}
/* Now Playing and Playlist styles */
#now-playing {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9em;
    color: #ffb347;
    display: block;
    margin: 0 auto 8px auto;
    text-align: center;
}
.playlist-btn {
    margin: 4px 4px 0 0;
    padding: 10px 18px;
    font-size: 0.9em;
    font-family: inherit;
    background: #232526;
    color: #ffb347;
    border: 2px solid #5c5cff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0006;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.playlist-btn:hover {
    background: #5c5cff;
    color: #fff;
    transform: scale(1.05);
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Press Start 2P', monospace;
    background: linear-gradient(135deg, #232526 60%, #414345 100%);
    color: #fff;
    min-height: 100vh;
    letter-spacing: 1px;
}
.menu-container {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px 32px 32px 32px;
    background: rgba(40, 40, 60, 0.98);
    border-radius: 20px;
    box-shadow: 0 8px 32px #000a;
    text-align: center;
    border: 2px solid #5c5cff;
}
.game-title {
    font-size: 2.2em;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #5c5cff;
}
/* Remove menu-buttons, keep only music-controls */
.music-controls button {
    display: block;
    width: 80%;
    margin: 12px auto;
    padding: 14px 0;
    font-size: 1em;
    font-family: inherit;
    background: #5c5cff;
    color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0006;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.music-controls button:hover {
    background: #ffb347;
    color: #232526;
    transform: scale(1.05);
}
.music-controls {
    margin-top: 32px;
}
.about-section {
    margin-top: 16px;
    margin-bottom: 16px;
    text-align: center;
}
.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid #5c5cff;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px #0006;
    background: #fff;
    object-fit: cover;
}
.about-text {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 0;
}
.highlight {
    color: #ffb347;
    font-weight: bold;
}
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
