/* Smooth font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* Deep animated gradient */
    background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #1f1c2c);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}


/* Smooth animated gradient */

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Glass container */

.container {
    width: 100%;
    max-width: 420px;
    padding: 50px 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-align: center;
    color: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* Floating hover effect */

.container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.container h2 {
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 24px;
}

.container p {
    margin-bottom: 35px;
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    opacity: 0.95;
    min-height: 60px;
    transition: opacity 0.3s ease;
}


/* Button styling */

.container button {
    width: 100%;
    padding: 14px 25px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #00f5ff, #7b2ff7);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}


/* Hover glow */

.container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(123, 47, 247, 0.6);
}


/* Click press effect */

.container button:active {
    transform: scale(0.96);
}


/* Subtle mobile adjustments */

@media (max-width: 480px) {
    .container {
        padding: 40px 25px;
    }
    .container h2 {
        font-size: 20px;
    }
    .container p {
        font-size: 15px;
    }
}