
:root {
    --bg-color: #050505;
    --card-bg: #0d0d0d;
    --primary-color: #00e5ff; /* Azul Solo Leveling */
    --text-color: #e0e0e0;
    --accent-color: #ff003c; /* Vermelho Alerta */
}

body {
    padding: 30px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 10;
    line-height: 1.6;
    overflow-x: hidden;
    align-items: center;
    text-align: center;
    margin-top: auto;
}

/* Efeito de linhas de monitor antigo */
#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Fica atrás de todos os seus cards */
    opacity: 0.15; /* Deixe baixo para não cansar a vista do recrutador */
}

@keyframes scan { from { top: 0; } to { top: 100%; } }

*.a {
    max-width: 900px; margin: 50px auto; padding: 20px;
    decoration :none;
    text-underline-offset: none;
    color: aliceblue;
}


.Title-Parzival {
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: inline-block;
    color: #00d9ff; /* Cor padrão (Azul) */
    font-family: 'Courier New', Courier, monospace; /* Fonte padrão */
    
    /* A animação dura 10 segundos no total */
    animation: systemUpdate 10s infinite;
    transition: all 0.5s ease-in-out;
}

@keyframes systemUpdate {
    /* 0% a 70% (Primeiros 7 segundos): O título fica estático no estado padrão */
    0%, 70% {
        color: #00d9ff;
        font-family: 'Courier New', Courier, monospace;
        text-shadow: 2px 2px rgba(0, 217, 255, 0.3);
        transform: scale(1);
    }

    /* 70% a 100% (Últimos 3 segundos): A "Mutação" acontece (Vermelho + Fonte Nova) */
    75% {
        color: #ff0000;
        font-family: 'Orbitron', sans-serif;
        text-shadow: 3px 3px #550000, -2px -1px #fff;
        transform: scale(1.05); /* Leve pulso para indicar a mudança */
    }
    
    95% {
        color: #3fdd00;
        font-family: 'Orbitron', sans-serif;
        text-shadow: 3px 3px #54d42d, -2px -1px #662828;
        transform: scale(1.05);
    }

    /* 100%: Retorna ao estado original para reiniciar o ciclo */
    100% {
        color: #00d9ff;
        font-family: 'Courier New', Courier, monospace;
        transform: scale(1);
    }
}


.nav-section {
    font-size: larger;
    margin: 40px 0;
    color: aliceblue;
    text-decoration: #fff;
    text-decoration: underline double;
}

.video-container {
 overflow: hidden;
    max-width: 800px;
    width: 100%;
    aspect-ratio: 16 / 9; /* Mantém a proporção de cinema */
    margin: 20px auto;
    border: 2px solid #00d9ff; 
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
    position: relative; /* FUNDAMENTAL para o iframe absoluto */
}

.video-container iframe {
 position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ocupa todo o container */
    border: none;
}

.video-credit h2 {
    color: #00d9ff;
    font-family: 'Courier New', Courier, monospace; /* Estética analítica */
    text-align: center;
    font-size: 1.2rem;
}

.video-credit {
    margin-top: 100px;
    color: aqua;
}



.resenha-section {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.btn-resenha-container {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    margin: 0 20px;
    margin-bottom: 10px;
    margin-top: 100px;
    display: grid;
    /* Cria colunas de no mínimo 300px, distribuindo o espaço automaticamente */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;

.book-img {
    width: 200px; /* Ajuste conforme necessário */
    border: 1px solid #00d9ff;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    filter: grayscale(50%);
    transition: all 0.4s ease;
}

.btn-resenha {
    margin-top: 15px;
    background: transparent;
    color: #00d9ff;
    border: 1px solid #00d9ff;
    padding: 10px 20px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

/* Efeito ao passar o mouse */
.btn-resenha-container:hover .book-img {
    filter: grayscale(0%);
    transform: scale(1.05);
    box-shadow: 0 0 20px #00d9ff;
}

.btn-resenha:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: inset 0 0 10px #00d9ff;
>>>>>>> 6ff1a68cd0691f2191f81979abd8358ad6fe90db
}