/* 1. Importar as Fontes (certifica-te que os ficheiros .otf estão na mesma pasta) */
@font-face {
    font-family: 'ABCGintoNord-Black';
    src: url('fonts/ABCGintoNord-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'ABCGintoNord-Medium';
    src: url('fonts/ABCGintoNord-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* 2. Definir a Paleta de Cores do Chuta Daí */
:root {
    --verde: #02FF56;
    --preto: #101820;
    --branco: #FFFFFF;
    
    /* Extras (podes usar futuramente) */
    --verde-escuro: #00C65E;
    --magenta: #DF1995;
    --azul-turquesa: #00CFB4;
    --azul: #4A25AA;
    --laranja: #FF5600;
    --vermelho: #E4002B;
    --amarelo: #FFD700;
}

/* 3. Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    background-color: var(--preto);
    font-family: 'ABCGintoNord-Medium', sans-serif; /* Texto comum usa Medium */
    overflow: hidden; /* Remove o scroll para dar o efeito de landing page pura */
}

/* 4. Vídeo em Background Fullscreen */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Faz o vídeo cobrir todo o ecrã */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* CÓDIGO DA TRANSPARÊNCIA AQUI: */
    opacity: 0.4; /* Altera entre 0.0 e 1.0 para ajustar a transparência do vídeo */
    /* mix-blend-mode: screen; */ /* Opcional: retira o fundo preto do vídeo se ele o tiver */
}

/* Capa preta sobre o vídeo */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Aumentei para 0.75 para o fundo preto do site "abafar" mais o vídeo */
    background: rgba(16, 24, 32, 0.75); 
    z-index: 1;
}

/* 5. Estilos de Texto e Layout Central */
.content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 20px;
}

.logo {
    font-family: 'ABCGintoNord-Black', sans-serif;
    color: var(--verde);
    /* Usamos 'clamp' para o tamanho: mínimo de 3rem, ideal de 8vw (adapta-se ao ecrã), máximo de 6rem */
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(2, 255, 86, 0.3); 
    margin-bottom: 20px;
    line-height: 1; /* Evita espaços estranhos se o texto por acaso quebrar de linha */
}

.message {
    font-family: 'ABCGintoNord-Medium', sans-serif;
    color: var(--branco);
    font-size: 1.2rem;
    letter-spacing: 8px; /* Espaçamento grande dá um ar mais cinematográfico e misterioso */
    text-transform: uppercase;
    opacity: 0.9;
}

/* 6. Responsividade (para ecrãs de telemóvel) */
@media (max-width: 768px) {
    .logo {
        font-size: 3.5rem;
    }
    .message {
        font-size: 1rem;
        letter-spacing: 5px;
    }
}