 body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}
.container {
    backdrop-filter: blur(12px);
    background: rgb(255, 255, 255);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    animation: fadeIn 1.5s ease;
}
h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -3px;
}
p {
    font-size: 1.3rem;
    margin: 15px 0 25px;
    opacity: 0.9;
}
a {
    padding: 12px 24px;
    color: #0af;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
