/* ================= CHRONICLE STYLING ================= */

.chronicle-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Main Text Styling */
.chronicle-text {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #e0d5c5;
    margin-bottom: 24px;
    text-align: justify;
    opacity: 0.92;
    transition: all 0.3s ease;
}

/* Drop Cap */
.chronicle-text .drop-cap {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 5px;
    color: var(--gold-bright);
    text-shadow: 0 0 12px var(--gold-glow);
    font-weight: bold;
}

/* Section Headers */
.chronicle-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0 30px;
    position: relative;
}

.section-ornament {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ornament-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.ornament-diamond {
    color: var(--gold-muted);
    font-size: 0.8rem;
    opacity: 0.6;
}

.chronicle-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold-bright);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 8px var(--gold-glow);
}

/* Subsections */
.chronicle-subsection {
    margin: 35px 0 25px;
    position: relative;
}

.subsection-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold-bright);
    margin: 25px 0 15px;
    letter-spacing: 1px;
    padding-left: 15px;
    border-left: 3px solid var(--gold-bright);
    text-transform: uppercase;
}

/* Dialogue Styling */
.dialogue-speech {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e8d9b0;
    margin: 20px 0 20px 40px;
    padding: 15px 25px;
    position: relative;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    border-left: 3px solid var(--gold-bright);
    transition: all 0.3s ease;
}

.dialogue-speech::before {
    content: '"';
    font-size: 3rem;
    color: var(--gold-muted);
    position: absolute;
    left: 5px;
    top: -5px;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.dialogue-speech::after {
    content: '"';
    font-size: 3rem;
    color: var(--gold-muted);
    position: absolute;
    bottom: -20px;
    right: 15px;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.dialogue-speech:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-left-width: 4px;
    text-shadow: 0 0 5px var(--gold-glow);
}

/* Special styling for the ending */
.chronicle-end {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #f4e8d1;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    font-style: italic;
}

/* Footer */
.chronicle-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
}

.archive-seal {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 1px solid var(--gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0.5;
}

.archive-seal::before {
    content: "⚜️";
    font-size: 1.2rem;
    color: var(--gold-muted);
}

.archive-note {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold-muted);
    text-transform: uppercase;
    opacity: 0.5;
}

/* ================= RESPONSIVE ================= */

@media screen and (max-width: 768px) {
    .chronicle-container {
        padding: 15px;
    }
    
    .chronicle-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .chronicle-text .drop-cap {
        font-size: 3rem;
        padding-right: 8px;
    }
    
    .chronicle-subtitle {
        font-size: 1.2rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
    }
    
    .dialogue-speech {
        font-size: 0.95rem;
        margin-left: 20px;
        padding: 12px 20px;
    }
    
    .dialogue-speech::before {
        font-size: 2.5rem;
    }
    
    .dialogue-speech::after {
        font-size: 2.5rem;
        bottom: -15px;
    }
    
    .ornament-line {
        width: 30px;
    }
    
    .chronicle-section-header {
        gap: 15px;
        margin: 40px 0 25px;
    }
}

@media screen and (max-width: 480px) {
    .chronicle-container {
        padding: 10px;
    }
    
    .chronicle-text {
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 18px;
        text-align: left;
    }
    
    .chronicle-text .drop-cap {
        font-size: 2.5rem;
        padding-right: 6px;
    }
    
    .chronicle-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .subsection-title {
        font-size: 1rem;
        padding-left: 12px;
    }
    
    .dialogue-speech {
        font-size: 0.88rem;
        margin-left: 10px;
        padding: 10px 15px;
    }
    
    .dialogue-speech::before {
        font-size: 2rem;
        left: 0;
    }
    
    .dialogue-speech::after {
        font-size: 2rem;
        bottom: -12px;
        right: 8px;
    }
    
    .ornament-line {
        width: 20px;
    }
    
    .ornament-diamond {
        font-size: 0.6rem;
    }
    
    .chronicle-section-header {
        gap: 10px;
        margin: 30px 0 20px;
    }
    
    .chronicle-end {
        font-size: 0.9rem;
    }
}

/* ================= ADDITIONAL CHRONICLE STYLES ================= */

