* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h5 {
     font-size: 10mm;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, #ffffff, #e0e0e0, #ffffff);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shineText 3s ease-in-out infinite, fadeInUp 1.8s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    margin-top: 10px;
}

@keyframes shineText {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

body {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeIn 1.5s ease-in-out;
}

.logo {
    width: 300px;
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
    animation: bounceLogo 2s ease-in-out infinite, fadeScale 1s ease-out;
    object-fit: contain;
}

h1 {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    animation: fadeInUp 1.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
