:root {
    --primary-color: #0066cc;
    --secondary-color: #ff6b35;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --text-color: #555555;
    --border-radius: 8px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.under-construction {
    width: 100%;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.8s ease;
}

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

.logo {
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-style: italic;
}

.construction-notice {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin: 40px 0;
}

.icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.construction-notice h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.message {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.description {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-section {
    margin: 50px 0;
    padding: 40px;
    background: #ffffff;
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
}

.contact-section h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.contact-item {
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.contact-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.social-section {
    margin: 40px 0;
}

.social-section p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-links a:hover svg path {
    fill: var(--primary-color);
}

.social-links svg path {
    transition: fill 0.3s;
}

.copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .construction-notice h2 {
        font-size: 1.5rem;
    }

    .message {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .construction-notice {
        padding: 20px;
    }

    .contact-section {
        padding: 20px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links svg {
        width: 24px;
        height: 24px;
    }
}