/* --- CONFIGURAÇÕES DA PÁGINA DE ENTRADA (INDEX) --- */

body {
    background-image: url('fundo2.png');
    /* Quando tiver sua imagem de fundo, use: background-image: url('images/seu_fundo.gif'); */
    color: #0000; /* Vermelho sangue */
    
    /* --- FONTE ATUALIZADA (PIXEL) --- */
    font-family: 'VT323', monospace;
    font-size: 1.4rem; /* Ajustei o tamanho, pois fontes pixeladas costumam ser pequenas */
    
    text-align: center;
    margin: 0;
    padding: 20px;
    line-height: 1.4;

    /* --- CURSOR PERSONALIZADO (NOVO) --- */

}

* {
  cursor: url('images/cursed_cursor6.png') 16 16, auto
}

/* --- CONFIGURAÇÕES DA PÁGINA DE ENTRADA (INDEX) --- */

.splash-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    /* Mantenha sua imagem de fundo de estática/glitch aqui */
    background-color: black; 
}

/* O "fundo atrás das letras" para melhorar a leitura */
.warning-container {
    background-color: rgba(0, 0, 0, 0.90); /* Preto com 85% de opacidade */
    padding: 40px;
    border: 1px solid #ffffff; /* Borda branca fina para o look retrô */
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 1); /* Sombra para destacar do fundo glitch */
}

.splash-page h1 {
    color: #ffffff;
    font-family: 'VT323', monospace; /* Ou 'Creepster' se preferir */
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.warning-text {
    color: #ffffff;
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* --- BOTÃO ENTRAR TOTALMENTE BRANCO --- */
.enter-button {
    color: #ffffff; /* Texto branco */
    text-decoration: none;
    font-size: 2rem;
    font-family: 'VT323', monospace;
    padding: 10px 30px;
    border: 2px solid #ffffff; /* Borda branca */
    background: transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.enter-button:hover {
    background: #ffffff; /* Fundo branco no hover */
    color: #000000; /* Texto preto no hover */
    box-shadow: 0 0 15px #ffffff; /* Brilho branco */
}

/* Mantendo o efeito de piscar se desejar no título */
.blink {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.audio-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.audio-controls button {
    background: black;
    color: #d80000;
    border: 2px double #d80000;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    padding: 5px 15px;
    cursor: pointer; /* Lembra que configuramos o cursor de caveira? Ele vai aparecer aqui! */
}

.audio-controls button:hover {
    background: #d80000;
    color: black;
}