.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
}

.back-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.reflection {
    font-family: 'Space Mono', monospace;
    color: #fff;
    text-align: center;
    margin: 60px 0;
    font-size: 1.2em;
    background: transparent;
    padding: 0 20px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.book-list {
    margin-top: 40px;
}

.book-list ul {
    list-style: none;
    padding: 0;
}

.book-list li {
    margin-bottom: 20px;
}

.book-list a {
    color: #333;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    display: inline-block;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.book-list a:hover {
    background: #f5f5f5;
    transform: translateX(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.book-info {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    color: #333;
}

.book-info h2 {
    margin-top: 0;
    color: #333;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.8em;
}

.book-info .author {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.review-content {
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
}

.review-content h3 {
    font-family: 'Chakra Petch', sans-serif;
    color: #333;
    margin-top: 30px;
    font-size: 1.4em;
}

.review-content ul {
    list-style: none;
    padding: 0;
}

.review-content li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 25px;
}

.review-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

.review-content p {
    margin: 0 0 15px 0;
}

/* Add white page margin */
.page-margin {
    margin: 20px;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.genre-line {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.genre-line p:first-child {
    text-align: center;
    width: 100%;
}

.blink {
    animation: blink 2s infinite;
    color: #666;
    font-family: 'Space Mono', monospace;
    font-style: italic;
    font-size: 1.2em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
} 