* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #409841, #18205e);
    color: #fff;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;
}

.container {
    max-width: 500px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #409841;
}

.text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #18205e;
}

.buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: bold;
}

.download {
    background-color: #409841;
    color: #fff;
}

.enter {
    background-color: #18205e;
    color: #fff;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #eee;
    font-size: 0.9rem;
}
