body.poetry-The_World {
    background: linear-gradient(
        to bottom,
        #5a1e5c 0%,   /* насыщенный пурпур */
        #4a1a4b 30%,
        #3a133b 65%,
        #2a0c2f 100%
    );
    position: relative;
    padding-top: 70px;
}

body.poetry-The_World::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(220, 160, 255, 0.18), transparent 40%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 35%);
    z-index: -1;
}

body.poetry-The_World .poem {
    background: linear-gradient(
        to bottom,
        #3f1542,
        #2a0c2f
    );
    border: 1px solid rgba(200, 120, 255, 0.3);

    color: #E6E6FA;
}

body.poetry-The_World h1 {
    color: #e7c4fe;

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

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

    background: rgba(20, 5, 25, 0.5);
    backdrop-filter: blur(6px);

    border: 1px solid rgba(200, 120, 255, 0.35);

    box-shadow:
        0 6px 20px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.05);

    text-shadow:
        0 0 10px rgba(200,120,255,0.25);
}

body.poetry-The_World .poem h2 {
    color: #e6c8ff;
}

body.poetry-The_World .poem-tags {
    color: #c8a0e8;
    opacity: 0.9;
}

body.poetry-the_world .poem-like {
    color: #b48cff;
}

body.poetry-The_World .poem-like:hover {
    color: #e0c6ff;
}

body.poetry-The_World .poem-like.liked {
    color: #ffb3ff; /* почти магический акцент */
}


