* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    width: 90%;
    max-width: 400px;
}

h1 {
    margin-bottom: 10px;
    font-size: 28px;
}

.subtitle {
    margin-bottom: 30px;
    opacity: 0.9;
}

.links a {
    display: block;
    margin: 12px 0;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.links a:hover {
    background: #fff;
    color: #333;
    transform: translateY(-3px);
}

footer {
    margin-top: 25px;
    font-size: 12px;
    opacity: 0.7;
}
