body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #34e5f9, #3b54de);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.header-container {
    margin-top: 120px;
}

#head {
    font-size: 3rem;
    font-weight: bold;
    transition: color 0.2s;
}

.header-container p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: white;
    color: #333;
}

.back-link {
    margin-top: auto;
    margin-bottom: 20px;
}

.back-link a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: 0.2s;
}

.back-link a:hover {
    opacity: 1;
}

footer {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    font-size: 0.9rem;
}