html,
body {
    background-color: #f0f0f1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    background: white;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-container {
    position: relative;
    width: 48px;
    height: 48px;
}

.logo {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.pulse-animation {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.status {
    margin-top: 8px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 1.125rem;
    font-weight: 500;
}

.loading-dots {
    display: flex;
    gap: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #4b5563;
    border-radius: 50%;
}

.dot:nth-child(1) {
    animation: bounce 0.8s infinite ease-in-out;
}

.dot:nth-child(2) {
    animation: bounce 0.8s infinite ease-in-out -0.16s;
}

.dot:nth-child(3) {
    animation: bounce 0.8s infinite ease-in-out -0.32s;
}

.message-container {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message {
    animation: fadeInOut 2s infinite;
    font-weight: 700;
    font-size: 1.8rem;
    color: #1f2937;
    opacity: 0;
}

.line2 {
    margin-top: 8px;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: scale(1);
        opacity: 0.1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

@keyframes bounce {
    0%,
    80%,
    100% {
        transform: scale(0.6);
    }
    40% {
        transform: scale(1);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    20% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}
