
        /* === Статья === */
        .article-full {
            background: rgba(30, 25, 65, 0.8);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(157, 78, 221, 0.3);
        }

        .article-header {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(157, 78, 221, 0.3);
        }

        .article-title {
            color: #c5b3e6;
            font-family: 'Playfair Display', serif;
            font-size: 2.2em;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .article-meta {
            color: #a090d0;
            font-size: 1em;
            margin-bottom: 15px;
        }

        .article-image-main {
            width: 100%;
            height: 300px;
            border-radius: 12px;
            object-fit: cover;
            margin: 20px 0;
            border: 2px solid rgba(157, 78, 221, 0.3);
        }

        .article-content-full p,
        .article-content-full li,
        .article-content-full blockquote {
            margin-bottom: 20px;
            color: #d0c5f0;
        }

        .article-content-full h2 {
            color: #9d4edd;
            font-family: 'Playfair Display', serif;
            font-size: 1.6em;
            margin: 30px 0 20px 0;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(157, 78, 221, 0.3);
        }

        .article-content-full h3 {
            color: #c5b3e6;
            font-size: 1.3em;
            margin: 25px 0 15px 0;
        }

        .article-content-full ul, .article-content-full ol {
            padding-left: 30px;
        }

        .article-content-full blockquote {
            background: rgba(93, 53, 135, 0.3);
            border-left: 4px solid #9d4edd;
            padding: 20px;
            margin: 25px 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
            color: #e0d0ff;
        }

        /* === Похожие статьи === */
        .related-articles h3 {
            color: #9d4edd;
            font-family: 'Playfair Display', serif;
            font-size: 1.4em;
            margin-bottom: 20px;
            text-align: center;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .related-article {
            background: rgba(40, 35, 85, 0.6);
            border-radius: 10px;
            border: 1px solid rgba(157, 78, 221, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            overflow: hidden;
        }

        .related-article:hover {
            transform: translateY(-3px);
            border-color: rgba(157, 78, 221, 0.5);
            box-shadow: 0 5px 15px rgba(157, 78, 221, 0.2);
        }

        .related-article-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-bottom: 1px solid rgba(157, 78, 221, 0.2);
        }

        .related-article-content {
            padding: 15px;
        }

        .related-article h4 {
            color: #c5b3e6;
            font-size: 1.1em;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        /* === Кнопки поделиться === */
        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid rgba(157, 78, 221, 0.3);
            border-bottom: 1px solid rgba(157, 78, 221, 0.3);
        }

        .share-button {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            color: white;
        }

        .share-button:hover {
            transform: translateY(-2px);
        }

        .share-vk { background: #45668e; }
        .share-vk:hover { background: #56779f; box-shadow: 0 5px 15px rgba(69, 102, 142, 0.4); }

        .share-telegram { background: #0088cc; }
        .share-telegram:hover { background: #0099dd; box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4); }

        .share-whatsapp { background: #25d366; }
        .share-whatsapp:hover { background: #36e477; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }

        .share-facebook { background: #3b5998; }
        .share-facebook:hover { background: #4c6aa9; box-shadow: 0 5px 15px rgba(59, 89, 152, 0.4); }

        /* === Подписка === */
        .newsletter {
            background: linear-gradient(135deg, #9d4edd 0%, #7b2cbf 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-top: 15px;
            box-shadow: 0 5px 20px rgba(157, 78, 221, 0.3);
        }

        .newsletter input {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 25px;
            margin-bottom: 10px;
            font-size: 0.9em;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .newsletter input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter button {
            background: linear-gradient(45deg, #5a189a, #3c096c);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9em;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .newsletter button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(90, 24, 154, 0.4);
        }

        /* === Футер === */
        footer {
            background: rgba(25, 20, 55, 0.98);
            color: #c5b3e6;
            text-align: center;
            padding: 25px 0;
            margin-top: 35px;
            backdrop-filter: blur(15px);
            border-top: 2px solid #8a2be2;
        }

        .social-links a {
            color: #9d4edd;
            margin: 0 12px;
            font-size: 1.1em;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: #c5b3e6;
            text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
        }

        /* === Адаптивность === */
        @media (max-width: 1024px) {
            .related-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .content-wrapper { flex-direction: column; }
            .article-title { font-size: 1.8em; }
            .article-image-main { height: 200px; }
            .related-grid { grid-template-columns: 1fr; }
            .share-buttons { flex-wrap: wrap; }
            .share-button { padding: 8px 15px; font-size: 0.9em; }
        }

        /* === Дополнительно === */
        .related-article h4 a {
            color: #c5b3e6;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .related-article h4 a:hover {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
            transform: translateX(5px);
        }
        /* === Ссылки внутри контента статьи === */
        .article-content-full a {
            color: #9d4edd; /* Фиолетовый цвет, соответствующий акцентам */
            text-decoration: none;
            border-bottom: 1px dashed rgba(157, 78, 221, 0.4); /* Тонкая пунктирная подчёркивание — стильно и не агрессивно */
            transition: all 0.3s ease;
            padding-bottom: 1px;
            background: rgba(157, 78, 221, 0.1); /* Лёгкий фон при наведении */
            border-radius: 3px;
        }

        .article-content-full a:hover {
            color: #ffffff;
            border-bottom: 1px solid #c5b3e6;
            background: rgba(157, 78, 221, 0.2);
            text-shadow: 0 0 8px rgba(157, 78, 221, 0.4);
            transform: translateY(-1px);
        }