/* Ultra HD Modern Design */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #f0f2f5; color: #333; }
.header { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: white; padding: 30px 20px; text-align: center; border-bottom: 4px solid #e94560; }
.header h1 { font-size: 32px; letter-spacing: 1px; margin: 0; }
.nav { background: #fff; padding: 15px 0; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.nav a { color: #333; margin: 0 18px; text-decoration: none; font-weight: 600; font-size: 15px; transition: 0.3s; }
.nav a:hover { color: #e94560; }
.container { max-width: 900px; margin: 30px auto; padding: 0 15px; }
.post { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 25px; border-left: 4px solid #e94560; transition: 0.3s; }
.post:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.post h2 { color: #1a1a2e; margin: 0 0 12px 0; font-size: 24px; }
.post p { line-height: 1.8; color: #555; font-size: 16px; }
.post img { width: 100%; height: auto; border-radius: 10px; margin: 0 0 15px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.read-more { display: inline-block; margin-top: 12px; color: #e94560; font-weight: bold; text-decoration: none; }
.read-more:hover { text-decoration: underline; }
.footer { text-align: center; padding: 30px; background: #1a1a2e; color: #aaa; margin-top: 50px; }
.footer p { margin: 0; font-size: 14px; }
.pagination { display: flex; justify-content: center; gap: 10px; margin: 30px 0; }
.pagination a { background: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; color: #1a1a2e; font-weight: bold; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.pagination a.active { background: #e94560; color: #fff; }
.pagination a:hover { background: #1a1a2e; color: #fff; }
@media (max-width: 600px) {
    .nav a { margin: 0 10px; font-size: 13px; }
    .header h1 { font-size: 24px; }
    .post h2 { font-size: 20px; }
    .post { padding: 18px; }
}