﻿/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #222326;/*#0a0a0a;*/
    color: #c4bdb8;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== ШУМ (ЗЕРНИСТОСТЬ) ===== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.site-wrapper {
    max-width: 1440px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: relative;
    z-index: 1;
    padding: 20px;
    gap: 40px;
}

/* ===== БОКОВАЯ НАВИГАЦИЯ ===== */
.main-nav {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 10px 40px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    height: 90vh;
    position: sticky;
    top: 20px;
}

.nav-brand .author-initials {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #e0d6d0;
    letter-spacing: 2px;
    line-height: 1;
}

.nav-brand .author-name {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    /*color: #6a5f5a;*/
    margin-top: 8px;
    display: block;
}

.nav-links {
    list-style: none;
    margin: 60px 0;
}

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    color: #8a7e78;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 0;
    background: #8b2a2a;
    transform: translateY(-50%);
    transition: height 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #e8ddd6;
}

.nav-links a.active::before {
    height: 100%;
}

.nav-footer {
    font-size: 0.7rem;
    /*color: #3a3532;*/
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-mark {
    font-size: 1.2rem;
    color: #5a3a2a;
}

/* ===== ОСНОВНОЙ КОНТЕНТ ===== */
.content-area {
    flex: 1;
    padding: 40px 20px 40px 0;
    overflow-y: auto;
    max-height: 90vh;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-section {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: #ece4de;
    margin-bottom: 50px;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* ===== КНИГИ (СЕТКА) ===== */
.books-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.book-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 30px;
}

.book-cover {
    width: 60px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #14100e !important;
}

.book-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #ece4de;
    margin-bottom: 2px;
}

.book-year {
    font-size: 0.8rem;
    color: #6a5f5a;
    margin-bottom: 10px;
    font-weight: 400;
}

.book-desc {
    font-size: 0.95rem;
    color: #a69b94;
    max-width: 500px;
}

/* ===== СТРАНИЦА ОБ АВТОРЕ ===== */
.about-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.author-portrait {
    width: 100%;
    max-width: 300px;
    height: 300px;
    background: #14100e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #2a1f1a, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #3a2a22;
    font-family: 'Cormorant Garamond', serif;
}

.portrait-placeholder::after {
    content: "А.Т.";
    letter-spacing: 10px;
}

.bio-text {
    font-size: 1.05rem;
    color: #b0a69f;
    margin-bottom: 20px;
    max-width: 600px;
}

.author-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: #c49b6c;
    border-left: 2px solid #c49b6c;
    padding-left: 30px;
    margin-top: 20px;
    line-height: 1.4;
}

/* ===== КОНТАКТЫ ===== */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c4bdb8;
    margin-bottom: 5px;
}

.contact-item a {
    color: #ece4de;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #c49b6c;
}

/* ===== ФОРМА ===== */
.dark-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.dark-form input,
.dark-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 5px;
    color: #ece4de;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.dark-form input:focus,
.dark-form textarea:focus {
    outline: none;
    border-bottom-color: #8b2a2a;
}

.dark-form input::placeholder,
.dark-form textarea::placeholder {
    color: #5a4f4a;
    font-weight: 300;
}

