* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', cursive;
    background-color: #000;
    color: #00ff00;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    text-align: center;
}

.game-title h1 {
    font-size: 60px;
    color: #00ff00;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 3px 3px #ff00ff;
}

.game-title h1 span {
    color: #ff00ff;
}

.press-start p {
    font-size: 20px;
    margin-top: 40px;
    color: #00ff00;
    animation: blink 1s infinite;
}

.press-start span {
    color: #ff00ff;
}

.instrucoes p {
    font-size: 14px;
    color: #00ff00;
    margin-top: 30px;
}

.instrucoes span {
    color: #ff00ff;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
