
      'styles.css': `* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #DEFEFE;
    color: #0000FF;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1000px;
    background-color: #BAFCFC;
    border: 1px solid #999;
}

.header {
    background: linear-gradient(to bottom, #BAFCFC, #8FE5E5);
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid #7DD;
}

.header h1 {
    font-size: 48px;
    color: #0055AA;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

.header p {
    font-size: 18px;
    color: #006699;
    font-style: italic;
}

.main-layout {
    display: flex;
    min-height: 500px;
}

.sidebar {
    width: 190px;
    background-color: #BAFCFC;
    border-right: 2px solid #7DD;
    padding: 10px;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin: 3px 0;
}

.nav-menu a {
    display: block;
    background: linear-gradient(to bottom, #6EC6E6, #4AA8CC);
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid #3996BB;
    border-radius: 3px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    transition: all 0.2s;
}

.nav-menu a:hover {
    background: linear-gradient(to bottom, #4AA8CC, #6EC6E6);
    transform: translateX(3px);
}

.content-area {
    flex: 1;
    background-color: #848484;
    display: flex;
    flex-direction: column;
}

.greeting-bar {
    background-color: #DBDBDB;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #999;
}

.main-content {
    flex: 1;
    background-color: #BAFCFC;
    padding: 20px;
}

.animation-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid #4A5568;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cross {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 40px rgba(255, 255, 255, 0.9), 0 0 60px rgba(255, 255, 255, 0.6); }
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.info-box {
    background-color: white;
    border: 2px solid #7DD;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
}

.info-box h3 {
    color: #0055AA;
    margin-bottom: 10px;
    font-size: 14px;
}

.info-box p {
    color: #333;
    font-size: 13px;
}

.counter-section {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background-color: white;
    border: 2px solid #7DD;
    border-radius: 5px;
}

.counter {
    font-size: 24px;
    color: #0055AA;
    font-weight: bold;
}

.footer {
    background: linear-gradient(to bottom, #7DD, #6CC);
    padding: 15px;
    text-align: center;
    border-top: 3px solid #5BB;
    color: white;
    font-weight: bold;
}

/* Page Content Styles */
.page-content {
    max-width: 800px;
}

.page-content h2 {
    color: #0055AA;
    margin-bottom: 15px;
    font-size: 28px;
}

.page-content h3 {
    color: #0055AA;
    margin: 20px 0 10px 0;
    font-size: 20px;
}

.page-content p {
    margin-bottom: 15px;
    color: #333;
}

.page-content ul, .page-content ol {
    margin-left: 30px;
    margin-bottom: 15px;
    color: #333;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content a {
    color: #0055AA;
    text-decoration: underline;
}

.page-content a:hover {
    color: #003377;
}

/* Plan Page Styles */
.plan-section {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #7DD;
    border-radius: 8px;
}

.plan-section h3 {
    color: #0055AA;
    margin-bottom: 10px;
}

.salvation-prayer {
    background-color: #FFF8DC;
    border-color: #FFD700;
}

.prayer-box {
    background-color: white;
    padding: 15px;
    border-left: 4px solid #0055AA;
    margin: 15px 0;
    font-style: italic;
}

/* Parables Page Styles */
.parable-list {
    margin-top: 20px;
}

.parable-item {
    background-color: white;
    padding: 15px;
    margin: 15px 0;
    border: 2px solid #7DD;
    border-radius: 5px;
}

.parable-item h3 {
    color: #0055AA;
    margin-bottom: 8px;
}

/* Bible Page Styles */
.bible-selector {
    background-color: white;
    padding: 20px;
    border: 2px solid #7DD;
    border-radius: 8px;
    margin: 20px 0;
}

.source-list {
    list-style-type: none;
    margin-left: 0;
}

.source-list li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.source-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0055AA;
    font-weight: bold;
}

.news-feed {
    margin-top: 20px;
}

.sample-articles {
    margin-top: 30px;
}

.news-article {
    background-color: white;
    padding: 20px;
    margin: 15px 0;
    border: 2px solid #7DD;
    border-radius: 5px;
}

.news-article h4 {
    color: #0055AA;
    margin-bottom: 10px;
    font-size: 18px;
}

.news-meta {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

.read-more {
    color: #0055AA;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.rss-instructions {
    background-color: #F0F0F0;
    padding: 20px;
    border: 2px solid #7DD;
    border-radius: 8px;
    margin: 20px 0;
}

.rss-instructions pre {
    background-color: #333;
    color: #0F0;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

/* Humor Page Styles */
.joke-display {
    background-color: white;
    padding: 20px;
    border: 2px solid #7DD;
    border-radius: 8px;
    margin: 20px 0;
    min-height: 150px;
}

.current-joke {
    background-color: #FFF8DC;
    padding: 20px;
    border-left: 4px solid #0055AA;
    border-radius: 4px;
}

.joke-collection {
    margin-top: 30px;
}

.joke-item {
    background-color: white;
    padding: 15px;
    margin: 15px 0;
    border: 2px solid #7DD;
    border-radius: 5px;
}

.joke-item p {
    margin: 5px 0;
}

.implementation-guide {
    background-color: #F0F0F0;
    padding: 20px;
    border: 2px solid #7DD;
    border-radius: 8px;
    margin: 30px 0;
}

/* About Page Styles */
.about-section {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #7DD;
    border-radius: 8px;
}

.belief-list,
.vision-list,
.involvement-list {
    margin-left: 20px;
}

/* Contact Page Styles */
.contact-form {
    background-color: white;
    padding: 20px;
    border: 2px solid #7DD;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info {
    margin-top: 30px;
}

.note-box {
    background-color: #FFF8DC;
    padding: 20px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    margin: 20px 0;
}

.note-box h4 {
    color: #0055AA;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #7DD;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 32px;
    }
    
    .selector-group label {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .selector-group select,
    .selector-group input {
        width: 100%;
    }
}`,
