/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* Background */
body {
    height: 100vh;
    background: linear-gradient(135deg, #442f6e 0%, #1e1e2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Glass panel */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 60px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(100, 50, 255, 0.3);
}

/* Header text */
.header-title {
    font-size: 2.6rem;
    color: #d6baff;
    margin-bottom: 10px;
}

/* Subtitle */
.subtitle {
    font-size: 1.1rem;
    color: #ccccff;
    margin-bottom: 25px;
}

/* Button */
.button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(90deg, #7358d6, #4ecbff);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}

.button:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}
