body { font-family: Arial, sans-serif; margin:0; padding:0; }
header { display:flex; justify-content:space-between; align-items:center; padding:10px 20px; background:#111; color:#fff; }
header .logo a { color:#fff; text-decoration:none; font-size:24px; font-weight:bold; }
header nav ul { list-style:none; display:flex; gap:20px; }
header nav ul li a { color:#fff; text-decoration:none; }
.posts { padding:20px; }
.post-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(250px,1fr)); gap:20px; }
.post-card img { width:100%; height:150px; object-fit:cover; }
.post-card h3 { margin:10px 0; }
.sidebar { padding:20px; background:#f4f4f4; margin-top:20px; }
footer { padding:20px; text-align:center; background:#111; color:#fff; margin-top:20px; }
@media(max-width:768px) { header { flex-direction:column; gap:10px; } }
.youtube-video { margin: 20px 0; }
.affiliate-box { margin: 20px 0; text-align:center; }
.affiliate-btn {
    background: #ff9900;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}
.affiliate-btn:hover { background: #e68a00; }

