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 {
    color:  #e0c97a;
}

/* Лайк */
body.poetry-poetic-stories .poem-like {
    color: #cbb36a;
    transition: 0.2s;
}

body.poetry-poetic-stories .poem-like:hover {
    color: #ffe08a;
}

body.poetry-poetic-stories .poem-like.liked {
    color: #ffd700; /* чистое золото для акцента */
    animation: like-pop 420ms cubic-bezier(.34, 1.56, .64, 1);
}

/* Кнопка назад */
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);
}