/* List Styling */
.chronicle-list {
    margin: 20px 0 20px 40px;
    padding: 0;
    list-style: none;
}

.chronicle-list li {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e0d5c5;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.chronicle-list li::before {
    content: "✧";
    color: var(--gold-muted);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    font-size: 0.8rem;
}

/* Callout Box - For Secrets and Important Information */
.chronicle-callout {
    margin: 35px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 10, 10, 0.9) 100%);
    border-left: 4px solid var(--gold-bright);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    font-style: italic;
}

.chronicle-callout p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #f4e8d1;
    margin: 0 0 15px 0;
}

.chronicle-callout p:last-child {
    margin-bottom: 0;
}

.callout-signature {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--gold-bright);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
/* Story Divider */
.story-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 60px 0 40px;
    position: relative;
}

.divider-diamond {
    color: var(--gold-muted);
    font-size: 1rem;
    opacity: 0.4;
    letter-spacing: 5px;
}

.story-divider::before,
.story-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

/* Strong/Bold Text Styling */
.chronicle-text strong {
    color: var(--gold-bright);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .chronicle-list {
        margin-left: 25px;
    }
    
    .chronicle-list li {
        font-size: 0.88rem;
        padding-left: 18px;
    }
    
    .chronicle-callout {
        padding: 20px 20px;
        margin: 25px 0;
    }
    
    .chronicle-callout p {
        font-size: 0.92rem;
    }
    
    .callout-signature {
        font-size: 0.75rem;
    }
    
    .story-divider {
        margin: 40px 0 30px;
        gap: 15px;
    }
    
    .divider-diamond {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .chronicle-list {
        margin-left: 15px;
    }
    
    .chronicle-list li {
        font-size: 0.82rem;
        line-height: 1.6;
        padding-left: 15px;
        margin-bottom: 10px;
    }
    
    .chronicle-list li::before {
        font-size: 0.7rem;
    }
    
    .chronicle-callout {
        padding: 15px 15px;
        margin: 20px 0;
    }
    
    .chronicle-callout p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .callout-signature {
        font-size: 0.7rem;
    }
    
    .chronicle-callout::before,
    .chronicle-callout::after {
        font-size: 0.9rem;
    }
    
    .story-divider {
        margin: 30px 0 20px;
        gap: 10px;
    }
    
    .divider-diamond {
        font-size: 0.8rem;
    }
}

/* ================= WEST END STORY STYLING ================= */

/* West End Container */
.west-end-story {
    position: relative;
    padding: 20px 0;
}

/* Warning Callout - Different Style for Q's Warning */
.warning-callout {
    background: linear-gradient(135deg, rgba(212, 24, 61, 0.08) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-color: #d4183d;
}

.warning-callout p {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
}



/* Final Callout */
.final-callout {
    margin: 40px 0 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-width: 4px;
}

.final-callout p {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

/* Callout Word Styling */
.callout-word {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold-bright);
    letter-spacing: 2px;
    text-align: center;
    display: block;
    text-transform: uppercase;
}

/* West End Footer */
.west-end-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.story-note {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold-muted);
    text-transform: uppercase;
    opacity: 0.5;
}

/* Closing Section Styling */
.closing-section {
    margin-top: 40px;
    position: relative;
}

.closing-section .chronicle-text:last-of-type {
    margin-bottom: 20px;
}

/* Emphasized Text */
.chronicle-text em {
    font-style: italic;
    color: #e8d9b0;
    font-family: 'Playfair Display', serif;
    transition: all 0.2s ease;
}

.chronicle-text em:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 5px var(--gold-glow);
}

/* Section Header Enhancements */
.west-end-story .subsection-title {
    position: relative;
    overflow: hidden;
}

.west-end-story .subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-bright), transparent);
    transition: width 0.4s ease;
}

