/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 50%, #7fb069 100%);
    min-height: 100vh;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Container */
.construction-container {
    text-align: center;
    max-width: 500px;
    width: 45%;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Brand Section */
.brand {
    margin-bottom: 3rem;
}

.logo {
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.logo img {
    width: 120px;
    height: auto;
    display: block;
}

.brand h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.domain {
    font-size: 1.2rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Main Content */
.main-content {
    margin-bottom: 3rem;
}

.main-content .icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.main-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.description {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.contact-item .icon {
    font-size: 1.2rem;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer */
.footer {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Loading Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.main-content .icon {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .construction-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
        max-width: calc(100vw - 2rem);
    }
    
    .logo {
        padding: 12px;
    }
    
    .logo img {
        width: 100px;
    }
    
    .brand h1 {
        font-size: 1.4rem;
    }
    
    .domain {
        font-size: 1rem;
    }
    
    .main-content h2 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .main-content .icon {
        font-size: 3rem;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .construction-container {
        padding: 1.5rem 1rem;
    }
    
    .logo {
        padding: 10px;
    }
    
    .logo img {
        width: 80px;
    }
    
    .brand h1 {
        font-size: 1.2rem;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}