@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
}

.logo-container {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.logo-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.message-container {
    max-width: 600px;
    margin: 0 auto;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-up:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-pulse span {
    animation: pulse 1.5s infinite;
}

.animate-pulse span:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-pulse span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 640px) {
    .logo-container {
        max-width: 150px;
    }
    .message-container {
        font-size: 0.9em;
    }
}