.west-end-story .subsection-title:hover::after {
    width: 100%;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .warning-callout p {
        font-size: 1rem;
    }
    
    .final-callout p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .callout-word {
        font-size: 1rem;
    }
    
    .story-seal {
        width: 40px;
        height: 40px;
    }
    
    .story-seal::before {
        font-size: 1rem;
    }
    
    .west-end-footer {
        margin-top: 35px;
        padding-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    .warning-callout p {
        font-size: 0.9rem;
    }
    
    .final-callout {
        margin: 30px 0 20px;
    }
    
    .final-callout p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .callout-word {
        font-size: 0.9rem;
    }
    
    .story-seal {
        width: 35px;
        height: 35px;
    }
    
    .story-seal::before {
        font-size: 0.9rem;
    }
    
    .story-note {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .west-end-footer {
        margin-top: 30px;
        padding-top: 25px;
    }
}

/* Optional: Add subtle animation to the final callout on scroll */
@keyframes calloutGlow {
    0% {
        border-left-color: var(--gold-bright);
        box-shadow: 0 0 0px rgba(212, 175, 55, 0);
    }
    50% {
        border-left-color: #d4af37;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }
    100% {
        border-left-color: var(--gold-bright);
        box-shadow: 0 0 0px rgba(212, 175, 55, 0);
    }
}

.final-callout {
    animation: calloutGlow 3s ease-in-out infinite;
}

/* ================= TERRY BROOKS STORY STYLING ================= */

/* Character Intro Styling */
.character-intro {
    position: relative;
    margin: 25px 0;
    padding: 5px 0;
}

.character-intro .chronicle-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #f4e8d1;
    font-style: normal;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    padding-left: 20px;
}

.simone-intro {
    margin: 20px 0 15px;
}

.simone-intro .chronicle-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold-bright);
    border-left-color: var(--gold-bright);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

/* Tragic Callout - For the ring moment */
.tragic-callout {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(26, 10, 10, 0.9) 100%);
    border-left-color: var(--gold-muted);
    margin: 20px 0 30px;
}

.tragic-callout p {
    text-align: center;
    font-size: 1rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* Warrior Callout - For the protective instinct */
.warrior-callout {
    background: linear-gradient(135deg, rgba(212, 24, 61, 0.05) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-color: #d4183d;
    margin: 30px 0;
}

.warrior-callout p {
    font-size: 1rem;
    line-height: 1.7;
}

.warrior-callout .callout-signature {
    color: #d4183d;
    opacity: 0.8;
}

/* Empty Callout - For the "nothing" moment */
.empty-callout {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.05) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-left-color: #666;
    margin: 30px 0;
}

.empty-callout p {
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.empty-callout .callout-signature {
    color: #888;
}

/* Decision Callout - For the "yes" moment */
.decision-callout {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-width: 4px;
    margin: 25px 0 35px;
}

.decision-callout p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
    color: var(--gold-bright);
}

/* Terry Final Callout */
.terry-final {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 10, 10, 0.95) 100%);
    margin: 40px 0 30px;
}

.terry-final p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

/* Responsive Adjustments for Terry Story */
@media screen and (max-width: 768px) {
    .character-intro .chronicle-text {
        font-size: 0.95rem;
        padding-left: 15px;
    }
    
    .simone-intro .chronicle-text {
        font-size: 1rem;
    }
    
    .tragic-callout p,
    .warrior-callout p,
    .empty-callout p {
        font-size: 0.92rem;
    }
    
    .decision-callout p {
        font-size: 1rem;
    }
    
    .terry-final p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .character-intro .chronicle-text {
        font-size: 0.88rem;
        padding-left: 12px;
    }
    
    .simone-intro .chronicle-text {
        font-size: 0.92rem;
    }
    
    .tragic-callout p,
    .warrior-callout p,
    .empty-callout p {
        font-size: 0.85rem;
    }
    
    .decision-callout p {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .terry-final p {
        font-size: 0.9rem;
    }
}

/* ================= MARCO "FLEX" DIXON STORY STYLING ================= */

/* Location Header */
.story-location-header {
    text-align: center;
    margin: 20px 0 30px;
    position: relative;
}

.location-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--gold-muted);
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.05);
    padding: 6px 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    display: inline-block;
}

/* Darnell Intro */
.darnell-intro .chronicle-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #f4e8d1;
    border-left-color: rgba(212, 175, 55, 0.5);
}

/* Tragedy Callout - For Darnell's Death */
.tragedy-callout {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
    border-left-color: #666;
    margin: 25px 0 30px;
    text-align: center;
}

.tragedy-callout p {
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Cinzel', serif;
}

