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

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    color: #fff;
}

body::before,
body::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    border-radius: 50%;
    animation: float 12s infinite alternate ease-in-out;
}

body::before {
    top: 15%;
    left: 15%;
}

body::after {
    bottom: 15%;
    right: 15%;
    animation-duration: 15s;
}

.quote-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    max-width: 650px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1.2s ease-in-out;
    position: relative;
    z-index: 10;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff9a9e, #fad0c4, #fad390);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-box>p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.quote-card {
    margin-top: 0;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    padding: 30px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
    animation: fadeQuote 0.6s ease-in-out;
}

#quote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 15px;
}

#author {
    font-size: 1rem;
    color: #ddd;
}

button {
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ff6a00, #ee0979);
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-top: 15px;
    margin-bottom: 30px;
}

button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 25px rgba(238, 9, 121, 0.7);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeQuote {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    from {
        transform: translateY(0) translateX(0);
    }

    to {
        transform: translateY(-40px) translateX(30px);
    }
}
