/* --- CONFIGURAÇÕES GERAIS --- */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Comic Sans MS', sans-serif;
    overflow: hidden;
    color: white;
}

/* Fundo inicial cinza escuro */
.initial-body {
    background-color: #333333;
}

/* --- LOGO SUPERIOR DIREITA --- */
.logo-site {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 150px;
    height: auto;
    z-index: 100;
    filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.8));
}

/* --- POP-UP PIXELADO --- */
.pixel-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 150; /* Por cima de tudo */
    background: rgba(0,0,0,0.5); /* Sombra de fundo opcional */
}

.pixel-popup {
    background-color: #6C3483; /* Roxo pixelado (exemplo da imagem) */
    border: 6px solid;
    border-top-color: #fff;
    border-left-color: #fff;
    border-right-color: #000;
    border-bottom-color: #000;
    padding: 30px;
    width: 350px;
    text-align: center;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.8);
    transition: transform 0.2s; /* Para um efeito de clique */
}

.pixel-text {
    font-family: 'Comic Sans MS', sans-serif; /* Usando Comic Sans para vibe retro, substitua por fonte pixel se tiver */
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
    text-shadow: 2px 2px 0px #000;
}

.pixel-popup-buttons {
    display: flex;
    justify-content: space-around;
}

.pixel-btn {
    border: 4px solid;
    font-family: 'Comic Sans MS', sans-serif;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 25px;
    cursor: url('ponteiro-mao.cur'), pointer; /* Ponteiro retro */
    transition: background 0.1s;
}

/* Botão Cancel */
.pixel-btn.cancel {
    background: #EED4E2; /* Rosa claro chanfrado */
    color: #000;
    border-top-color: #fff;
    border-left-color: #fff;
    border-right-color: #000;
    border-bottom-color: #000;
}

/* Botão Start */
.pixel-btn.start {
    background: #EED4E2; /* Rosa claro chanfrado */
    color: #000;
    border-top-color: #fff;
    border-left-color: #fff;
    border-right-color: #000;
    border-bottom-color: #000;
}

.pixel-btn:active {
    border-top-color: #000;
    border-left-color: #000;
    border-right-color: #fff;
    border-bottom-color: #fff;
    background: #FFB3D9; /* Um rosa mais saturado para clique */
}

/* Esconder elementos */
.hidden {
    display: none !important;
}

/* --- CONTÊINER CENTRAL ÚNICO (MENU SIMS) --- */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.central-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cabeca-flutuante {
    width: 150px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.5));
}

/* --- ESTILO DOS BOTÕES (The Sims 1) --- */
.sims-btn {
    position: absolute;
    background-color: #000080; /* Azul escuro */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    border: 3px solid #ffffff;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.8);
    z-index: 5;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.sims-btn:hover {
    background-color: #0000ff;
    cursor: url('ponteiro-mao.cur'), pointer;
}

/* POSICIONAMENTO RADIAL DOS BOTÕES */
.btn-sala { top: -40px; left: 50%; transform: translateX(-50%); }
.btn-cozinha { bottom: -40px; left: 50%; transform: translateX(-50%); }
.btn-varanda { left: -70px; top: 50%; transform: translateY(-50%); }
.btn-quarto { right: -70px; top: 50%; transform: translateY(-50%); }