/* Under Construction Frontend Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

.uc-container {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background */
.uc-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Content Wrapper */
.uc-content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 600px;
    width: 100%;
}

/* Logo Section */
.uc-logo-section {
    margin-bottom: 40px;
}

.uc-logo {
    margin-bottom: 20px;
}

.uc-logo img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

.uc-icon {
    font-size: 80px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Main Content */
.uc-main-content {
    margin-bottom: 50px;
}

.uc-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease;
}

.uc-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Countdown Timer */
.uc-countdown-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.uc-countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.uc-countdown-item {
    text-align: center;
}

.uc-countdown-number {
    font-size: 48px;
    font-weight: 700;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 80px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    margin-bottom: 8px;
}

.uc-countdown-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.uc-countdown-message {
    font-size: 16px;
    opacity: 0.8;
}

/* Progress Bar */
.uc-progress-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.uc-progress-bar {
    background: rgba(255,255,255,0.2);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.uc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
    border-radius: 4px;
    transition: width 1s ease;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

.uc-progress-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.uc-progress-percentage {
    font-size: 24px;
    font-weight: 700;
}

.uc-progress-label {
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.uc-contact-section {
    animation: fadeInUp 0.8s ease 0.8s both;
}

.uc-contact-info {
    margin-bottom: 30px;
}

.uc-contact-info p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.uc-email {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 24px;
    background: rgba(255,255,255,0.15);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.uc-email:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Social Links */
.uc-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.uc-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.uc-social-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.uc-social-link svg {
    transition: transform 0.3s ease;
}

.uc-social-link:hover svg {
    transform: scale(1.1);
}

/* Particles */
.uc-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.uc-particle {
    position: absolute;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(0.5);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .uc-content-wrapper {
        padding: 20px 15px;
    }
    
    .uc-title {
        font-size: 36px;
    }
    
    .uc-message {
        font-size: 16px;
    }
    
    .uc-countdown {
        gap: 15px;
    }
    
    .uc-countdown-number {
        font-size: 36px;
        padding: 12px 15px;
        min-width: 60px;
    }
    
    .uc-countdown-label {
        font-size: 12px;
    }
    
    .uc-progress-percentage {
        font-size: 20px;
    }
    
    .uc-icon {
        font-size: 60px;
    }
    
    .uc-social-links {
        gap: 15px;
    }
    
    .uc-social-link {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .uc-countdown {
        gap: 10px;
    }
    
    .uc-countdown-number {
        font-size: 28px;
        padding: 10px 12px;
        min-width: 50px;
    }
    
    .uc-countdown-label {
        font-size: 11px;
    }
    
    .uc-social-links {
        gap: 12px;
    }
    
    .uc-social-link {
        width: 40px;
        height: 40px;
    }
    
    .uc-social-link svg {
        width: 20px;
        height: 20px;
    }
}

/* Animation for page load */
.uc-content-wrapper > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.uc-content-wrapper > *:nth-child(1) { animation-delay: 0.1s; }
.uc-content-wrapper > *:nth-child(2) { animation-delay: 0.2s; }
.uc-content-wrapper > *:nth-child(3) { animation-delay: 0.3s; }
.uc-content-wrapper > *:nth-child(4) { animation-delay: 0.4s; }