* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo e fontes */
body {
    font-family: Arial, sans-serif;
    background-color: #1c1c1c;
    color: #fff;
    line-height: 1.6;
}

h1 {
    font-size: 2.5rem;
    color: #f9c74f;
}

h2, h3 {
    font-size: 2rem;
    color: #f9c74f;
}

/* Header */
header {
    background-color: #333;
    padding: 20px;
    text-align: center;
}

header .logo img {
    width: 200px;
    margin-bottom: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #f9c74f;
}

/* Seções */
section {
    padding: 40px 20px;
    margin-bottom: 20px;
}

#sobre, #jogo, #personagens, #galeria {
    background-color: #2b2b2b;
    border-radius: 10px;
}

#personagens ul {
    list-style-type: square;
    padding-left: 20px;
}

.galeria-imagens {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.galeria-imagens img {
    width: 30%;
    border-radius: 10px;
}

/* Rodapé */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
}