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

body {
    background-color: #000;
    color: #0f0; /* Ярко‑зелёный текст */
    font-family: 'Press Start 2P', system-ui;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px #f00;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.download-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #000;
    color: #0f0;
    border: 2px solid #0f0;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #0f0;
    color: #000;
}
