/* Reset */
body, h1, h2, p, button {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #000;
    color: #00ffcc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.hero {
    background: linear-gradient(45deg, #000, #222);
    padding: 50px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

button {
    background-color: #00ffcc;
    color: #000;
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

button:hover {
    transform: scale(1.1);
}

.hidden {
    display: none;
}

#mystery-section {
    margin: 30px 20px;
}

footer {
    margin-top: auto;
    background: #222;
    color: #888;
    padding: 20px;
    width: 100%;
    text-align: center;
    border-top: 2px solid #00ffcc;
}