/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

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

.construction-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.construction-content {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.construction-icon {
    margin: 2rem 0;
}

.icon-wrapper {
    font-size: 5rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

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

.construction-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.construction-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.construction-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.construction-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .construction-content {
        padding: 3rem 2rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .construction-title {
        font-size: 1.5rem;
    }

    .construction-subtitle {
        font-size: 1rem;
    }

    .icon-wrapper {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }

    .construction-content {
        padding: 2rem 1.5rem;
    }

    .logo h1 {
        font-size: 1.75rem;
    }

    .construction-title {
        font-size: 1.25rem;
    }
}

