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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #45346b, #3498db);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.maintenance-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.maintenance-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.hammer {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    border-radius: 50% 0 50% 50%;
}

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

p {
    color: #34495e;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.estimated-time {
    color: #7f8c8d;
    font-size: 1.1em;
}
img {
    border-radius: 50% 50% 50% 50%;
}
