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

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Evita scrollbars no wrapper */
    background-color: #000;
}

iframe {
    width: 100vw;
    height: 100vh;
    border: none;
    display: block;
}

/* Overlay de Status (Offline/Carregando) */
#status-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.message-box {
    text-align: center;
    font-family: sans-serif;
}

.hidden {
    display: none !important;
}
