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

:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #ecf0f1;
    --success-color: #27ae60;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    padding: 20px;
}

.maintenance-container {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideIn 0.6s ease-out;
}

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

.content {
    padding: 60px 40px;
    text-align: center;
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.icon svg {
    width: 100%;
    height: 100%;
}

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

h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.timer-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.timer-item .number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.timer-item .label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

.message {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
    padding: 20px;
    background: #ecf8ff;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

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

.contact-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-link {
    display: inline-block;
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    padding: 10px 20px;
    background: #ecf8ff;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer p {
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px;
    }
    
    .timer-item .number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .maintenance-container {
        border-radius: 15px;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .timer-item {
        padding: 10px;
    }
    
    .timer-item .number {
        font-size: 20px;
    }
    
    .timer-item .label {
        font-size: 10px;
    }
}
