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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.construction-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

.construction-icon svg {
    width: 100%;
    height: 100%;
    fill: #ff9800;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.progress {
    height: 100%;
    background-color: #4caf50;
    border-radius: 5px;
    width: 70%;
    animation: progress 2s ease-in-out infinite alternate;
}

.sub-text {
    color: #666;
    font-size: 1rem;
}

.icp-footer {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    text-align: center;
}

.icp-footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icp-footer a:hover {
    color: #666;
}

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

@keyframes progress {
    0% {
        width: 20%;
    }
    100% {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 1rem;
    }
} 