
        :root {
            --primary: #2c6e49;
            --primary-dark: #1e4e34;
            --primary-light: #4c956c;
            --secondary: #ffd166;
            --accent: #ef6c6c;
            --light: #f9f9f9;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --gray-light: #e9ecef;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
            --radius: 16px;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            cursor: default;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Marcellus', serif;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        /* Анимированный фон */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(135deg, #f9f9f9 0%, #e6f2e6 50%, #d4e8d4 100%);
            overflow: hidden;
        }

        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(44, 110, 73, 0.1);
            animation: floatParticle 20s infinite linear;
        }

        .particle-1 {
            width: 20px;
            height: 20px;
            top: 10%;
            left: 10%;
            animation-duration: 25s;
        }

        .particle-2 {
            width: 15px;
            height: 15px;
            top: 20%;
            right: 15%;
            animation-duration: 20s;
            animation-delay: 2s;
        }

        .particle-3 {
            width: 25px;
            height: 25px;
            bottom: 15%;
            left: 20%;
            animation-duration: 30s;
            animation-delay: 5s;
        }

        .particle-4 {
            width: 10px;
            height: 10px;
            top: 30%;
            left: 30%;
            animation-duration: 18s;
            animation-delay: 1s;
        }

        .particle-5 {
            width: 18px;
            height: 18px;
            bottom: 25%;
            right: 25%;
            animation-duration: 22s;
            animation-delay: 3s;
        }

        .particle-6 {
            width: 12px;
            height: 12px;
            top: 40%;
            right: 40%;
            animation-duration: 17s;
            animation-delay: 4s;
        }

        .particle-7 {
            width: 22px;
            height: 22px;
            bottom: 35%;
            left: 35%;
            animation-duration: 28s;
            animation-delay: 6s;
        }

        .particle-8 {
            width: 16px;
            height: 16px;
            top: 50%;
            right: 10%;
            animation-duration: 24s;
            animation-delay: 7s;
        }

        .floating-leaves {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .leaf {
            position: absolute;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='%232c6e49' d='M12,2C8,2,5,5,5,9c0,6,6,11,7,11s7-5,7-11C19,5,16,2,12,2z'/%3E%3C/svg%3E") no-repeat center;
            opacity: 0.15;
            animation: floatLeaf 25s infinite linear;
        }

        .floating-leaves .leaf-1 {
            width: 30px;
            height: 30px;
            top: 15%;
            left: 5%;
            animation-duration: 30s;
        }

        .floating-leaves .leaf-2 {
            width: 25px;
            height: 25px;
            top: 25%;
            right: 10%;
            animation-duration: 25s;
            animation-delay: 3s;
        }

        .floating-leaves .leaf-3 {
            width: 35px;
            height: 35px;
            bottom: 20%;
            left: 15%;
            animation-duration: 35s;
            animation-delay: 6s;
        }

        .floating-leaves .leaf-4 {
            width: 20px;
            height: 20px;
            bottom: 30%;
            right: 20%;
            animation-duration: 22s;
            animation-delay: 8s;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0.1;
            }
            25% {
                transform: translateY(-30px) translateX(15px) rotate(5deg);
                opacity: 0.2;
            }
            50% {
                transform: translateY(-50px) translateX(-20px) rotate(-5deg);
                opacity: 0.3;
            }
            75% {
                transform: translateY(-20px) translateX(10px) rotate(3deg);
                opacity: 0.2;
            }
            100% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0.1;
            }
        }

        @keyframes floatLeaf {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
            }
            25% {
                transform: translateY(-40px) translateX(20px) rotate(90deg);
            }
            50% {
                transform: translateY(-70px) translateX(-25px) rotate(180deg);
            }
            75% {
                transform: translateY(-30px) translateX(15px) rotate(270deg);
            }
            100% {
                transform: translateY(0) translateX(0) rotate(360deg);
            }
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            color: var(--dark);
            padding: 1.2rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 0.8rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
            z-index: 1001;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo i {
            color: var(--secondary);
            font-size: 2.2rem;
            animation: pulse 2s infinite;
        }

        /* Навигация для десктопа */
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
            font-size: 20px;
        }

        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary);
            transition: var(--transition);
        }

        nav a:hover:after {
            width: 80%;
            left: 10%;
        }

        nav a:hover {
            color: var(--primary);
        }

        /* Гамбургер-меню */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: var(--transition);
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Основной контент */
        .main-content {
            padding-top: calc(var(--header-height) + 2rem);
            min-height: 100vh;
        }

        /* Кнопка "Назад" */
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.8rem 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: var(--transition);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            font-size: 20px;
        }

        .back-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        /* Заголовок статьи */
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
        }

        .article-category {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow);
        }

        .article-title {
            font-size: 25px;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
            line-height: 1.2;
        }

        .article-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: var(--gray);
            font-size: 20px;
            margin-top: 1.5rem;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Изображение статьи */
        .article-image {
            width: 100%;
            border-radius: var(--radius);
            margin-bottom: 2.5rem;
            box-shadow: var(--shadow);
            max-height: 500px;
            object-fit: cover;
        }

        /* Контент статьи */
        .article-content {
            font-size: 1.25rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .article-content p {
            margin-bottom: 1.5rem;
        }

        .article-content h2, .article-content h3 {
            color: var(--primary);
            margin: 2.5rem 0 1rem;
        }

        .article-content blockquote {
            border-left: 4px solid var(--primary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--gray);
        }

        /* Действия со статьей */
        .article-actions {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            justify-content: center;
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: white;
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            box-shadow: var(--shadow);
        }

        .action-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        /* Похожие статьи */
        .related-articles {
            margin-bottom: 5rem;
        }

        .related-articles h3 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            color: var(--primary);
            position: relative;
            padding-bottom: 0.5rem;
            text-align: center;
        }

        .related-articles h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .article-card {
            background-color: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .article-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .article-card:hover .article-img img {
            transform: scale(1.1);
        }

        .article-img .article-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            z-index: 2;
            font-family: 'Inter', sans-serif;
        }

        .article-content-card {
            padding: 2rem;
        }

        .article-content-card h4 {
            margin-bottom: 1rem;
            color: var(--primary);
            font-size: 1.5rem;
            line-height: 1.3;
        }

        .article-content-card p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            overflow: hidden;
            position: relative;
            font-family: 'Inter', sans-serif;
        }

        .read-more i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .read-more:hover {
            padding-right: 2rem;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* Сообщение об ошибке */
        .error-container {
            text-align: center;
            padding: 5rem 2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .error-container i {
            font-size: 5rem;
            color: var(--accent);
            margin-bottom: 2rem;
        }

        .error-container h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .error-container p {
            color: var(--gray);
            margin-bottom: 2.5rem;
            font-size: 1.2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-size: 1rem;
            gap: 0.5rem;
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            box-shadow: var(--shadow);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 5rem;
            /* clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%); */
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            justify-items: center;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: var(--secondary);
        }

        .footer-section p {
            margin-bottom: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
            color: var(--dark);
        }

        .copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Кнопка "Наверх" */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* Анимации */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Адаптивность */
        @media (max-width: 992px) {
            .article-title {
                font-size: 2.8rem;
            }
            
            .articles-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .back-btn {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 0.8rem 1.5rem;
                background: linear-gradient(135deg, var(--primary), var(--primary-light));
                color: white;
                text-decoration: none;
                border-radius: 50px;
                font-weight: 500;
                transition: var(--transition);
                margin-bottom: 2rem;
                box-shadow: var(--shadow);
                font-size: 14px;
            }
            .hamburger {
                display: flex;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background: white;
                padding: 80px 2rem 2rem;
                transition: var(--transition);
                z-index: 1000;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav a {
                display: block;
                padding: 1rem;
                border-radius: 8px;
            }
            
            nav a:hover {
                background: var(--gray-light);
            }
            
            .article-title {
                font-size: 2.3rem;
            }
            
            .article-content {
                padding: 1.5rem;
                font-size: 1.1rem;
            }
            
            .article-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .articles-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                justify-items: left;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 480px) {
            .logo span {
                font-size: 1.5rem;
            }
            
            .article-title {
                font-size: 2rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .article-content {
                padding: 1.2rem;
                word-break: break-all;
            }
        }

        /* Улучшения для фокуса и доступности */
        a:focus, button:focus, input:focus, select:focus {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        /* Улучшения для выделения текста */
        ::selection {
            background: var(--primary);
            color: white;
        }

        ::-moz-selection {
            background: var(--primary);
            color: white;
        }