* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: #2b1736; /* Tom exato de roxo escuro do fundo */
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container do Topo */
.topo-site {
    width: 100%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 15px 0;
    border-bottom: 2px solid #000000;
}

.imagem-topo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #000000;
}

/* Exibe a sua imagem exata do Paint sem distorcer */
.img-divulgacao {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Barra de Pesquisa logo abaixo da imagem do topo */
.barra-pesquisa-container {
    width: 90%;
    max-width: 900px;
    background-color: #000000;
    border: 2px solid #333333;
    border-radius: 20px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.icone-lupa {
    font-size: 15px;
}

#campoPesquisa {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 15px;
    outline: none;
}

#campoPesquisa::placeholder {
    color: #aaaaaa;
}

/* Área de Conteúdo */
.conteudo-principal {
    width: 90%;
    max-width: 900px;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
}

/* Caixa Amarela Exata do Desenho ("Nada disponível :(") */
.aviso-amarelo {
    width: 100%;
    background-color: #ffee00; /* Amarelo vivo idêntico ao Paint */
    color: #000000;
    padding: 22px 30px;
    font-size: 45px;
    font-weight: bold;
    text-align: left;
    border: 2px solid #000000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Estilo para quando houver sites cadastrados no futuro */
.item-lista-site {
    width: 100%;
    background-color: #160d1f;
    border: 2px solid #4a2e5c;
    color: #00ffff;
    padding: 18px 25px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.2s;
}

.item-lista-site:hover {
    background-color: #2b1736;
    border-color: #00ffff;
}

/* Tela Inteira / Frame */
.visualizador-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.barra-topo-frame {
    background-color: #000;
    padding: 12px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #333;
}

.titulo-site-ativo {
    color: #00ffff;
    font-size: 18px;
    font-weight: bold;
}

.botao-fechar {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
}

.botao-fechar:hover {
    background-color: #cc0000;
}

.frame-container {
    flex: 1;
    width: 100%;
    background-color: #fff;
}

.frame-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}