

/* Start:/local/templates/exform/assets/stylesheets/custom-404.css?17822116566234*/
/* Используем Navigo, как на всём сайте */
:root {
    --font-heading: 'navigo', 'Helvetica', 'Arial', sans-serif;
    --font-body: 'navigo', 'Helvetica', 'Arial', sans-serif;
    --blob-1: #ffe0e0;
    --blob-2: #d6e4ff;
    --blob-3: #fff3d6;
    --blob-4: #ffe0e0;
    --text-main: #1a1a2e;
    --text-soft: #6b7280;
    --accent: #E42E31;
    --accent-hover: #b71c1c;
    --surface: #ffffff;
    --border: #e5e7eb;
    --border-focus: #cccccc;
}

.fluid-404 {
    position: relative;
    min-height: 80vh;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    padding: 60px 24px;
    margin: 20px 0;
    border-radius: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 40px rgba(0,0,0,0.03);
    font-family: var(--font-body);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
    transform: translateZ(0); /* аппаратное ускорение для filter: blur */
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--blob-1);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--blob-2);
    bottom: -80px;
    right: -80px;
}

.blob-3 {
    width: 280px;
    height: 280px;
    background: var(--blob-3);
    top: 50%;
    left: 60%;
}

.blob-4 {
    width: 300px;
    height: 300px;
    background: var(--blob-4);
    bottom: 30%;
    left: 10%;
}

.fluid-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
}

.gauge-container {
    position: relative;
    width: clamp(200px, 28vw, 300px);
    height: clamp(200px, 28vw, 300px);
    margin: 0 auto 16px;
}

#gaugeCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.gauge-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.gauge-value-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 4px;
    transition: color 0.3s;
    letter-spacing: 1px;
}

.gauge-value-text.danger {
    color: var(--accent);
    animation: blink 0.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.fluid-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--text-main);
    margin: 8px 0 8px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.fluid-subtitle {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-soft);
    margin: 0 0 8px;
    font-style: italic;
    line-height: 1.5;
}

.fluid-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-soft);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.fluid-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: color 0.2s;
}

.fluid-text a:hover {
    color: var(--accent-hover);
}

.fluid-search {
    display: flex;
    max-width: 420px;
    margin: 0 auto 30px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.fluid-search:focus-within {
    border-color: var(--border-focus);
    box-shadow: 0 4px 28px rgba(228,46,49,0.08);
}

.fluid-search input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 15px;
    outline: none;
    font-family: var(--font-body);
    color: var(--text-main);
    background: #fafafa;
    font-weight: 400;
}

.fluid-search input::placeholder {
    color: #c4c4c4;
}

.fluid-search button {
    background: var(--accent);
    border: none;
    color: white;
    padding: 16px 28px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.3s;
    white-space: nowrap;
}

.fluid-search button:hover {
    background: var(--accent-hover);
}

.fluid-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.fluid-link {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    background: #f3f4f6;
    color: var(--text-main);
    transition: all 0.3s;
    letter-spacing: 0.2px;
    font-family: var(--font-body);
}

.fluid-link:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.fluid-link.accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 6px 24px rgba(228,46,49,0.2);
}

.fluid-link.accent:hover {
    background: var(--accent-hover);
    box-shadow: 0 10px 30px rgba(228,46,49,0.3);
}

@media (max-width: 640px) {
    .fluid-404 {
        min-height: 85vh;
        padding: 40px 16px;
        border-radius: 20px;
    }
    .gauge-container {
        width: 180px;
        height: 180px;
    }
    .fluid-search {
        flex-direction: column;
        border-radius: 20px;
        border: none;
        box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
    .fluid-search input {
        border-radius: 20px 20px 0 0;
        border: 2px solid var(--border);
        border-bottom: none;
        text-align: center;
    }
    .fluid-search input:focus {
        border-color: var(--border-focus);
    }
    .fluid-search button {
        border-radius: 0 0 20px 20px;
        padding: 14px;
    }
    .fluid-title {
        font-size: 22px;
    }
    .fluid-subtitle {
        font-size: 14px;
    }
    .blob {
        filter: blur(60px);
        opacity: 0.35;
    }
    .blob-1 { width: 250px; height: 250px; }
    .blob-2 { width: 220px; height: 220px; }
    .blob-3 { width: 180px; height: 180px; }
    .blob-4 { width: 200px; height: 200px; }
}
/* End */
/* /local/templates/exform/assets/stylesheets/custom-404.css?17822116566234 */
