:root {
    --bg-color: #f5f7f9;
    --card-bg: #ffffff;
    --text-color: #333333;
    --accent-color: #4a90e2;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 180px;
    height: auto;
}

.message {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
}

.dots span {
    display: inline-block;
    animation: blink 1.4s infinite both;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}
