body.poetry-poetic-stories {
    background: linear-gradient(
        to bottom,
        #bcd9bc 0%,
        #8fbf8a 30%,
        #5f9f63 60%,
        #3f7a45 85%,
        #2b5c34 100%
    );
    position: relative;
    padding-top: 70px;
}

/* лёгкое «сияние» */
body.poetry-poetic-stories::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 215, 120, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 35%);
    z-index: -1;
}

/* Навбар */
body.poetry-poetic-stories .top-nav {
    background: rgba(20, 55, 28, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 120, 0.25);
}

/* Карточка стихотворения */
body.poetry-poetic-stories .poem {
    background: linear-gradient(
        to bottom,
        #1f4d2e,
        #163d24
    );
    border: 1px solid rgba(255, 215, 120, 0.35);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);

    color: #f5f8f5;
}

/* Заголовки */
body.poetry-poetic-stories h1 {
    color: #e6c76a;

    display: inline-block;
    padding: 8px 16px;
    border-radius: 12px;

    background: rgba(10, 30, 15, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(255, 215, 120, 0.35);

    box-shadow:
        0 6px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);

    letter-spacing: 0.5px;

    /* ✅ ключ */
    margin: 20px auto;
    display: block;
    width: fit-content;
}

.poem h2 {
    color: #f0d878;
}

/* Текст */
body.poetry-poetic-stories .poem p {
    color: #eef5ee;
}

body.poetry-poetic-stories .poem-tags a,
body.poetry-poetic-Stories .poem-tags span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;

    font-size: 0.92rem;
    color: #dfffe8; /* мягкий светло‑зелёный */
    background: rgba(40, 80, 40, 0.28); /* зелёная дымка */
    border: 1px solid rgba(120, 180, 120, 0.35); /* нежная зелёная линия */

    border-radius: 999px;
    text-decoration: none;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
	
    transition: all 0.22s ease;
    margin-right: 6px;
    margin-bottom: 6px;
}

/* Hover — мягкое зелёное сияние */
body.poetry-poetic-stories .poem-tags a:hover,
body.poetry-poetic-stories .poem-tags span:hover {
    color: #f2fff6;
    background: rgba(60, 120, 60, 0.38);
    border-color: rgba(150, 200, 150, 0.55);
    box-shadow: 0 0 14px rgba(180, 255, 200, 0.35);
}

/* Active — светло‑зелёный акцент */
body.poetry-poetic-stories .poem-tags .active {
    color: #eaffd4;
    background: rgba(100, 160, 100, 0.45);
    border-color: rgba(170, 220, 170, 0.65);
}

body.poetry-poetic-stories .fav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    font-size: 20px;
    line-height: 1;

    color: #dfffe8; /* светло‑зелёный */
    background: rgba(40, 80, 40, 0.28); /* зелёная дымка */
    border: 1px solid rgba(120, 180, 120, 0.35);
	
    border-radius: 50%;
    text-decoration: none;

    backdrop-filter: blur(4px);
    transition: 0.25s ease;
}

/* Hover — мягкое зелёное сияние */
body.poetry-poetic-stories .fav-btn:hover {
    color: #f2fff6;
    background: rgba(60, 120, 60, 0.38);
    border-color: rgba(150, 200, 150, 0.55);
    transform: scale(1.08);
}

/* Active — яркое зелёное свечение */
body.poetry-poetic-stories .fav-btn.active,
body.poetry-poetic-stories .fav-btn.favorited {
    color: #BEF574;
    background: rgba(100, 160, 100, 0.45);
    border-color: rgba(170, 220, 170, 0.65);
    transform: scale(1.15);
}

/* Click — мягкое сжатие */
body.poetry-poetic-stories .fav-btn:active {
    transform: scale(0.92);
}

/* Кнопка назад */
body.poetry-poetic-stories .btn-back {
    background: rgba(20, 55, 28, 0.6);
    border: 1px solid rgba(255, 215, 120, 0.35);
    color: #e6d08a;
    backdrop-filter: blur(6px);
}
