* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial Black', Gadget, sans-serif;
}

body {
    background-color: #000;
    /* Efeito de grade no fundo */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90px, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 900px;
    padding: 20px;
}

/* Estilização do Título/Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.arcade-img {
    width: 120px; /* Ajuste conforme sua imagem */
    height: auto;
}

.title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-style: italic;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #fff 50%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 0px #333);
}

.event-date {
    font-size: 2.5rem;
    color: #ffde00;
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Texto de Descrição */
.description {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Badges (Verde e Amarelo) */
.info-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.badge {
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #000;
}

.green { 
    background-color: #00ff00; 
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

.yellow { 
    background-color: #ffff00; 
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4);
}

/* Botão Principal Vermelho */
.btn-main {
    display: inline-block;
    background-color: #ff0000;
    color: #000;
    text-decoration: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
}

.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.8);
}

/* Responsividade para Celular */
@media (max-width: 600px) {
    .logo-wrapper { flex-direction: column; }
    .info-badges { flex-direction: column; align-items: center; }
}