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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-color: #f7fafc;
    --white: #ffffff;
    --divider-color: #cbd5e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 600px;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: auto 0;
}

.logo {
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: inline-block;
}

.logo svg {
    filter: drop-shadow(0 2px 4px rgba(26, 54, 93, 0.1));
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 2rem auto;
    border-radius: 2px;
}

.maintenance-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--divider-color);
}

.domain {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    h2 {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .maintenance-text {
        font-size: 1.25rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .logo svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .content {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 0.85rem;
    }

    footer {
        font-size: 0.75rem;
    }
}
