/* ========== POEM PAGE ========== */
.poem-content {
    min-height: 400px;
}

.poem-page {
    position: relative;
    padding: 30px 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.poem-title {
    font-family: 'Jacquard 12', sans-serif;
    font-size: 24px;
    color: #4a2c3d;
    text-align: center;
    margin-bottom: 24px;
}

.poem-body {
    font-family: 'DotGothic16', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #4a2c3d;
    text-align: center;
}

.poem-body p {
    margin: 0;
}

.poem-body br {
    display: block;
    content: "";
    margin-top: 12px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    font-family: 'DotGothic16', sans-serif;
    font-size: 13px;
    color: #8a8494;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.back-link:hover {
    color: #4a2c3d;
}

.back-link-sticker {
    display: block;
    margin: 30px auto 0;
    width: 100px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.back-link-sticker:hover {
    transform: scale(1.1) rotate(-3deg);
}

/* Sticker decorations */
.poem-sticker {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}
