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

body {
    font-family: 'Quicksand', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    margin-bottom: 2rem;
}

.logo-text {
    font-family: 'Quicksand', serif;
    font-size: 3rem;
    color: #2a344d;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: #2a344d;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.message {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 0 1rem;
}

.progress-container {
    margin: 2rem 0;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #e8f0fe;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #818cf8, #a78bfa);
    transition: width 1s ease-in-out;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

.progress-text {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
}

.social-links {
    margin: 2rem 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.3);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.footer {
    margin-top: 2rem;
    color: #4a5568;
    font-size: 0.9rem;
    padding: 1rem;
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 2rem;
    }
    
    .container {
        padding: 1.5rem;
    }
}
    
    h1 {
        font-size: 2rem;
    }
}
