:root {
    --color-primary: #6B4C8A;
    --color-secondary: #9B6BA8;
    --color-accent: #E8A8D8;
    --color-dark: #2C1F3D;
}

body {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

.container-custom {
    max-width: 600px;
    width: 100%;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

.logo-container img {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.content-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 40px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease 0.2s both;
}

h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}

.subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    animation: fadeInUp 1s ease 0.3s both;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    animation: bounce 1.4s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.message-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.contact-section {
    animation: fadeInUp 1s ease 0.5s both;
}

.contact-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.progress-container {
    margin: 30px 0;
    animation: fadeInUp 1s ease 0.6s both;
}

.progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.progress-bar {
    background: linear-gradient(90deg, white, var(--color-accent));
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 30px;
    animation: fadeInUp 1s ease 0.7s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .content-box {
        padding: 30px 20px;
    }

    .logo-container img {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .content-box {
        padding: 25px 15px;
    }

    .logo-container img {
        max-width: 150px;
    }

    .message-text {
        font-size: 0.95rem;
    }
}