*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body
{
    overflow: hidden;
}

.experience
{
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.credits
{
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #ffffff;
    text-align: right;
    font-family: 'Roboto', sans-serif;
}

.credits a
{
    color: inherit;
}

.audio-controls-container {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 12px 15px;
    background-color: rgba(20, 20, 20, 0.7);
    border-radius: 8px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.music-control {
    color: #f0f0f0;
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid #555;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    background-color: rgba(40, 40, 40, 0.8);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.music-control:hover {
    background-color: rgba(60, 60, 60, 0.9);
    border-color: #777;
    color: #fff;
}

.audio-controls-container audio {
    height: 38px;
    max-width: 250px;
}

.music-control.music-prompt-interaction {
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Mobile layout for audio controls */
@media (max-width: 768px) {
    .audio-controls-container {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        justify-content: center;
        padding: 6px 10px;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 0;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
    }
    /* Hide text toggle on mobile to save space */
    .music-control { display: none; }
    .audio-controls-container audio { max-width: 90%; }

    /* Move credits above audio bar */
    .credits { bottom: 60px; }
}

/*# sourceMappingURL=main.css.map*/