
    :root {
        --primary-color: #086F83;
        --primary-light: #0a9396;
        --primary-dark: #014653;
        --primary-accent: #044e61;
        --accent-color: #bae6fd;
        --surface: rgba(255, 255, 255, 0.95);
        --surface-variant: rgba(255, 255, 255, 0.8);
        --surface-glass: rgba(255, 255, 255, 0.1);
        --on-surface: #ffffff;
        --on-surface-dark: #0f172a;
        --on-surface-variant: #e2e8f0;
        --outline: rgba(255, 255, 255, 0.2);
        --outline-variant: rgba(255, 255, 255, 0.1);
        --shadow: rgba(0, 0, 0, 0.1);
        --shadow-elevated: rgba(0, 0, 0, 0.2);
        --border-radius: 16px;
        --border-radius-lg: 24px;
        --spacing-xs: 0.25rem;
        --spacing-sm: 0.5rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
    }

    * {
        box-sizing: border-box;
    }

    body {
        background: linear-gradient(135deg, #014653 0%, #0a9396 50%, #044e61 100%);
        background-attachment: fixed;
        margin: 0;
        padding: var(--spacing-xl);
        min-height: 100vh;
        font-family: "Unbounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
        color: var(--on-surface-dark);
        line-height: 1.6;
        font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
        position: relative;
    }

    /* Добавляем анимированные частицы */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 80%, rgba(186, 230, 253, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(8, 111, 131, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(10, 147, 150, 0.08) 0%, transparent 50%);
        z-index: -1;
        animation: floatingParticles 20s ease-in-out infinite;
    }

     /* Контейнер для навигации */
    .navigation-container {
        display: flex;
        margin: 0 auto;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: var(--spacing-md);
        padding: 0.5rem;
        background: var(--surface-glass);
        backdrop-filter: blur(20px);
        border-radius: var(--border-radius);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.1),
            0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border: 1px solid var(--outline);
        z-index: 10;

    }

    /* Для фиксации при прокрутке (если нужен фиксированный) */


    /* Контейнер для переключателей вида */
    .view-switcher {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;



    }

    .view-switcher-label {
        display: block;
        font-size: 0.7rem !important;
        color: var(--on-surface-variant);
        font-weight: 600;
        margin-left: var(--spacing-sm);
        white-space: nowrap;



    }

    /* Стили для переключателей вида */
    .view-link {
        color: var(--on-surface-variant);
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        padding: 10px 16px;
        border-radius: 10px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 8px;
        backdrop-filter: blur(10px);
        width: 100%;
    }

    .view-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .view-link:hover::before {
        opacity: 1;
    }

    .view-link:hover {
        color: white;
        text-decoration: none;
        transform: translateY(-1px);
    }

    .view-link.active {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        font-weight: 600;
        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .view-link.active:hover {
        background: rgba(255, 255, 255, 0.25);
        color: white;
    }

    /* Основная кноп��а возврата */
    .btn-main {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 14px 28px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9375rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-family: "Inter", sans-serif;
        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .btn-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .btn-main:hover::before {
        left: 100%;
    }

    .btn-main:hover {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
        transform: translateY(-2px);
        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        color: white;
        text-decoration: none;
        border-color: rgba(255, 255, 255, 0.4);
    }

    .btn-main:active {
        transform: translateY(-1px);
    }

        /* Мобильные стили */
    @media (max-width: 767px) {
        body {
            padding: var(--spacing-md);
        }

        .navigation-container {
            flex-direction: column;
            align-items: stretch;
            gap: var(--spacing-md);
            padding: var(--spacing-md);
        }

        .view-switcher {
            display: flex;
            align-items: center;
            gap: 0.5rem;


        }

        .view-switcher-label {
            width: 100%;
            text-align: center;
            margin-bottom: var(--spacing-sm);
            margin-right: 0;
        }

        .view-link {
            font-size: 0.8125rem;
            padding: 8px 14px;
        }

        .btn-main {
            width: 100%;
            justify-content: center;
        }

        .blog-card {
            margin: var(--spacing-lg) auto;
        }

        .blog-card .description {
            padding: var(--spacing-lg);
        }

        .blog-card .description h1 {
            font-size: 1.375rem;
        }

        .blog-card .meta {
            height: 240px;
        }
    }

    /* Очень маленькие экраны */
    @media (max-width: 480px) {
        .view-link {
            font-size: 0.75rem;
            padding: 6px 12px;
        }

        .blog-card .description {
            padding: var(--spacing-md);
        }

        .blog-card .description h1 {
            font-size: 1.25rem;
        }

        .blog-card .meta {
            height: 200px;
        }
            .navigation-container {

        padding: 0.2em;


    }
    }

/*стили 1 новости*/
