@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #978E85;
    --secondary-color: #000000;
    --background-color: #121212;
    --container-bg: #21201E;
    --text-color: #D5CCBD;
    --accent-color: #e74c3c;
    --muted-color: #aaaaaa;
    --progress-bg: #333333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    background-color: var(--container-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.construction-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    position: relative;
}

.construction-icon i {
    color: var(--primary-color);
}

.construction-icon .animated {
    color: var(--accent-color);
    position: absolute;
    top: 10px;
    right: 50%;
    margin-right: -40px;
    animation: toolsAnimation 2s infinite;
}

@keyframes toolsAnimation {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

.progress-container {
    margin: 30px auto;
    width: 90%;
    max-width: 500px;
}

.progress-bar {
    height: 10px;
    background-color: var(--progress-bg);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    transition: width 0.4s ease;
}

.percentage {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.estimated-time {
    margin: 20px 0;
    font-size: 1rem;
    color: var(--muted-color);
}

#countdown {
    font-weight: 600;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .construction-icon {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }
    
    .container {
        padding: 30px 15px;
    }
}