.tragedy-callout .callout-signature {
    font-size: 0.9rem;
    color: #888;
}

/* Dame's Speech */
.dame-speech {
    border-left-color: var(--gold-bright);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
}

/* Escape Callout */
.escape-callout {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-width: 4px;
    margin: 25px 0 35px;
}

.escape-callout p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
    color: var(--gold-bright);
}

/* Dame Bond Intro */
.dame-bond .chronicle-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--gold-bright);
    border-left-color: var(--gold-bright);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    padding: 15px 20px;
    margin: 15px 0;
}

/* Betrayal Callout */
.betrayal-callout {
    background: linear-gradient(135deg, rgba(212, 24, 61, 0.08) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-color: #d4183d;
    margin: 25px 0 30px;
}

.betrayal-callout p {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
    color: #d4183d;
}

/* Tragedy Insight */
.tragedy-insight .chronicle-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #e8d9b0;
    border-left: 3px solid var(--gold-muted);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
}

/* Flex Final Callout */
.flex-final {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 10, 10, 0.95) 100%);
    margin: 40px 0 30px;
}

.flex-final p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}



/* Responsive Adjustments for Flex Story */
@media screen and (max-width: 768px) {
    .location-tag {
        font-size: 0.6rem;
        letter-spacing: 3px;
        padding: 4px 12px;
    }
    
    .darnell-intro .chronicle-text,
    .dame-bond .chronicle-text {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    
    .tragedy-callout p {
        font-size: 1rem;
    }
    
    .escape-callout p {
        font-size: 1rem;
    }
    
    .betrayal-callout p {
        font-size: 0.95rem;
    }
    
    .tragedy-insight .chronicle-text {
        font-size: 0.92rem;
        padding-left: 15px;
    }
    
    .flex-final p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .location-tag {
        font-size: 0.55rem;
        letter-spacing: 2px;
        padding: 3px 10px;
    }
    
    .darnell-intro .chronicle-text,
    .dame-bond .chronicle-text {
        font-size: 0.88rem;
        padding: 10px 12px;
    }
    
    .tragedy-callout p {
        font-size: 0.9rem;
    }
    
    .tragedy-callout .callout-signature {
        font-size: 0.8rem;
    }
    
    .escape-callout p {
        font-size: 0.9rem;
    }
    
    .betrayal-callout p {
        font-size: 0.88rem;
    }
    
    .tragedy-insight .chronicle-text {
        font-size: 0.85rem;
        padding-left: 12px;
    }
    
    .flex-final p {
        font-size: 0.9rem;
    }
}

/* ================= KOFI ASANTE STORY STYLING ================= */

/* Family Intro */
.family-intro .chronicle-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #f4e8d1;
    border-left-color: rgba(212, 175, 55, 0.4);
}

/* Sanaa Intro */
.sanaa-intro .chronicle-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--gold-bright);
    border-left: 3px solid var(--gold-bright);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    padding: 12px 20px;
    margin: 15px 0;
}

/* Debt Callout */
.debt-callout {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.05) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-left-color: #666;
    margin: 20px 0 25px;
}

.debt-callout p {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cinzel', serif;
}

/* Silence Callout */
.silence-callout {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.05) 0%, rgba(0, 0, 0, 0.7) 100%);
    border-left-color: #555;
    margin: 25px 0 30px;
}

.silence-callout p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

/* Dame Always Callout */
.dame-always-callout {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-color: var(--gold-bright);
    margin: 25px 0 20px;
}

.dame-always-callout p {
    font-size: 0.98rem;
    line-height: 1.7;
}

.dame-always-callout .callout-signature {
    color: var(--gold-bright);
    text-align: right;
    margin-top: 10px;
}

/* Let Go Callout */
.let-go-callout {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-color: var(--gold-muted);
    margin: 25px 0;
}

.let-go-callout p {
    font-size: 0.98rem;
    line-height: 1.7;
    text-align: center;
}

/* Text Callout */
.text-callout {
    background: linear-gradient(135deg, rgba(212, 24, 61, 0.05) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-color: #d4183d;
    margin: 25px 0 30px;
}

.text-callout p {
    font-size: 0.98rem;
    line-height: 1.7;
    text-align: center;
}

.text-callout .callout-signature {
    color: #d4183d;
}

/* Engine Insight */
.engine-insight .chronicle-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #e8d9b0;
    border-left: 3px solid var(--gold-muted);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
}

