* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(to right, #f9fafb, #eef2f7);
    color: #111827;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 700px;
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.logo img {
    max-width: 180px;
    margin-bottom: 16px;
    animation: floatLogo 4s ease-in-out infinite;
}

h1 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1f2937;
}

p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 24px;
}

.tag {
    display: inline-block;
    background: #e0f2fe;
    color: #0284c7;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in;
}

.footer {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 30px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}