body.poetry-On-the-edge {
    background: linear-gradient(
        to bottom,
        #3a0a0a 0%,
        #5a1010 30%,
        #7a1515 60%,
        #4a0f0f 85%,
        #1f0707 100%
    );
    position: relative;
    padding-top: 70px;
}

/* драматическое свечение */
body.poetry-On-the-edge::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 60, 60, 0.18), transparent 40%),
        radial-gradient(circle at bottom right, rgba(255, 120, 120, 0.12), transparent 35%);
    z-index: -1;
}

/* Навбар */
body.poetry-On-the-edge .top-nav {
    background: rgba(30, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 80, 80, 0.35);
}

/* Карточка стихотворения */
body.poetry-On-the-edge .poem {
    background: linear-gradient(
        to bottom,
        #1a0505,
        #0f0202
    );
    border: 1px solid rgba(255, 80, 80, 0.4);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 25px;

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 60, 60, 0.15);

    color: #f8eaea;
}

/* Заголовки */
body.poetry-On-the-edge h1 {
    color: #ff6a6a;

    display: block;
    margin: 20px auto;
    width: fit-content;

    padding: 8px 16px;
    border-radius: 12px;

    background: rgba(30, 0, 0, 0.5);
    backdrop-filter: blur(6px);

    border: 1px solid rgba(255, 80, 80, 0.4);

    box-shadow:
        0 6px 20px rgba(0,0,0,0.6),
        0 0 12px rgba(255, 70, 70, 0.25);

    letter-spacing: 0.6px;
}

/* Подзаголовки */
body.poetry-On-the-edge .poem h2 {
    color: #ff8a8a;
}

/* Текст */
body.poetry-On-the-edge .poem p {
    color: #f5e6e6;
}

/* Теги */
body.poetry-On-the-edge .poem-tags {
    color: #ff9c9c;
}

/* Лайк */
body.poetry-On-the-edge .poem-like {
    color: #c96a6a;
    transition: 0.2s;
}

body.poetry-On-the-edge .poem-like:hover {
    color: #ff4d4d;
}

body.poetry-On-the-edge .poem-like.liked {
    color: #ff0000;
    animation: like-pop 420ms cubic-bezier(.34, 1.56, .64, 1);
}

/* Кнопка назад */
body.poetry-On-the-edge .btn-back {
    background: rgba(30, 5, 5, 0.65);
    border: 1px solid rgba(255, 80, 80, 0.4);
    color: #ff9a9a;
    backdrop-filter: blur(6px);
}
