@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 180px;
    background-size: cover;
    filter: blur(6px) brightness(0.7);
    z-index: 1;
}

.center-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 2;
}

.glow-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 2rem;
    font-weight: normal;
    color: #fff;
    background: none;
    border: none;
    text-shadow:
        0 0 8px #fff,
        0 0 16px #fff,
        0 0 32px #fff,
        0 0 64px #fff;
    filter: contrast(2) brightness(1.2);
    letter-spacing: 2px;
    image-rendering: pixelated;
    cursor: pointer;
    padding: 8px 32px;
    border-radius: 8px;
    transition: transform 0.22s cubic-bezier(0.4, 1.4, 0.6, 1), color 0.22s, text-shadow 0.22s;
    outline: none;
    text-decoration: none !important;
    display: inline-block;
}

.glow-btn:hover, .glow-btn:focus {
    transform: scale(1.18) translateY(-6px);
    color: #e0eaff;
    text-shadow: 0 0 16px #e0eaff, 0 0 32px #e0eaff, 0 0 56px #e0eaff;
    background: none;
    box-shadow: none;
    text-decoration: none !important;
}

/* Play/Pause Button Styles */
#play-pause-btn {
    font-size: 2.5rem;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

#play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #e0eaff;
    color: #e0eaff;
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(224, 234, 255, 0.5),
        inset 0 0 20px rgba(224, 234, 255, 0.2);
}

#play-pause-btn:active {
    transform: scale(0.95);
}

#enter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s;
}

.enter-text {
    color: #fff;
    font-size: 2.2rem;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 0.25em;
    user-select: none;
    pointer-events: auto;
    filter: none;
    cursor: pointer;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    text-shadow:
        0 2px 16px #fff,
        0 0 32px #fff,
        0 0 48px #fff;
}

.enter-text:hover {
    transform: scale(1.2);
    text-shadow:
        0 2px 20px #fff,
        0 0 40px #fff,
        0 0 60px #fff;
}
