/* --- Add Full Static Site CSS Here --- */
 :root { --primary-color: #4f46e5; --secondary-color: #4338ca; --background-color: #f9fafb; --text-color: #111827; --gray-color: #6b7280; --light-gray: #f3f4f6; --white-color: #ffffff; --border-color: #e5e7eb; --border-radius: 8px; --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); --transition: all 0.3s ease; }
 * { box-sizing: border-box; margin: 0; padding: 0; }
 body { font-family: 'Segoe UI', sans-serif; line-height: 1.7; color: var(--text-color); background-color: var(--background-color); }
 .container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }
 a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
 a:hover { color: var(--secondary-color); text-decoration: underline; }
 img { max-width: 100%; height: auto; display: block; }
 .site-header { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white-color); padding: 2.5rem 0; margin-bottom: 2rem; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
 .site-title { font-size: 2.8rem; margin-bottom: 0.5rem; font-weight: 700; }
 .site-title a { color: var(--white-color); text-decoration: none; }
 .site-description { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1.1rem; }
 .nav-menu { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
 .nav-menu a { color: var(--white-color); font-weight: 500; padding: 0.6rem 1.2rem; border-radius: var(--border-radius); transition: var(--transition); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 6px; }
 .nav-menu a:hover, .nav-menu a.active { background-color: rgba(255, 255, 255, 0.15); }
 main.container { padding-top: 1rem; padding-bottom: 3rem; }
 .section-title { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--primary-color); padding-bottom: 0.5rem; border-bottom: 2px solid var(--border-color); display: flex; align-items: center; gap: 10px; font-weight: 600; }
 .featured-posts .posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
 .article-card { background: var(--white-color); border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--box-shadow); transition: var(--transition); display: flex; flex-direction: column; }
 .article-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); }
 .article-image img { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid var(--border-color); }
 .article-card .article-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
 .article-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; line-height: 1.4; }
 .article-card h3 a { color: var(--text-color); text-decoration: none; }
 .article-card h3 a:hover { color: var(--primary-color); }
 .excerpt { color: var(--gray-color); margin-bottom: 1rem; font-size: 0.95rem; flex-grow: 1; }
 .read-more { display: inline-block; color: var(--primary-color); font-weight: 600; text-decoration: none; margin-top: auto; align-self: flex-start; }
 .read-more:hover { text-decoration: underline; }
 .all-posts { margin-top: 3rem; }
 .posts-list .post-list-item { background: var(--white-color); padding: 1.2rem; margin-bottom: 1rem; border-radius: var(--border-radius); box-shadow: 0 2px 5px rgba(0,0,0,0.06); transition: var(--transition); border-left: 4px solid var(--primary-color); }
 .posts-list .post-list-item:hover { transform: translateX(5px); box-shadow: 0 4px 8px rgba(0,0,0,0.08); }
 .posts-list h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
 .post-meta { font-size: 0.85rem; color: var(--gray-color); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
 .post-meta span { display: inline-flex; align-items: center; gap: 4px; }
 .single-post h1 { font-size: 2.2rem; margin-bottom: 0.5rem; line-height: 1.3; }
 .single-post .post-meta { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 1rem 0; margin-bottom: 2rem; }
 .article-body { font-size: 1.05rem; }
 .article-body img { margin: 1.5rem 0; border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
 .article-body h2 { font-size: 1.6rem; margin-top: 2em; margin-bottom: 0.8em; padding-bottom: 0.3em; border-bottom: 1px solid var(--border-color); }
 .article-body h3 { font-size: 1.3rem; margin-top: 1.8em; margin-bottom: 0.7em; }
 .article-body ul, .article-body ol { margin-left: 1.5em; margin-bottom: 1em; }
 .article-body li { margin-bottom: 0.5em; }
 .article-body .ad-container { /* Style ads within content */ margin: 2rem 0; padding: 1.5rem; background: var(--light-gray); border: 1px dashed #ccc; text-align: center; border-radius: var(--border-radius); clear: both; overflow: hidden; }
 .article-body .ad-container.floating-left { float: left; width: 45%; margin: 0 1.5rem 1.5rem 0; }
 .article-body .ad-container.floating-right { float: right; width: 45%; margin: 0 0 1.5rem 1.5rem; }
 .site-footer { background: var(--dark-color); color: #adb5bd; text-align: center; padding: 2.5rem 0; margin-top: 3rem; font-size: 0.9rem; }
 .site-footer p { margin-bottom: 0.5rem; }
 .footer-links { margin-top: 1rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
 .footer-links a { color: #adb5bd; text-decoration: none; }
 .footer-links a:hover { color: var(--white-color); }
 @media (max-width: 768px) { .site-title { font-size: 2.2rem; } .featured-posts .posts-grid { grid-template-columns: 1fr; } .single-post h1 { font-size: 1.8rem; } }
 /* --- End Static Site CSS --- */