@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables - Color Palette */
:root {
    --primary-gold: #d4af37;
    --deep-purple: #1a0b2e;
    --royal-blue: #16213e;
    --crimson: #8b0000;
    --pearl-white: #f8f8ff;
    --shadow-black: #0a0a0a;
    --ember-orange: #ff6b35;
    --soft-gray: #f0f0f0;
    --dark-gray: #2a2a2a;
    --forest-green: #228b22;
    --deep-red: #cc0000;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--royal-blue) 50%, var(--shadow-black) 100%);
    color: var(--pearl-white);
    line-height: 1.6;
    min-height: 100vh;
}

/* ==================== PARTICLE ANIMATIONS ==================== */

/* Heavenly particles for chapters 4-5 */
.heavenly-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-gold), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--pearl-white), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--ember-orange), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--primary-gold), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--pearl-white), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: heavenlyFloat 20s linear infinite;
    opacity: 0.3;
}

@keyframes heavenlyFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Apocalyptic particles for chapter 6 */
.apocalyptic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: 
        radial-gradient(2px 2px at 30px 40px, var(--crimson), transparent),
        radial-gradient(2px 2px at 80px 20px, var(--ember-orange), transparent),
        radial-gradient(1px 1px at 120px 60px, var(--pearl-white), transparent),
        radial-gradient(1px 1px at 60px 90px, var(--primary-gold), transparent),
        radial-gradient(2px 2px at 160px 10px, var(--deep-red), transparent);
    background-repeat: repeat;
    background-size: 200px 120px;
    animation: apocalypticDrift 25s linear infinite;
    opacity: 0.4;
}

@keyframes apocalypticDrift {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-120px) rotate(360deg); }
}

/* Protection particles for chapter 7 */
.protection-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: 
        radial-gradient(3px 3px at 25px 35px, var(--primary-gold), transparent),
        radial-gradient(2px 2px at 75px 15px, var(--pearl-white), transparent),
        radial-gradient(2px 2px at 125px 55px, var(--forest-green), transparent),
        radial-gradient(1px 1px at 45px 85px, var(--ember-orange), transparent),
        radial-gradient(2px 2px at 175px 25px, var(--primary-gold), transparent);
    background-repeat: repeat;
    background-size: 200px 110px;
    animation: protectionFloat 18s linear infinite;
    opacity: 0.35;
}

@keyframes protectionFloat {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    100% { transform: translateY(-110px) translateX(20px) rotate(360deg); }
}

/* ==================== NAVIGATION ==================== */

/* Header Navigation */
.nav-header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--pearl-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    background: none;
    border: none;
    color: var(--pearl-white);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.dropdown-button:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
    opacity: 0.7;
}

.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    min-width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 0.5rem;
}

.nav-dropdown.open .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.dropdown-section:last-child {
    border-bottom: none;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    padding: 0.4rem 1.2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.dropdown-link {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--pearl-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 400;
    font-size: 0.95rem;
}

.dropdown-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--primary-gold);
    color: var(--primary-gold);
    padding-left: 1.6rem;
}

.dropdown-link.current {
    background: rgba(212, 175, 55, 0.15);
    border-left-color: var(--ember-orange);
    color: var(--ember-orange);
    font-weight: 500;
}

.chapter-number {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    margin-right: 0.5rem;
    color: var(--ember-orange);
    font-size: 0.9rem;
}

/* Custom scrollbar for dropdown */
.dropdown-content::-webkit-scrollbar {
    width: 5px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--ember-orange);
}

/* ==================== LAYOUT CONTAINERS ==================== */

/* Main Container */
.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* ==================== CHAPTER HEADERS ==================== */

.chapter-header {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.chapter-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.chapter-number {
    font-size: 1.2rem;
    color: var(--ember-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.chapter-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-gold), var(--ember-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.chapter-subtitle {
    font-size: 1.2rem;
    color: var(--pearl-white);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.chapter-reference {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 500;
}

/* ==================== CONTENT SECTIONS ==================== */

.content-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    color: var(--ember-orange);
    font-size: 1.5rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Text Emphasis */
.highlight {
    color: var(--primary-gold);
    font-weight: 600;
}

.emphasis {
    color: var(--ember-orange);
    font-style: italic;
    font-weight: 500;
}

/* Scripture Quotes */
.scripture-quote {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    border-radius: 0 10px 10px 0;
}

.scripture-quote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-gold);
    font-style: normal;
}

/* ==================== SPECIAL CONTENT BOXES ==================== */

/* Insight Box */
.insight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.insight-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-box i {
    color: var(--ember-orange);
}

/* Think About It Box */
.think-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2.5rem 0;
    position: relative;
}

.think-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.think-question {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    text-align: center;
}

/* Pattern Box (Chapter 2) */
.pattern-box {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.2), rgba(50, 205, 50, 0.1));
    border: 1px solid var(--forest-green);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.pattern-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 1rem;
    text-align: center;
}

