body {
    margin: 0;
    background-color: #000;
    font-family: Verdana, sans-serif;
    color: #fff;
    text-align: center;
    padding: 40px;
}

/* Logo no topo */
.logo {
    display: block;
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px auto;
    border: none;
}

h1 {
    color: #ff0033;
    font-size: 48px;
    text-shadow: 0 0 10px #ff0033, 0 0 20px #ff0033, 0 0 30px #ff0033;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.action-button {
    background-color: #200000;
    color: #ff0033;
    border: 2px solid #ff0033;
    border-radius: 6px;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.action-button:hover {
    background-color: #ff0033;
    color: #000;
    text-decoration: none;
}

small {
    display: block;
    margin-top: 40px;
    font-size: 14px;
    color: #aaa;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    .action-button {
        font-size: 18px;
        padding: 10px 20px;
    }
}