/* Kofi Final Callout */
.kofi-final {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 10, 10, 0.95) 100%);
    margin: 40px 0 30px;
}

.kofi-final p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

/* Kofi Story Seal */
.kofi-seal::before {
    content: "🔧";
    font-size: 1.3rem;
}

/* Responsive Adjustments for Kofi Story */
@media screen and (max-width: 768px) {
    .family-intro .chronicle-text,
    .sanaa-intro .chronicle-text {
        font-size: 0.95rem;
    }
    
    .sanaa-intro .chronicle-text {
        padding: 10px 15px;
    }
    
    .debt-callout p,
    .silence-callout p,
    .dame-always-callout p,
    .let-go-callout p,
    .text-callout p {
        font-size: 0.9rem;
    }
    
    .engine-insight .chronicle-text {
        font-size: 0.92rem;
        padding-left: 15px;
    }
    
    .kofi-final p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .family-intro .chronicle-text,
    .sanaa-intro .chronicle-text {
        font-size: 0.88rem;
    }
    
    .sanaa-intro .chronicle-text {
        padding: 8px 12px;
    }
    
    .debt-callout p,
    .silence-callout p,
    .dame-always-callout p,
    .let-go-callout p,
    .text-callout p {
        font-size: 0.85rem;
    }
    
    .engine-insight .chronicle-text {
        font-size: 0.85rem;
        padding-left: 12px;
    }
    
    .kofi-final p {
        font-size: 0.9rem;
    }
}
/* ================= KOFI'S DEBT SECTION STYLING ================= */

/* Debt Origin Callout */
.debt-origin-callout {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-color: var(--gold-bright);
    margin: 20px 0 25px;
}

.debt-origin-callout p {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

/* Debt Intro Styling */
.debt-intro .chronicle-text {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #e0d5c5;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    padding-left: 20px;
    margin: 20px 0;
}

/* Always There Container */
.always-there-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 35px 0 25px;
    position: relative;
}

.always-there-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
    opacity: 0.5;
}

.always-there-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--gold-bright);
    text-align: center;
    margin: 0;
    font-style: italic;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Debt List Styling */
.debt-list {
    margin: 25px 0 30px;
    padding: 5px 0;
}

.debt-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.3s ease;
}

.debt-item:hover {
    transform: translateX(5px);
    border-bottom-color: rgba(212, 175, 55, 0.25);
}

.debt-marker {
    color: var(--gold-muted);
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.debt-item:hover .debt-marker {
    color: var(--gold-bright);
    opacity: 1;
    transform: scale(1.1);
}

.debt-item .chronicle-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

/* Final Debt Callout */
.final-debt-callout {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(26, 10, 10, 0.95) 100%);
    border-left-color: var(--gold-bright);
    margin: 30px 0 20px;
}

.final-debt-callout p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .debt-origin-callout p {
        font-size: 1rem;
    }
    
    .debt-intro .chronicle-text {
        font-size: 0.92rem;
        padding-left: 15px;
    }
    
    .always-there-text {
        font-size: 1rem;
        white-space: normal;
    }
    
    .always-there-container {
        gap: 10px;
    }
    
    .debt-marker {
        font-size: 0.8rem;
    }
    
    .debt-item .chronicle-text {
        font-size: 0.88rem;
    }
    
    .final-debt-callout p {
        font-size: 0.92rem;
    }
}

@media screen and (max-width: 480px) {
    .debt-origin-callout p {
        font-size: 0.9rem;
    }
    
    .debt-intro .chronicle-text {
        font-size: 0.85rem;
        padding-left: 12px;
    }
    
    .always-there-text {
        font-size: 0.9rem;
    }
    
    .debt-item {
        gap: 10px;
        margin-bottom: 14px;
    }
    
    .debt-marker {
        font-size: 0.7rem;
    }
    
    .debt-item .chronicle-text {
        font-size: 0.82rem;
        line-height: 1.5;
    }
    
    .final-debt-callout p {
        font-size: 0.85rem;
    }
}