* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.content {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

h1 {
    color: #333;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -1px;
}

.subtitle {
    color: #667eea;
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: 500;
}

.message {
    color: #666;
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.progress-container {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-bar {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 30%;
    }
    50% {
        width: 85%;
    }
    100% {
        width: 30%;
    }
}

.contact-section {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-section p {
    color: #333;
    margin-bottom: 10px;
}

.email-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.footer {
    color: #999;
    font-size: 0.9em;
    padding-top: 20px;
}

.footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .content {
        padding: 40px 25px;
    }

    h1 {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .logo {
        max-width: 120px;
    }
}