* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary: #4a6fa5;
    --secondary: #ff6b6b;
    --dark: #333;
    --light: #f0f2f5;
    --accent: #ffd166;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f0f2f5 0%, #e0e5ec 100%);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.content {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 40px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.animate-in {
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.construction-icon {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--primary);
    display: flex;
    justify-content: center;
    gap: 20px;
}

.fa-hard-hat {
    color: var(--accent);
}

.fa-tools {
    color: var(--secondary);
}

h1 {
    color: var(--primary);
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.under-construction {
    margin: 30px 0;
}

.progress-bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 30%;
    border-radius: 5px;
    animation: progress 3s ease-in-out infinite alternate;
    position: relative;
}

@keyframes progress {
    from { width: 10%; }
    to { width: 70%; }
}

.status {
    font-weight: bold;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.coming-soon {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}

.coming-soon p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-item span:first-child {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 60px;
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Particle animation */
.particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(74, 111, 165, 0.2);
    pointer-events: none;
    z-index: 1;
    animation: float 10s linear infinite;
}

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

@media (max-width: 600px) {
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 40%;
        margin-bottom: 10px;
    }
}

/* Hover effects */
.content:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Pulse animation for the coming soon text */
.coming-soon p {
    animation: pulse 2s infinite;
}

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