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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #2563eb 0%, #1e293b 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
}

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

.construction-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-logo {
    max-height: 80px;
    max-width: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.construction-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.construction-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.construction-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.construction-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.contact-email {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f97316;
    margin-top: 0.5rem;
}

@media (max-width: 640px) {
    .construction-content {
        padding: 2rem 1.5rem;
    }
    
    .construction-logo {
        max-height: 60px;
        max-width: 220px;
    }
    
    .construction-title {
        font-size: 2rem;
    }
    
    .construction-subtitle {
        font-size: 1.125rem;
    }
    
    .construction-info p {
        font-size: 0.9rem;
    }
    
    .contact-email {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .construction-content {
        padding: 1.5rem 1rem;
    }
    
    .construction-logo {
        max-height: 50px;
        max-width: 180px;
    }
    
    .construction-title {
        font-size: 1.75rem;
    }
    
    .construction-subtitle {
        font-size: 1rem;
    }
}

