/* Poem-specific navigation */
.back-link { 
    text-align: center; 
    margin-bottom: 10px; 
}

.back-link a {
    color: var(--muted-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-link a:hover { 
    color: var(--accent-color); 
    border-color: var(--accent-color); 
}

.breadcrumbs { 
    text-align: center; 
    margin: 10px 0 40px 0; 
    color: var(--muted-color); 
    font-size: 0.9rem; 
}

.breadcrumbs a { 
    color: var(--muted-color); 
    text-decoration: none; 
}

.breadcrumbs a:hover { 
    color: var(--accent-color); 
}

/* Poetry-specific styling - completely different from main transmission */
.poem-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.message {
    /* Remove message box styling for poems */
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 40px 0;
    position: relative;
}

.message-content {
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
}

.message-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.95;
}

/* Style individual lines within verses */
.message-content p br + * {
    line-height: 1.6;
}

/* Poem introduction styling */
.message-content p:first-child em {
    display: block;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 16px 20px;
    margin: 0 auto 32px auto;
    max-width: 90%;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted-color);
    font-style: italic;
    text-align: center;
    background: rgba(51, 51, 51, 0.2); /* Dark theme default */
}

/* Light theme intro background */
[data-theme="light"] .message-content p:first-child em {
    background: rgba(209, 192, 168, 0.2);
}

/* Poem footer styling */
.poem-footer { 
    text-align: center;
    font-style: italic; 
    color: var(--muted-color); 
    font-size: 0.9rem; 
    margin-top: 20px;
    opacity: 0.8;
}

/* Add subtle poem header styling */
header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.3;
}

/* Light theme adjustments for poems */

/* Mobile responsiveness for poems */
@media (max-width: 600px) { 
    .message-content {
        font-size: 1rem;
    }
    
    .message-content p {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
}

