
/* Container */

.toc-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 40px;
    text-align: center;
    color: #fff;
    font-family: 'Courier New', monospace;
}

/* Title */

.toc-title {
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 60px;
}

/* Volume list */

.list-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Volume links */

.link-list {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: calc(var(--delay) * 900ms);
}

.link-list:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px #fff;
    transform: scale(1.05);
}

body {
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #fff;
    font-family: sans-serif;
    position: relative;
}
/* Container */

.poem-container {
    max-width: 700px;
    margin: 120px auto;
    padding: 40px;
    text-align: center;
    color: #fff;
    font-family: 'Courier New', monospace;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    border-radius: 12px;
}

/* Back link */

.back-link {
    display: block;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.back-link:hover {
    color: #fff;
}

/* Title */

.poem-title {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    margin-top: 0;
}

/* Author */

.poem-author {
    margin-bottom: 40px;
    font-size: 0.95rem;
}

/* Body */

.poem-body {
    white-space: pre-line;
    line-height: 1.8;
    font-size: 1.05rem;
    opacity: 0;
    margin-top: 0;
    padding-bottom: inherit;
}

