:root {
    --bg-color: #1e1e1e;
    --text-color: #ffffff;
    --accent-color: #0d9bf5;
    --secondary-color: #3c3c3c;
    --tertiary-color: #2c2c2c;
    --highlight-color: rgba(13, 155, 245, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.maintenance-container {
    max-width: 900px;
    width: 90%;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}

.content {
    position: relative;
    z-index: 2;
}

.logo {
    margin-bottom: 40px;
}

.logo-placeholder {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 8px 20px;
    display: inline-block;
    border-radius: 4px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--highlight-color);
    z-index: -1;
}

.message {
    max-width: 650px;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.message p {
    margin-bottom: 15px;
}

.timer {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.timer-block {
    background-color: var(--tertiary-color);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timer-block span {
    font-size: 2.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.timer-label {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400 !important;
}

.progress-container {
    margin-bottom: 50px;
}

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

.progress {
    height: 100%;
    background-color: var(--accent-color);
    width: 0;
    transition: width 0.5s ease;
    border-radius: 10px;
}

.progress-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #4db5ff;
    text-decoration: underline;
}

.decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 155, 245, 0.1), rgba(13, 155, 245, 0.05));
    animation: float 12s infinite ease-in-out;
}

.circle-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    animation-delay: 0s;
}

.circle-2 {
    bottom: -150px;
    right: 30%;
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

.circle-3 {
    top: 20%;
    left: -80px;
    width: 200px;
    height: 200px;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .timer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timer-block {
        min-width: 80px;
    }

    .message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .logo-placeholder {
        font-size: 1.2rem;
    }

    .timer-block {
        min-width: 70px;
        padding: 10px;
    }

    .timer-block span {
        font-size: 1.8rem;
    }
}