body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #ff6b6b, #ff8e53); padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .logo { font-size: 2.5em; font-weight: bold; color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-toggle { display: none; font-size: 1.5em; cursor: pointer; }
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }
            nav ul { display: none; flex-direction: column; width: 100%; }
            nav ul.active { display: flex; }
            nav li { margin: 10px 0; }
        }
        nav ul { list-style: none; display: flex; gap: 20px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        h1 { color: #ff6b6b; border-bottom: 3px solid #ff8e53; padding-bottom: 10px; }
        h2 { color: #ff8e53; margin-top: 30px; }
        h3 { color: #ff6b6b; margin-top: 25px; }
        .btn { display: inline-block; background: #ff6b6b; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-weight: bold; margin: 10px 0; }
        .btn:hover { background: #ff8e53; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 10px; }
        footer { margin-top: 50px; padding-top: 20px; border-top: 1px solid #eee; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #eee; padding: 5px 10px; border-radius: 20px; margin-right: 10px; margin-bottom: 10px; }
