@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.main {
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

.main img {
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.main h1 {
    font-size: 52px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    animation: glow 2s ease-in-out infinite alternate,
               slideUp 1.2s ease forwards;
}

/* Animations */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.4),
                     0 0 20px rgba(255, 215, 0, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                     0 0 40px rgba(255, 215, 0, 0.6);
    }
}
