body {
    background: #111;
    color: white;
    font-family: Arial, sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
    margin: 0;
}

.hero {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

h1 {
    margin-bottom: 10px;
}

p {
    margin-bottom: 30px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.links a {
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,.2);
    padding: 12px 24px;
    border-radius: 10px;
    transition: .3s;
}

.links a:hover {
    background: white;
    color: black;
}