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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 40px;
    text-align: center;
    position: relative;
    margin: 0 auto;
}

.logo-container {
    margin: 0 auto 80px;
    padding: 0;
    animation: fadeInDown 1s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-image {
    max-width: 400px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.content {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.message {
    margin-bottom: 50px;
}

.construction-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.construction-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.decorative-elements {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: pulse 2s ease-in-out infinite;
}

.dot-1 {
    animation-delay: 0s;
}

.dot-2 {
    animation-delay: 0.3s;
}

.dot-3 {
    animation-delay: 0.6s;
}

.footer {
    animation: fadeIn 1s ease-out 0.6s both;
}

.copyright {
    font-size: 0.875rem;
    color: #999;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Animations */
@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);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        max-width: 300px;
    }
    
    .construction-title {
        font-size: 1.5rem;
    }
    
    .construction-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .container {
        padding: 30px;
    }
    
    .logo-container {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 250px;
    }
    
    .construction-title {
        font-size: 1.25rem;
    }
    
    .container {
        padding: 20px;
    }
}

/* Subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}
