/* =========================================
   The Confession — светлый сиреневый фон,
   тёмные фиолетовые карточки
   ========================================= */

body.poetry-The-Confession {
    background: linear-gradient(
        to bottom,
        #dcd3ef 0%,
        #d8d2ef 30%,
        #c6bfe7 60%,
        #b3a9dd 85%,
        #a090d2 100%
    );
    padding-top: 70px;
    position: relative;
}

/* мягкое сияние */
body.poetry-The-Confession::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.35), transparent 45%),
        radial-gradient(circle at bottom left, rgba(255,255,255,0.25), transparent 40%);
    z-index: -1;
}

/* Навбар */
body.poetry-The-Confession .top-nav {
    background: rgba(70, 60, 110, 0.35);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* =========================
	   Карточка стихотворения
   ========================= */

body.poetry-The-Confession .poem {
    background: #4c1468; /* тёплый спокойный фиолетовый */
    border: 1px solid #cfa3ff;
    padding: 26px;
    border-radius: 18px;
    margin-bottom: 28px;

    box-shadow:
        0 12px 28px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);

    color: #f7f1ff; /* мягкий светлый сиреневый */
    transition: 0.25s ease;
}

body.poetry-The-Confession .poem:hover {
    background: #571a78; /* чуть светлее и теплее при наведении */
    border-color: #e6d4ff;
    box-shadow:
        0 16px 36px rgba(0,0,0,0.4),
        0 0 18px rgba(220,200,255,0.18);
}

/* =========================
   Заголовки
   ========================= */
body.poetry-The-Confession h1 {
    color: #e8d8ff;
	
    display: inline-block;
    padding: 8px 16px;
    border-radius: 12px;

    background: rgba(160, 144, 210, 0.30);
    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;
}


body.poetry-The-Confession .poem h2 {
    color: #e8d8ff;
    margin-bottom: 12px;
    font-size: 1.6rem;
}

/* =========================
   Текст
   ========================= */

body.poetry-The-Confession .poem p {
    color: #f3f0fa;
    line-height: 1.85;
    font-size: 1.18rem;
}

/* =========================
   Теги
   ========================= */

body.poetry-The-Confession .poem-tags {
    color: #d8c8ff;
}

/* =========================
   Лайк
   ========================= */

body.poetry-The-Confession .poem-like {
    color: #c8b4ff;
    transition: 0.2s;
}

body.poetry-The-Confession .poem-like:hover {
    color: #e8d8ff;
}

body.poetry-The-Confession .poem-like.liked {
    color: #f0e6ff;
    animation: like-pop 420ms cubic-bezier(.34, 1.56, .64, 1);
}

/* =========================
   Кнопка назад
   ========================= */

body.poetry-The-Confession .btn-back {
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.45);
    color: #4e3f8c;
    backdrop-filter: blur(6px);
}
