body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    /* Garanta que esta é a imagem inicial correta */
    background-image: url('Generated Image April 12, 2025 - 9_58PM.jpeg');
    background-color: #f0e6d2; /* Cor de fundo caso a imagem falhe */
    background-size: cover; /* Faz a imagem cobrir todo o fundo */
    background-position: center center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita que a imagem se repita */
    background-attachment: fixed; /* Mantém a imagem fixa durante o scroll */
    min-height: 100vh; /* Garante que o body ocupe toda a altura da tela */
    overflow: hidden; /* Esconde barras de rolagem se o botão sair da tela */
    display: flex; /* Ajuda a centralizar o conteúdo */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Alinha conteúdo no topo */
    padding-top: 50px; /* Espaço no topo */
    box-sizing: border-box;

    /* --- Opcional: Transição suave para o background --- */
    transition: background-image 0.4s ease-in-out;
}

.container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente para legibilidade */
    padding: 30px;
    border-radius: 15px;
    color: white; /* Cor do texto */
    max-width: 80%;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

p {
    font-size: 1.5em;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

#fugitiveButton {
    position: absolute; /* ESSENCIAL para mover o botão */
    padding: 15px 30px;
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    background-color: #e94d5f; /* Um vermelho/rosa chamativo */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: top 0.3s ease-out, left 0.3s ease-out; /* Animação suave do botão*/
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);

    /* Posição inicial (pode ajustar se quiser) */
    top: 60%;
    left: 50%;
    transform: translateX(-50%); /* Centraliza horizontalmente */
}

/* Opcional: Efeito no hover ANTES dele fugir */
#fugitiveButton:hover {
   background-color: #ff6f61;
}

/* Estilos para telas menores (opcional) */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
    }
    p {
        font-size: 1.2em;
    }
    #fugitiveButton {
        font-size: 1.5em;
        padding: 12px 25px;
    }
    .container {
        padding: 20px;
    }
}