html,
body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

#wall-mask {
    position: fixed;
    inset: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 140vw;
    height: 140vh;
    gap: 0;
    padding: 0;
    margin: 0;
    will-change: transform;
}

.logo {
    width: 100px;
    height: 100px;
    margin: 0;
    padding: 0;
    transition: transform 0.2s ease;
}

.text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding: 0 4px;
}

@media (min-width: 700px) {

}

/* Audio Player Overlay Styles */
#audioPlayerContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
}

#audioPlayerContainer > * {
    pointer-events: auto;
}

#audioPlayerContainer .player-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001;
}

.close-player {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    z-index: 10002;
}

.close-player:hover {
    background: rgba(255, 45, 85, 0.3);
    transform: scale(1.05);
}

.close-player svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.7);
    transition: fill 0.3s;
}

.close-player:hover svg {
    fill: #fff;
}

/* Ensure UI switcher is positioned correctly */
#audioPlayerContainer .ui-switcher {
    z-index: 10002;
}