/* Lamb Vision Box (Chapter 5) */
.lamb-vision {
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.15), rgba(255, 107, 53, 0.1));
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lamb-vision::before {
    content: '🐑';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.lamb-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--pearl-white);
    line-height: 1.6;
}

/* Crisis Box (Chapter 5) */
.crisis-box {
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.2), rgba(204, 0, 0, 0.1));
    border: 1px solid var(--crimson);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.crisis-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pearl-white);
    line-height: 1.6;
}

/* Victory Box (Chapter 5) */
.victory-box {
    background: linear-gradient(45deg, rgba(34, 139, 34, 0.2), rgba(50, 205, 50, 0.1));
    border: 2px solid var(--forest-green);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.victory-box::before {
    content: '👑';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.victory-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--pearl-white);
    line-height: 1.6;
}

/* Martyrs Box (Chapter 6) */
.martyrs-box {
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.2), rgba(204, 0, 0, 0.1));
    border: 1px solid var(--crimson);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.martyrs-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pearl-white);
    line-height: 1.6;
}

/* Collapse Box (Chapter 6) */
.collapse-box {
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.3), rgba(204, 0, 0, 0.15));
    border: 2px solid var(--deep-red);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.collapse-box::before {
    content: '⚡';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.collapse-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--pearl-white);
    line-height: 1.6;
}

/* Key Point Box (Chapter 6) */
.key-point-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid var(--primary-gold);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.key-point-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pearl-white);
    line-height: 1.6;
    text-align: center;
}

/* ==================== CHAPTER 7 SPECIFIC STYLES ==================== */

/* Tribal Grid for Chapter 7 */
.tribal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tribe-item {
    background: linear-gradient(135deg, var(--deep-purple), var(--royal-blue));
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tribe-item:hover {
    transform: translateY(-3px);
    border-color: var(--ember-orange);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.tribe-name {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.tribe-count {
    color: var(--pearl-white);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Blessing List for Chapter 7 */
.blessing-list {
    margin: 2rem 0;
}

.blessing-list h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: 'Cinzel', serif;
}

.blessing-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--primary-gold);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.blessing-item:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(5px);
}

.blessing-item i {
    color: var(--primary-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
    min-width: 1.5rem;
}

.blessing-item span {
    color: var(--pearl-white);
    line-height: 1.5;
}

/* ==================== GRID LAYOUTS ==================== */

/* Church Grid (Chapter 3) */
.church-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.church-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.church-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.church-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.church-status {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    display: inline-block;
}

.status-faithful { background: rgba(34, 139, 34, 0.3); color: var(--forest-green); }
.status-compromised { background: rgba(255, 165, 0, 0.3); color: #ffa500; }
.status-dead { background: rgba(139, 0, 0, 0.3); color: var(--crimson); }

.church-message {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Four Horsemen Grid (Chapter 6) */
.horsemen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.horseman-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.horseman-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.horseman-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.horseman-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ==================== COMPARISON SECTIONS ==================== */

.comparison-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2.5rem 0;
}

.comparison-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.perspective-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.perspective-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.perspective-card.dispensational h3 {
    color: var(--ember-orange);
}

.perspective-card.preterist h3 {
    color: var(--forest-green);
}

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

.perspective-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.perspective-card.dispensational li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--ember-orange);
}

.perspective-card.preterist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-green);
}

.perspective-card li strong {
    color: var(--primary-gold);
}

/* ==================== REFLECTION SECTIONS ==================== */

.think-about-it {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.think-about-it h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reflection-questions {
    display: grid;
    gap: 2rem;
}

.question-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--ember-orange);
    margin-bottom: 1rem;
}

.question-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

/* ==================== NAVIGATION ==================== */

.chapter-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 10px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--primary-gold);
    color: var(--deep-purple);
    transform: translateY(-2px);
}

.nav-button.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.prev-button {
    margin-right: auto;
}

.next-button {
    margin-left: auto;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    .chapter-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .church-grid,
    .horsemen-grid {
        grid-template-columns: 1fr;
    }
    
    .tribal-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .dropdown-content {
        min-width: 250px;
        right: -20px;
    }
    
    .chapter-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-button {
        width: 100%;
        justify-content: center;
    }
}