.btn-submit {
    background: transparent;
    border: 1px solid #8b2a2a;
    color: #ece4de;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
    width: fit-content;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #8b2a2a;
    color: #0a0a0a;
    border-color: #8b2a2a;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .site-wrapper {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }

    .main-nav {
        flex: 0 0 auto;
        flex-direction: row;
        align-items: center;
        padding: 20px 10px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        height: auto;
        position: relative;
        top: 0;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-brand .author-initials {
        font-size: 2rem;
    }

    .nav-links {
        display: flex;
        margin: 0;
        gap: 20px;
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links li {
        margin-bottom: 0;
    }

    .nav-links a {
        padding-left: 0;
        font-size: 0.9rem;
    }

    .nav-links a::before {
        display: none;
    }

    .nav-footer {
        display: none;
    }

    .content-area {
        padding: 20px 10px;
        max-height: none;
    }

    .page-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .book-item {
        flex-direction: column;
        gap: 15px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .author-quote {
        font-size: 1.3rem;
        padding-left: 15px;
    }

}
/* ===== НАВИГАЦИЯ (ГОТИЧЕСКАЯ) ===== */
.main-nav {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px 40px 0;
    border-right: 1px solid rgba(139, 26, 26, 0.15);
    height: 85vh;
    position: sticky;
    top: 30px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(139, 26, 26, 0.1);
}

.brand-icon {
    font-size: 3.5rem;
    color: #8b1a1a;
    opacity: 0.7;
    line-height: 1;
    text-shadow: 0 0 30px rgba(139, 26, 26, 0.2);
    font-family: 'Cormorant Garamond', serif;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; text-shadow: 0 0 20px rgba(139, 26, 26, 0.2); }
    50% { opacity: 1; text-shadow: 0 0 40px rgba(139, 26, 26, 0.5); }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ece4de;
    letter-spacing: 2px;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    /*color: #8a7e78;*/
    margin-top: 2px;
    font-weight: 300;
}
.brand-sub .highlight-letter {
    color: #8b1a1a;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(139, 26, 26, 0.4);
    transition: all 0.3s ease;
}

.brand-sub .highlight-letter:hover {
    text-shadow: 0 0 40px rgba(139, 26, 26, 0.8);
}

/* ===== АДАПТИВ (МОБИЛЬНАЯ ВЕРСИЯ) ===== */
@media (max-width: 768px) {
    .site-wrapper {
        flex-direction: column;
        padding: 0;
        gap: 0;
        background: #0a0a0a;
    }

    /* ===== ФИКСИРОВАННАЯ НАВИГАЦИЯ ===== */
    .main-nav {
        flex: 0 0 auto;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(139, 26, 26, 0.15);
        height: auto;
        position: sticky;
        top: 0;
        z-index: 100;
        
        /* ===== НЕПРОЗРАЧНЫЙ ФОН ===== */
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        /* ===== ТЕНИ ДЛЯ ГЛУБИНЫ ===== */
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
        
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }

    /* ===== БРЕНД В МОБИЛЬНОЙ ВЕРСИИ ===== */
    .nav-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0;
        border-bottom: none;
        flex: 1;
    }

    .brand-icon {
        font-size: 1.8rem;
        animation: pulse-glow 3s ease-in-out infinite;
    }

    .brand-text {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .author-name {
        font-size: 1.2rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .brand-sub {
        font-size: 0.45rem;
        letter-spacing: 2px;
        opacity: 0.7;
    }

    /* ===== НАВИГАЦИОННЫЕ ССЫЛКИ ===== */
    .nav-links {
        display: flex;
        margin: 0;
        gap: 15px;
        order: 3;
        width: 100%;
        justify-content: flex-start;
        padding: 8px 0 0 0;
        border-top: 1px solid rgba(139, 26, 26, 0.08);
    }

    .nav-links li {
        margin-bottom: 0;
    }

    .nav-links a {
        padding: 5px 0;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        color: #8a7e78;
        position: relative;
    }

    .nav-links a::before,
    .nav-links a::after {
        display: none;
    }

    .nav-links a.active {
        color: #c49b6c;
    }

    .nav-links a.active::after {
        display: block;
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #8b1a1a;
        box-shadow: 0 0 10px rgba(139, 26, 26, 0.5);
    }

    /* ===== ФУТЕР НАВИГАЦИИ (СКРЫТ) ===== */
    .nav-footer {
        display: none;
    }

    /* ===== ОСНОВНОЙ КОНТЕНТ ===== */
    .content-area {
        padding: 20px 15px 40px 15px;
        max-height: none;
        margin-top: 0;
    }

    .page-container {
        max-width: 100%;
    }

    .page-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }

    /* ===== КНИГИ ===== */
    .book-item {
        flex-direction: column;
        gap: 12px;
        padding-bottom: 25px;
    }

    .book-item:hover {
        padding-left: 0;
    }

    .book-cover {
        width: 60px;
        height: 80px;
    }

    .book-info h3 {
        font-size: 1.4rem;
    }

    .book-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* ===== ОБ АВТОРЕ ===== */
    .author-portrait {
        max-width: 200px;
        height: 200px;
    }

    .portrait-placeholder::after {
        font-size: 2.5rem;
        letter-spacing: 10px;
    }

    .author-quote {
        font-size: 1.2rem;
        padding-left: 15px;
    }

    .author-stats {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.7rem;
    }

    /* ===== КОНТАКТЫ ===== */
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dark-form {
        max-width: 100%;
    }

    /* ===== ГЛАВНАЯ ===== */
    .hero-text {
        font-size: 1rem;
    }

    .hero-quote {
        font-size: 1.3rem;
        padding-left: 15px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
    }
	
	.book-item {
        display: flex;
        flex-direction: row; /* ← Горизонтально */
        gap: 15px;
        align-items: flex-start;
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(139, 26, 26, 0.1);
    }

    .book-cover {
        width: 80px;
        height: 112px;
        flex-shrink: 0; /* ← Не сжимается */
    }

    .book-info {
        flex: 1; /* ← Занимает оставшееся место */
        min-width: 0; /* ← Для переноса текста */
    }

    .book-info h3 {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .book-year {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }

    .book-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .book-meta {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 8px;
    }

    .book-meta span {
        font-size: 0.6rem;
        padding: 1px 10px;
    }

    /* ===== ОБЛОЖКА ПРИ НАВЕДЕНИИ (МОБИЛЬНАЯ) ===== */
    .book-item:hover .book-cover {
        border-color: rgba(139, 26, 26, 0.3);
        box-shadow: none;
    }

    .book-item:hover .book-cover-img {
        transform: none;
    }
}

/* ===== ДОПОЛНИТЕЛЬНО: ДЛЯ ОЧЕНЬ МАЛЕНЬКИХ ЭКРАНОВ ===== */
@media (max-width: 480px) {
    .main-nav {
        padding: 12px 15px;
    }

    .author-name {
        font-size: 1rem;
    }

    .brand-sub {
        font-size: 0.4rem;
        letter-spacing: 1.5px;
    }

    .brand-icon {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .book-info h3 {
        font-size: 1.2rem;
    }
	 .book-item {
        gap: 12px;
        padding-bottom: 20px;
    }

    .book-cover {
        width: 65px;
        height: 91px;
    }

    .book-info h3 {
        font-size: 1rem;
    }

    .book-desc {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .book-meta span {
        font-size: 0.55rem;
        padding: 1px 8px;
    }
}

/* ===== ОБЛОЖКИ КНИГ ===== */
.book-cover {
    width: 100px;
    height: 140px;
    flex-shrink: 0;
    border: 1px solid rgba(139, 26, 26, 0.3);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    background: #1a1410;
}

.book-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* ===== ЭФФЕКТ ПРИ НАВЕДЕНИИ ===== */
.book-item:hover .book-cover {
    border-color: #c49b6c;
    box-shadow: 0 0 30px rgba(139, 26, 26, 0.2);
}

.book-item:hover .book-cover-img {
    transform: scale(1.05);
}

/* ===== ПЛЕЙСХОЛДЕР, ЕСЛИ КАРТИНКА НЕ ЗАГРУЗИЛАСЬ ===== */
.book-cover-img {
    background: #1a1410;
}

.book-cover-img::after {
    content: '📖';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
}
/* ===== ССЫЛКИ НА ПЛАТФОРМЫ ===== */
.book-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
}

.platform-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ===== AUTHOR.TODAY ===== */
.platform-link.author-today {
   /**/
	color: #4a90d9;
    border-color: rgba(74, 144, 217, 0.25);
    background: rgba(74, 144, 217, 0.05);
}

.platform-link.author-today:hover {
    
	background: rgba(74, 144, 217, 0.15);
    border-color: rgba(74, 144, 217, 0.5);
    box-shadow: 0 0 30px rgba(74, 144, 217, 0.1);
    transform: translateY(-2px);
}

/* ===== ЛИТРЕС ===== */
.platform-link.litres {
	color: #c49b6c;
    border-color: rgba(196, 155, 108, 0.25);
    background: rgba(196, 155, 108, 0.05);
   /* color: #4a90d9;
    border-color: rgba(74, 144, 217, 0.25);
    background: rgba(74, 144, 217, 0.05);*/
	

.platform-link.litres:hover {
    /*background: rgba(74, 144, 217, 0.15);
    border-color: rgba(74, 144, 217, 0.5);
    box-shadow: 0 0 30px rgba(74, 144, 217, 0.1);
    transform: translateY(-2px);*/
	background: rgba(196, 155, 108, 0.15);
    border-color: rgba(196, 155, 108, 0.5);
    box-shadow: 0 0 30px rgba(196, 155, 108, 0.1);
    transform: translateY(-2px);
}
}

/* ===== ЛИТНЕТ ===== */
.platform-link.litnet {
    color: #cf6299;
    border-color: rgba(207, 98, 153, 0.25);
    background: rgba(207, 98, 153, 0.05);
}

.platform-link.litnet:hover {
    background: rgba(207, 98, 153, 0.15);
    border-color: rgba(207, 98, 153, 0.5);
    box-shadow: 0 0 30px rgba(207, 98, 153, 0.1);
    transform: translateY(-2px);
}

/* ===== АНИМАЦИЯ ПРИ НАВЕДЕНИИ ===== */
.platform-link span {
    transition: all 0.3s ease;
}

.platform-link:hover span {
    letter-spacing: 1px;
}
/* ===== BOOSTY (ОРАНЖЕВЫЙ) ===== */
.platform-link.boosty {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.25);
    background: rgba(245, 158, 11, 0.05);
}

.platform-link.boosty:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}
/* ===== ЗАГОЛОВОК КНИГИ С БЕЙДЖЕМ ===== */
.book-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.book-header h3 {
    margin-bottom: 0;
}

/* ===== БЕЙДЖИ СТАТУСА ===== */
.label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.book-status-icon {
    font-size: 0.7rem;
    font-style: normal;
}

/* ===== ГОТОВО (ЗЕЛЕНЫЙ) ===== */
.label-success {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.label-success:hover {
    background: rgba(74, 222, 128, 0.2);
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.05);
}

/* ===== В ПРОЦЕССЕ (СИНИЙ) ===== */
.label-primary {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    animation: pulse-blue 2s ease-in-out infinite;
}

.label-primary:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.05);
}

@keyframes pulse-blue {
    0%, 100% {
        box-shadow: 0 0 10px rgba(96, 165, 250, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
    }
}

/* ===== ПЛАНИРУЕТСЯ (ЖЕЛТЫЙ/ОРАНЖЕВЫЙ) ===== */
.label-warning {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.label-warning:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.05);
}

/* ===== ПРОГРЕСС В МЕТА-ДАННЫХ ===== */
.meta-progress {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.15);
    background: rgba(96, 165, 250, 0.05);
}
