body {
    background: linear-gradient(135deg, #fffbe6 0%, #ffd580 100%);
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container.minimal {
    background: rgba(255,255,255,0.85);
    border-radius: 32px;
    box-shadow: 0 4px 16px 0 rgba(255,140,0,0.08), 0 1px 4px rgba(0,0,0,0.02); /* Reduced shadow */
    padding: 64px 40px 48px 40px;
    text-align: center;
    max-width: 400px;
    animation: fadeIn 1s cubic-bezier(.42,0,.58,1);
}

.logo {
    width: 300px;
    margin-bottom: 40px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(255,165,0,0.15); /* Reduced shadow */
    border: 10px solid #fffbe6;
    background: #fffbe6;
    animation: popIn 1s cubic-bezier(.42,0,.58,1);
}

h1 {
    font-size: 3.2rem;
    color: #ff5e3a;
    letter-spacing: 3px;
    font-weight: 900;
    margin: 0;
    font-family: 'Pacifico', 'Poppins', cursive, Arial, sans-serif;
    text-shadow: 0 4px 24px #ffd580, 0 1px 0 #fffbe6;
}

/* Add Google Fonts import at the top of your CSS file: */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@400;700;900&display=swap');

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

@keyframes popIn {
    0% { transform: scale(0.7);}
    80% { transform: scale(1.1);}
    100% { transform: scale(1);}
}

@media (max-width: 600px) {
    .container.minimal {
        padding: 32px 6vw 24px 6vw;
        max-width: 98vw;
    }
    .logo {
        width: 160px;
        margin-bottom: 18px;
    }
    h1 {
        font-size: 2.1rem;
        letter-spacing: 2px;
    }
}