:root {
    --primary-color: #ff6b6b;
    --secondary-color: #feca57;
    --bg-gradient: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-color: #2d3436;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--bg-gradient);
    overflow: hidden;
}

.container {
    background: var(--glass-bg);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 3rem 4rem;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
    max-width: 90%;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    animation: slideDown 1s ease-out;
}

p {
    font-size: 1.5rem;
    color: #555;
    animation: slideUp 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating shapes for extra aesthetics */
body::before, body::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

body::before {
    width: 300px;
    height: 300px;
    background: #ff9ff3;
    top: -50px;
    left: -50px;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 6s infinite ease-in-out;
}

body::after {
    width: 400px;
    height: 400px;
    background: #54a0ff;
    bottom: -100px;
    right: -100px;
    filter: blur(90px);
    opacity: 0.5;
    animation: float 8s infinite ease-in-out reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
    100% { transform: translate(0, 0); }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1.2rem;
    }
    .container {
        padding: 2rem;
    }
}
