/* 404 страница */
.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 20px;
}

.error-content {
    text-align: center;
    max-width: 500px;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    margin: 0;
    color: var(--btn-bg);
    line-height: 1;
}

.error-title {
    font-size: 28px;
    margin: 20px 0 10px;
    color: var(--text-main);
}

.error-text {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

.error-content .btn {
    display: inline-block;
    width: auto;
}

body {
    background: linear-gradient(135deg, #f4f7f6 0%, #e9eff1 100%);
    color: #2D3748;
    font-family: 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
}
h1, h2, h3, .font-accent {
    font-family: 'Montserrat', sans-serif;
}
/* Элегантная эко-карточка */
.eco-card {
    background: #ffffff;
    border: none;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(45, 55, 72, 0.07);
    overflow: hidden;
    border-top: 6px solid #2B6CB0; /* Красивая полоса сверху */
}
.text-gold {
    color: #D69E2E;
}
.btn-safari {
    background: #2B6CB0;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}
.btn-safari:hover {
    background: #2C5282;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(43, 108, 176, 0.2);
}
/* Карта теперь светлая и аккуратная */
#map {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}
