/* Clean Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* The Flashy Background */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Animated mesh gradient */
    background: linear-gradient(45deg, #f321d7, #ffec61, #21d4fd, #b721ff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #333;
}

/* Smooth Background Animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Simple Glassmorphism Container */
.container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

/* Minimalist Typography */
h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

p {
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* The "Flashy" Interaction */
.btn {
    background: #000;
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
