<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #4169E1;
}

header {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

h1 a {
    color: inherit;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

nav a {
    text-decoration: none;
    color: #3498db;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #3498db;
    color: white;
}

article {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

article.preview {
    position: relative;
    padding-bottom: 4rem;
}

h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.meta {
    margin-bottom: 1.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.meta span {
    margin-right: 1rem;
}

.author {
    font-weight: bold;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.read-more {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

footer a:hover {
    color: #f0f0f0;
}

/* Blog List Styles */
.blog-list {
    list-style: none;
}

.blog-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.blog-list li:last-child {
    border-bottom: none;
}

.blog-list a {
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-list .meta {
    margin-bottom: 0;
}

/* Article Page Specific Styles */
.article-page article {
    padding: 3rem;
}

.article-page h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.article-page p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Affiliate Styles */
.affiliate-links {
    margin-top: 2rem;
}

.affiliate-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.affiliate-item:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .article-page article {
        padding: 1.5rem;
    }

    .article-page h2 {
        font-size: 1.8rem;
    }

    .article-page p {
        font-size: 1rem;
    }
}</pre></body></html>