/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

.logo {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.message {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.loading-animation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.dot {
    width: 15px;
    height: 15px;
    background-color: #f1c40f;
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

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

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

@keyframes bounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
}

.socials a {
    color: #f1c40f;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1em;
}

.socials a:hover {
    color: #fff;
}
