/* =========================================
   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 .btn-back {
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.45);
    color: #4e3f8c;
    backdrop-filter: blur(6px);
}

/* тегги */
body.poetry-The-Confession .poem-tags a,
body.poetry-The-Confession .poem-tags span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;

    font-size: 0.92rem;
    color: #d261d4; /* фуксия */
    background: rgba(153, 50, 170, 0.35); /* бордовая дымка */
    border: 1px solid rgba(173, 72, 181, 0.45); /* медная линия */

    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-The-Confession .poem-tags a:hover,
body.poetry-The-Confession .poem-tags span:hover {
    color: #F8F4FF;
    background: rgba(153, 50, 204, 0.45);
    border-color:rgba(185, 85, 211, 0.55);
    box-shadow: 0 0 14px rgba(191, 70, 205, 0.35);
}

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

    width: 30px;
    height: 30px;

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

    color: #af74ff; /* светло‑винный */
    background: rgba(209, 143, 217, 0.35); /* бордовая дымка */
    border: 1px solid rgba(205, 164, 222, 0.45); /* медная линия */

    border-radius: 50%;
    text-decoration: none;

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

/* Hover — огненный блик */
body.poetry-The-Confession .fav-btn:hover {
    color: #fcecff;
    background: rgba(141, 40, 150, 0.45);
    border-color: rgba(186, 85, 211, 0.55);
    transform: scale(1.08);
}

/* Active — медное сияние */
body.poetry-The-Confession .fav-btn.active,
body.poetry-The-Confession .fav-btn.favorited {
    color: #d8d2ef;
    background: rgba(138, 43, 226, 0.55);
    border-color: rgba(186, 85, 211, 0.65);
    transform: scale(1.15);
}

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