/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonte e atmosfera */
body {
    font-family: 'Cinzel', serif;
    background: radial-gradient(circle at top, #0a0a0a 0%, #1a1a1a 40%, #000000 100%);
    color: #e0dede;
    line-height: 1.7;
    padding: 20px;
    background-attachment: fixed;
}

/* Cabeçalho */
header {
    text-align: center;
    padding: 50px 20px;
    background: rgba(15, 15, 15, 0.95);
    border-bottom: 2px solid #4b1d1d;
    box-shadow: 0 0 25px rgba(75, 29, 29, 0.8);
}

header h1 {
    font-size: 3rem;
    color: #b5179e;
    text-shadow: 0 0 15px rgba(181, 23, 158, 0.8), 0 0 30px rgba(0,0,0,0.9);
    letter-spacing: 2px;
}

header p {
    font-size: 1.3rem;
    color: #f1faee;
    margin-top: 15px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Seções principais */
main {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(181, 23, 158, 0.4);
    border: 1px solid #4b1d1d;
}

main h2 {
    color: #b5179e;
    margin-bottom: 20px;
    border-left: 5px solid #b5179e;
    padding-left: 12px;
    font-size: 1.8rem;
    text-shadow: 0 0 12px rgba(181, 23, 158, 0.6);
}

main p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #dcdcdc;
}

/* Imagem do jogo */
main img {
    display: block;
    margin: 0 auto 25px auto;
    border: 4px solid #b5179e;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(181, 23, 158, 0.7), 0 0 50px rgba(0,0,0,0.9);
    transition: transform 0.4s ease, filter 0.4s ease;
}

main img:hover {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.1);
}

/* Rodapé */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: rgba(15, 15, 15, 0.95);
    border-top: 2px solid #4b1d1d;
    font-size: 0.95rem;
    color: #aaa;
    box-shadow: 0 -5px 20px rgba(75, 29, 29, 0.6);
}

footer a {
    color: #b5179e;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer a:hover {
    color: #e63946;
    text-shadow: 0 0 10px rgba(230,57,70,0.8);
}
